diff options
-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 |