Fixed some whitespace nonsense from a merge.

This commit is contained in:
Brent O'Neil 2017-12-30 03:07:28 +11:00
parent fedd4bb779
commit ff4a3d6f20
4 changed files with 35 additions and 40 deletions

View File

@ -25,11 +25,8 @@ public class IntInstruction extends Instruction{
return status;
}
public Status execute(Status status) {
cpu.Interrupt(0,0, false);
return status;
}
}

View File

@ -20,7 +20,5 @@ public class IntrInstruction extends Instruction{
cpu.getRegisterSet().getRegister("SP").setValue(cpu.getRegisterSet().getRegister("SP").getValue() + 2); //Increment SP (stack grows towards smaller)
return status;
}
}