Files
subcoding/vm/program.go

9 lines
149 B
Go
Raw Normal View History

2021-11-19 20:16:01 -10:00
package vm
type Program struct {
2021-11-20 18:27:06 -10:00
GlobalMemorySize uint64
FunctionMemorySize uint64
2021-11-20 19:25:16 -10:00
InstructionLimit uint64
2021-11-20 18:27:06 -10:00
Functions []*Function
2021-11-19 20:16:01 -10:00
}