2021-11-15 20:44:26 -10:00
|
|
|
package vm
|
|
|
|
|
|
2021-11-16 15:39:12 -10:00
|
|
|
const functionMemoryEntries = 16
|
2021-11-15 20:44:26 -10:00
|
|
|
|
2021-11-16 15:39:12 -10:00
|
|
|
type stackFrame struct {
|
|
|
|
|
previousFunctionIndex int64
|
|
|
|
|
previousInstructionIndex int64
|
|
|
|
|
functionMemory [functionMemoryEntries]uint64
|
2021-11-15 20:44:26 -10:00
|
|
|
}
|