diff --git a/Server/src/main/java/net/simon987/server/assembly/CPU.java b/Server/src/main/java/net/simon987/server/assembly/CPU.java index 2aa61b8..0a8efe9 100755 --- a/Server/src/main/java/net/simon987/server/assembly/CPU.java +++ b/Server/src/main/java/net/simon987/server/assembly/CPU.java @@ -219,8 +219,7 @@ public class CPU implements JSONSerialisable { if (destination == 0) { //Single operand ip++; - instruction.execute(sourceValue, status); - instruction.execute(memory, memory.get(ip - 1), status); //For POP instruction + instruction.execute(memory, memory.get(ip - 1), status); } else if (destination == Operand.IMMEDIATE_VALUE) { //Destination is an immediate value