summaryrefslogtreecommitdiff
path: root/programs/sub-suite/declare.s
diff options
context:
space:
mode:
Diffstat (limited to 'programs/sub-suite/declare.s')
-rw-r--r--programs/sub-suite/declare.s5
1 files changed, 4 insertions, 1 deletions
diff --git a/programs/sub-suite/declare.s b/programs/sub-suite/declare.s
index 36a4f15..f61b3a2 100644
--- a/programs/sub-suite/declare.s
+++ b/programs/sub-suite/declare.s
@@ -881,13 +881,13 @@ ct_rtb:
; Jump table for print_char's control codes.
ct_jtb:
- .word printc ; Everything else (print it).
.word nl ; Newline.
.word bs ; Backspace.
.word clr_scr ; Ctrl+L.
.word en_step ; Ctrl+S.
.word dis_step ; Ctrl+R.
.word esc ; Escape.
+ .word printc ; Everything else (print it).
; Jump table for parsing pre-tokens.
swtab:
@@ -932,3 +932,6 @@ dtab:
; Compare, and return table for isdelm2.
dtab2:
.byte "),.+<|>-=;\n"
+; Control code table for print_char.
+ctrl_codes:
+ .byte "\n\b\x0C\x13\x12\e"