11 lines
251 B
Java
11 lines
251 B
Java
package hatelace;
|
|
|
|
public abstract class Instruction {
|
|
public abstract void execute(Memory memory, ProgramCounter pc);
|
|
|
|
protected abstract String opcode();
|
|
|
|
protected abstract Object[] operands();
|
|
|
|
public abstract String toString();
|
|
}
|