Implemented addition

This commit is contained in:
2024-06-24 14:14:07 +02:00
parent 41f5dcbe62
commit 597cb9abed
6 changed files with 78 additions and 23 deletions

View File

@ -113,6 +113,16 @@ func (f *Function) CompileInstruction(line token.List) error {
return f.CompileFunctionCall(expr)
}
if expr.Token.Kind == token.Operator {
switch expr.Token.Text() {
case "+=":
name := expr.Children[0].Token.Text()
number, _ := strconv.Atoi(expr.Children[1].Token.Text())
f.Assembler.AddRegisterNumber(f.Variables[name].Register, uint64(number))
return nil
}
}
return errors.New(&errors.InvalidInstruction{Instruction: expr.Token.Text()}, f.File, expr.Token.Position)
}