Simplified file structure
This commit is contained in:
parent
cacee7260a
commit
a466281307
219 changed files with 453 additions and 457 deletions
9
src/asm/Instruction.go
Normal file
9
src/asm/Instruction.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package asm
|
||||
|
||||
import "fmt"
|
||||
|
||||
// Instruction represents a single instruction which can be converted to machine code.
|
||||
type Instruction struct {
|
||||
Data fmt.Stringer
|
||||
Mnemonic Mnemonic
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue