Disassembler skeleton

This commit is contained in:
Ian Gulliver
2021-11-19 20:38:56 -10:00
parent 5ccf6832c8
commit 579ddab2de
7 changed files with 111 additions and 6 deletions

5
vm/function.go Normal file
View File

@@ -0,0 +1,5 @@
package vm
type Function struct {
Instructions []*Instruction
}