Simplified variable usage

This commit is contained in:
2024-07-22 19:10:14 +02:00
parent 504111734f
commit c027208369
8 changed files with 45 additions and 44 deletions

View File

@ -21,7 +21,7 @@ func (f *Function) TokenToRegister(t token.Token, register cpu.Register) error {
return errors.New(&errors.UnknownIdentifier{Name: name}, f.File, t.Position)
}
f.useVariable(variable)
f.UseVariable(variable)
f.RegisterRegister(asm.MOVE, register, variable.Register)
return nil