diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-07-05 17:53:57 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-07-05 17:53:57 -0700 |
commit | f32caac6dfc86ce22587f0fe30901645f444bb23 (patch) | |
tree | dc2950a3b4b6a8e805268fd3ca22bc0b978c605b /translate_subx | |
parent | ac1d702cdc1817c7ba1ca9d463888687e2ad3b6d (diff) | |
download | mu-f32caac6dfc86ce22587f0fe30901645f444bb23.tar.gz |
grow code region yet again
We need a cleaner way to do this.
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 f52e964d..1d4565c4 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 387072 ] # 12 tracks * 63 sectors per track * 512 bytes per sector (keep this sync'd with boot.subx) +if [ `stat --printf="%s" a.bin` -ge 451584 ] # 14 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 |