% Branch Always
meth Goto =^ ( ·
var branchoffset : Int ·
var b : Bytecode ·
var CurrentFrame : FrameInfo ·
TopFrame.GetFrame(CurrentFrame);
% getting the branchoffset value
currentFrame.GetNextBytecode(b);
b.GetCode(branchoffset);
% modifying the PC register
currentFrame.Branch(branchoffset);
TopFrame.SetFrame(CurrentFrame);
end end end
)
end