implemented Goto Instruction; Increment ProgramCounter; (#2)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#2
This commit was merged in pull request #2.
This commit is contained in:
darkress
2023-05-29 18:07:48 +02:00
parent bfbec8d525
commit 1b3529c403
6 changed files with 78 additions and 10 deletions

View File

@@ -103,8 +103,7 @@ public class CommandDecoder
//call();
break;
case 0x2800:
//goto();
break;
return new Goto(input);
}
switch(input & 0x3C00)