34589e501f
The ROM is the same before and after this commit: $ sha256sum fox32-orig.rom fox32.rom 75b169dafbf7dc77cd114f7d05d9c1e8459122bc2bd4178a90aba6fd8dc7372e fox32-orig.rom 75b169dafbf7dc77cd114f7d05d9c1e8459122bc2bd4178a90aba6fd8dc7372e fox32.rom The conversion was performed with a few sed commands and manually unrolled in monitor/keyboard.asm: find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0$/data.strz \1/g' find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0 /data.strz \1 /g' find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0x00 /data.strz \1 /g'
20 lines
665 B
NASM
20 lines
665 B
NASM
; help command
|
|
|
|
monitor_shell_help_command_string: data.strz "help"
|
|
|
|
monitor_shell_help_command:
|
|
mov r0, monitor_shell_help_text
|
|
call print_string_to_monitor
|
|
call redraw_monitor_console
|
|
ret
|
|
|
|
monitor_shell_help_text:
|
|
data.str "command | description" data.8 10
|
|
data.str "------- | -----------" data.8 10
|
|
data.str "exit | exit the monitor" data.8 10
|
|
data.str "help | display this help text" data.8 10
|
|
data.str "jump | jump to address $0" data.8 10
|
|
data.str "list | list memory contents starting at address $0" data.8 10
|
|
data.str "set.SZ | set [$0] to $1; equivalent to `mov.SZ [$0], $1`" data.8 10
|
|
data.8 0
|