From 3de6cfb808c9a0d6884251b6ed504010a83cb391 Mon Sep 17 00:00:00 2001 From: fmoletta <99273364+fmoletta@users.noreply.github.com> Date: Mon, 31 Jul 2023 23:10:15 +0300 Subject: [PATCH] Make RunContext registers public & Relocatable (#11) --- pkg/vm/run_context.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }