about summary refs log tree commit diff stats
path: root/translate_subx_emulated
diff options
context:
space:
mode:
Diffstat (limited to 'translate_subx_emulated')
-rwxr-xr-xtranslate_subx_emulated6
1 files changed, 3 insertions, 3 deletions
diff --git a/translate_subx_emulated b/translate_subx_emulated
index d5120f48..7d35a988 100755
--- a/translate_subx_emulated
+++ b/translate_subx_emulated
@@ -25,9 +25,9 @@ cat a.pack        |linux/bootstrap/bootstrap run linux/survey_baremetal   > a.su
 
 cat a.survey      |linux/bootstrap/bootstrap run linux/hex                > a.bin
 
-# Create disk.img containing a.bin
-dd if=/dev/zero of=disk.img count=20160  # 512-byte sectors, so 10MB
-dd if=a.bin of=disk.img conv=notrunc
+# Create code.img containing a.bin
+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)
 then