about summary refs log tree commit diff stats
path: root/translate_subx
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-14 11:54:42 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-14 11:54:42 -0700
commitff8ec9bcff7577ba923fe7868ea62ecceed55ee7 (patch)
tree23039cf2da691aa221f64e7054f9ff035c537251 /translate_subx
parent2df1d1a73046a0a7b6523552b53f407651ed36df (diff)
downloadmu-ff8ec9bcff7577ba923fe7868ea62ecceed55ee7.tar.gz
insert a compile phase to emit some debug info
Diffstat (limited to 'translate_subx')
-rwxr-xr-xtranslate_subx17
1 files changed, 9 insertions, 8 deletions
diff --git a/translate_subx b/translate_subx
index f4c461f6..70400f45 100755
--- a/translate_subx
+++ b/translate_subx
@@ -12,23 +12,24 @@
 
 set -e
 
-cat $*          |linux/braces            > a.braces
+cat $*          |linux/braces                                   > a.braces
 
-cat a.braces    |linux/calls             > a.calls
+cat a.braces    |linux/calls                                    > a.calls
 
-cat a.calls     |linux/sigils            > a.sigils
+cat a.calls     |linux/sigils                                   > a.sigils
 
-cat a.sigils    |linux/tests             > a.tests
+cat a.sigils    |linux/tests                                    > a.tests
 
 # no assort since baremetal SubX doesn't have segments yet
 
-cat a.tests     |linux/dquotes           > a.dquotes
+cat a.tests     |linux/dquotes                                  > a.dquotes
 
-cat a.dquotes   |linux/pack              > a.pack
+cat a.dquotes   |linux/pack                                     > a.pack
 
-cat a.pack      |linux/survey_baremetal  > a.survey
+cat a.pack      |linux/survey_baremetal   > labels
+cat a.pack      |linux/labels_baremetal     labels              > a.survey
 
-cat a.survey    |linux/hex               > a.bin
+cat a.survey    |linux/hex                                      > a.bin
 
 # Create code.img containing a.bin
 dd if=/dev/zero of=code.img count=20160  # 512-byte sectors, so 10MB