Imports in instructions
This commit is contained in:
parent
fa804681c2
commit
505bc620a4
3 changed files with 4 additions and 15 deletions
|
@ -1,10 +1,6 @@
|
|||
package hatelace.instructions;
|
||||
|
||||
import hatelace.Instruction;
|
||||
import hatelace.Memory;
|
||||
import hatelace.ProgramCounter;
|
||||
import hatelace.Word;
|
||||
import hatelace.Address;
|
||||
import hatelace.*;
|
||||
|
||||
public class Add extends Instruction {
|
||||
private Address op1;
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
package hatelace.instructions;
|
||||
|
||||
import hatelace.Address;
|
||||
import hatelace.Word;
|
||||
import hatelace.Memory;
|
||||
import hatelace.ProgramCounter;
|
||||
import hatelace.Instruction;
|
||||
import hatelace.*;
|
||||
|
||||
public class Copy extends Instruction {
|
||||
private Word word;
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
package hatelace.instructions;
|
||||
|
||||
import hatelace.Address;
|
||||
import hatelace.Instruction;
|
||||
import hatelace.Memory;
|
||||
import hatelace.ProgramCounter;
|
||||
import hatelace.*;
|
||||
|
||||
public class Mul extends Instruction {
|
||||
private Address op1;
|
||||
|
|
Loading…
Reference in a new issue