diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-17 23:40:49 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-17 23:52:52 -0700 |
commit | 97df52bf2fadf41fe73745c99730e0838881b0df (patch) | |
tree | 0915a0360a44faedcedc7d90f866a6b91685e053 /translate_subx_emulated | |
parent | c11ea74442e20070e1453e7e1ee27b7870407023 (diff) | |
download | mu-97df52bf2fadf41fe73745c99730e0838881b0df.tar.gz |
shell: ctrl-r runs on real screen without a trace
We run out of memory fairly early in the course of drawing a chessboard on the whole screen.
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 7d35a988..85b56436 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=code.img count=20160 # 512-byte sectors, so 10MB dd if=a.bin of=code.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.subx) +if [ `stat --printf="%s" a.bin` -ge 258048 ] # 8 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 |