Commit Graph

8 Commits

Author SHA1 Message Date
jn
34589e501f Make use of data.strz
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'
2023-02-01 23:49:23 +01:00
Ry
93093fbbcc monitor: Drastically improve the scrolling performance 2022-09-02 14:24:46 -07:00
Ry
3de7fd9567 monitor: Add a (very hacky) text cursor 2022-05-12 18:00:52 -07:00
Ry
e38d1df807 monitor: Don't allow backspacing past the start of the prompt 2022-05-12 17:23:01 -07:00
Ry
3ec126f877 monitor: Argument parsing 2022-04-27 13:45:45 -07:00
Ry
b87b5a3448 monitor: Proper command parsing 2022-04-25 21:46:47 -07:00
Ry
ae3d24922b monitor: Very basic argument parsing 2022-04-23 22:33:15 -07:00
Ry
408bd6c91d monitor: handle shift and caps keys 2022-04-23 15:01:47 -07:00