hypo/asm/op.go

22 lines
166 B
Go
Raw Normal View History

2023-05-28 15:31:59 +00:00
package asm
const (
OpNop = iota
OpLd
OpLr
OpSt
OpAdd
OpSub
OpAddi
OpSubi
OpP
OpBeq
OpBne
OpBgt
OpBlt
OpJ
OpJr
OpCall
OpExit
)