Implemented instruction lists
This commit is contained in:
parent
315d2d075e
commit
d5f752bdd4
12 changed files with 165 additions and 23 deletions
8
src/asm/Instruction.go
Normal file
8
src/asm/Instruction.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package asm
|
||||
|
||||
import "io"
|
||||
|
||||
type Instruction interface {
|
||||
Write(io.ByteWriter)
|
||||
String() string
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue