Advance work on emulator/assembler combo
This commit is contained in:
parent
2d7707598a
commit
569e11aceb
2 changed files with 12 additions and 5 deletions
|
@ -350,6 +350,10 @@ void step() {
|
|||
ip = reg;
|
||||
}
|
||||
break;
|
||||
case 0xE9:
|
||||
reg = imm16();
|
||||
ip += (int16_t)reg;
|
||||
break;
|
||||
case 0xEB: // JMP rb
|
||||
ip = ip + (int8_t)imm8();
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue