diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-08-29 08:40:52 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-08-29 11:21:09 -0700 |
commit | c5f8415e0327124a7a9fed12b524390ddf417f83 (patch) | |
tree | 84636fc30a127340f30214ce8b39ec12fa53baba /translate_subx | |
parent | 0e2a9ad93d96be55a4df3f509a33df882dae81ef (diff) | |
download | mu-c5f8415e0327124a7a9fed12b524390ddf417f83.tar.gz |
retreat to 640KB
Diffstat (limited to 'translate_subx')
-rwxr-xr-x | translate_subx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate_subx b/translate_subx index c123a3bc..6a902a42 100755 --- a/translate_subx +++ b/translate_subx @@ -35,7 +35,7 @@ cat a.survey |linux/hex > a.bin dd if=/dev/zero of=code.img count=20160 # 20*16*63 512-byte sectors = almost 10MB dd if=a.bin of=code.img conv=notrunc -if [ `stat --printf="%s" a.bin` -ge 580608 ] # 18 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.subx) +if [ `stat --printf="%s" a.bin` -ge 492544 ] # 15 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 |