diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-14 21:41:47 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-14 21:41:47 -0700 |
commit | 98feca922e46c82d1efdb44b99021b771bdac44d (patch) | |
tree | 9b59a558e787693b5db14fd44ea8b7d240246b5c /translate_subx_emulated | |
parent | da438fa9f5e4297f37833daa4f1d76ddd6d10a42 (diff) | |
download | mu-98feca922e46c82d1efdb44b99021b771bdac44d.tar.gz |
rename boot.hex to boot.subx
Diffstat (limited to 'translate_subx_emulated')
-rwxr-xr-x | translate_subx_emulated | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate_subx_emulated b/translate_subx_emulated index 787be559..d5120f48 100755 --- a/translate_subx_emulated +++ b/translate_subx_emulated @@ -29,7 +29,7 @@ cat a.survey |linux/bootstrap/bootstrap run linux/hex > a.bi dd if=/dev/zero of=disk.img count=20160 # 512-byte sectors, so 10MB dd if=a.bin of=disk.img conv=notrunc -if [ `stat --printf="%s" a.bin` -ge 193536 ] # 6 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.hex) +if [ `stat --printf="%s" a.bin` -ge 193536 ] # 6 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.subx) then echo "a.bin won't all be loaded on boot" exit 1 |