Private members

This commit is contained in:
Ian Gulliver
2021-11-16 15:39:12 -10:00
parent f2d552e076
commit 1fdeaaf4cc
2 changed files with 16 additions and 16 deletions

View File

@@ -1,9 +1,9 @@
package vm
const FunctionMemoryEntries = 16
const functionMemoryEntries = 16
type StackFrame struct {
PreviousFunctionIndex int64
PreviousInstructionIndex int64
FunctionMemory [FunctionMemoryEntries]uint64
type stackFrame struct {
previousFunctionIndex int64
previousInstructionIndex int64
functionMemory [functionMemoryEntries]uint64
}