diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2020-05-18 13:14:08 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2020-05-18 13:14:08 -0400 |
commit | 5dd788d5a1acc7f23835882420d50e9f020728ac (patch) | |
tree | 2b9226863fc44e5bce88eb85be1f0ee97ede1922 /io.c | |
parent | 545bb8591e8003912b6c6b494acefd74e6b3abfd (diff) |
Did alot of stuff while I was up at the family trailer.
- Moved the large enums, and large tables into separate
header files.
- Added enums for implementing the base extension
- Fixed a bug in the assembler.
- Worked more on SuBAsm.
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -21,6 +21,7 @@ void io(uint64_t address, uint8_t *esc) { kbd_rdy = 0; break; case TX_ADDR: + getyx(scr, y, x); #if debug if (!subdbg) { scr_col = (addr[TX_ADDR] != 0x0C && addr[TX_ADDR] != '\n' && scr_col < 160) ? (addr[1] << 1)-2 : 0; |