diff options
author | Javier <dev.git@javispedro.com> | 2022-04-16 21:36:49 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-04-16 21:36:49 +0200 |
commit | 641a8910087fb30fe8188ef36984f3b4ffc7f3e4 (patch) | |
tree | ac2c71873e75619254bf08640d39212e2d4df061 | |
parent | 36f42f334a860b55c1db0d54de4eebf888c9693b (diff) | |
download | vbados-641a8910087fb30fe8188ef36984f3b4ffc7f3e4.tar.gz vbados-641a8910087fb30fe8188ef36984f3b4ffc7f3e4.zip |
add .zip download too
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | makefile | 3 |
2 files changed, 10 insertions, 1 deletions
@@ -18,10 +18,16 @@ The VB stands for "Very Basic" :) # Downloads -You can get a recent build from the following floppy disk image: +You can get a recent build from the ready-to-go floppy disk image: [VBADOS.FLP](https://depot.javispedro.com/vbox/vbados/vbados.flp) +Alternatively, here is a .zip containing all binaries: + +[VBADOS.ZIP](https://depot.javispedro.com/vbox/vbados/vbados.zip) + +For the source code, you can check out this git repository. + # Documentation [TOC] @@ -69,3 +69,6 @@ vbados.flp: flp: vbados.flp vbmouse.exe vbmouse.drv oemsetup.inf vbsf.exe .SYMBOLIC mcopy -i vbados.flp -o vbmouse.exe vbmouse.drv oemsetup.inf vbsf.exe :: +# Build a zip with the driver binaries +zip: vbmouse.exe vbmouse.drv oemsetup.inf vbsf.exe .SYMBOLIC + zip --DOS-names -fz- vbados.zip vbmouse.exe vbmouse.drv oemsetup.inf vbsf.exe |