mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
Disk images created as part of the build process can now be made bootable without requiring the user to run SYSCOPY. Some of the disk images are now bootable.
14 lines
323 B
Batchfile
14 lines
323 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
if exist *.bin del *.bin
|
|
if exist *.com del *.com
|
|
if exist *.img del *.img
|
|
if exist *.rom del *.rom
|
|
if exist *.lst del *.lst
|
|
if exist *.exp del *.exp
|
|
if exist *.tmp del *.tmp
|
|
if exist *.mrk del *.mrk
|
|
if exist *.sys del *.sys
|
|
if exist build.inc del build.inc
|
|
if exist font*.asm del font*.asm |