diff --git a/pkg/vm/run_context.go b/pkg/vm/run_context.go index 769e25e1..6ec0deaf 100644 --- a/pkg/vm/run_context.go +++ b/pkg/vm/run_context.go @@ -5,7 +5,7 @@ import "github.com/lambdaclass/cairo-vm.go/pkg/vm/memory" // RunContext containts the register states of the // Cairo VM. type RunContext struct { - pc memory.Relocatable - ap uint - fp uint + Pc memory.Relocatable + Ap memory.Relocatable + Fp memory.Relocatable }