implemented decf Instruction

This commit is contained in:
Darkress
2023-05-31 20:15:46 +02:00
parent 1f8e3aff58
commit a38d6b6b80
3 changed files with 30 additions and 4 deletions

View File

@@ -14,8 +14,8 @@ class Main
ArrayList<Command> program = new ArrayList<>();
int input1 = 0x27FF;
program.add(CommandDecoder.decode(0x3011)); //Write 0x11 to W
Memory.setRegister(0x14, 0x14);
program.add(CommandDecoder.decode(0x0994));
Memory.setRegister(0x14, 0x01);
program.add(CommandDecoder.decode(0x0314));
for(int i = 0; i < 2; i++)
{
program.get(ProgramCounter.getPc()).execute();