package gmachine func Calc() uint64 { g := New() g.Memory = []uint64{ OpSETA, 3, OpDECA, OpDECA, OpHALT, } g.Run() return g.A }