9 lines
184 B
Go
9 lines
184 B
Go
package asm
|
|
|
|
import "fmt"
|
|
|
|
// Instruction represents a single instruction which can be converted to machine code.
|
|
type Instruction struct {
|
|
Data fmt.Stringer
|
|
Mnemonic Mnemonic
|
|
}
|