about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2022-02-24 21:08:33 -0800
committerKartik Agaram <vc@akkartik.com>2022-02-24 21:08:33 -0800
commitdbe169fc5d4b7fb979a3ac2726d5ee254a1bb71a (patch)
treeaa1813cee18f7c735a13ff3788f733c554a114fe
parentcbd535d3b773a79ff3f3ef3fd322337c828a9671 (diff)
downloadmu-dbe169fc5d4b7fb979a3ac2726d5ee254a1bb71a.tar.gz
move comment to a clearer location
-rwxr-xr-xtranslate_emulated4
1 files changed, 2 insertions, 2 deletions
diff --git a/translate_emulated b/translate_emulated
index 4e92ac2c..d8da585c 100755
--- a/translate_emulated
+++ b/translate_emulated
@@ -14,7 +14,7 @@ dd if=/dev/zero of=code.img count=$DISK
 # font: sectors 9000-10079  (1080 sectors = space enough for 16k glyphs (1080 * 512 / 34 bytes per glyph))
 export FONT=9000  # keep this sync'd with boot.subx
 # debug: sector 10080 onwards
-export DEBUG=10080
+export DEBUG=10080  # keep this sync'd with abort.subx
 
 ## Code
 
@@ -73,7 +73,7 @@ then
   exit 1
 fi
 
-dd if=labels of=code.img seek=$DEBUG conv=notrunc  # keep this sync'd with abort.subx
+dd if=labels of=code.img seek=$DEBUG conv=notrunc
 
 ## Font data at another well-defined location
 cat font.subx   |sed 's,/[^ ]*,,'    |linux/bootstrap/bootstrap run linux/hex    > a.font