10 lines
193 B
Go
10 lines
193 B
Go
package vm
|
|
|
|
const FunctionMemoryEntries = 16
|
|
|
|
type StackFrame struct {
|
|
PreviousFunctionIndex int64
|
|
PreviousInstructionIndex int64
|
|
FunctionMemory [FunctionMemoryEntries]uint64
|
|
}
|