Moved register state to scopes
This commit is contained in:
@ -23,8 +23,8 @@ func (f *Function) Execute(operation token.Token, register cpu.Register, value *
|
||||
return f.ExecuteRegisterRegister(operation, register, f.cpu.Output[0])
|
||||
}
|
||||
|
||||
tmp := f.cpu.MustFindFree(f.cpu.General)
|
||||
defer f.cpu.Free(tmp)
|
||||
tmp := f.Scope().MustFindFree(f.cpu.General)
|
||||
defer f.Scope().Free(tmp)
|
||||
|
||||
err := f.ExpressionToRegister(value, tmp)
|
||||
|
||||
|
Reference in New Issue
Block a user