implemented Nop Instruction (#11)

Co-authored-by: Darkress <30271678+DarkressX@users.noreply.github.com>
Reviewed-on: darkress/pic16f84-sim#11
This commit was merged in pull request #11.
This commit is contained in:
darkress
2023-05-31 20:24:57 +02:00
parent 49ab5876b8
commit 46515de5f1
2 changed files with 15 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ public class CommandDecoder
if ((input | 0x0060) == 0x0060)
{
//nop();
return new Nop();
}
if (input == 0x0064)