Skip to content

Commit

Permalink
Make RunContext registers public & Relocatable (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Jul 31, 2023
1 parent 455578f commit 3de6cfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/vm/run_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 3de6cfb

Please sign in to comment.