module support
Some checks failed
Build / build (push) Successful in 10m22s
Test / build (push) Failing after 15m54s

This commit is contained in:
Chuck Smith
2024-03-26 16:49:38 -04:00
parent 6d234099d1
commit 110152a139
21 changed files with 541 additions and 100 deletions

View File

@@ -61,7 +61,7 @@ const (
OpClosure
OpGetFree
OpCurrentClosure
OpNoop
OpLoadModule
)
type Definition struct {
@@ -112,7 +112,7 @@ var definitions = map[Opcode]*Definition{
OpClosure: {"OpClosure", []int{2, 1}},
OpGetFree: {"OpGetFree", []int{1}},
OpCurrentClosure: {"OpCurrentClosure", []int{}},
OpNoop: {"OpNoop", []int{}},
OpLoadModule: {"OpLoadModule", []int{}},
}
func Lookup(op byte) (*Definition, error) {