Added Iorlw Instrction (#6)

This commit is contained in:
DarkressX
2023-05-23 15:12:30 +02:00
committed by GitHub
parent 8011c0ce40
commit 347e67c3c8
2 changed files with 24 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ package decoder;
import commands.Addlw;
import commands.Andlw;
import commands.Command;
import commands.Iorlw;
public class CommandDecoder
{
@@ -55,8 +56,7 @@ public class CommandDecoder
case 0x3900:
return new Andlw(input);
case 0x3800:
//iorlw();
break;
return new Iorlw(input);
case 0x3A00:
//xorlw();
break;