First program generation

This commit is contained in:
Ian Gulliver
2021-11-20 19:25:16 -10:00
parent f6a598a559
commit a5a4c49e37
10 changed files with 28 additions and 13 deletions

View File

@@ -3,5 +3,6 @@ package vm
type Program struct {
GlobalMemorySize uint64
FunctionMemorySize uint64
InstructionLimit uint64
Functions []*Function
}