diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2020-12-08 10:42:10 -0500 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2020-12-08 18:07:53 -0500 |
commit | 498756102a430d68018ff39502b568f93a110227 (patch) | |
tree | 89cda25b9bc95c96ec0e8415e76f99101da1ce0d /disasm.c | |
parent | 28202af458a42e83f06415fa33d193258535a86d (diff) |
- Implemented support for the Orthogonal extension into
both the assembler, and the emulator.
I finally figured out how I could get support for the
Ortho extension implemented into the old assembler.
The only reason for doing this, is to buy me some
while I start work on the new assembler, and to help
me get an idea for how to do the same in the new
assembler.
Diffstat (limited to 'disasm.c')
-rw-r--r-- | disasm.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -159,7 +159,6 @@ static void disasm_ortho(struct sux *cpu, uint8_t opcode, uint8_t prefix, uint8_ memset(address, 0, sizeof(address)); memset(idx, 0, sizeof(idx)); memset(scale, 0, sizeof(scale)); - for (int i = 0; i < 2; i++) { int is_ind = 0; int is_rind = 0; |