Implemented division

This commit is contained in:
2024-06-25 00:19:01 +02:00
parent 34af20d7a0
commit 2cbc064f14
7 changed files with 89 additions and 3 deletions

View File

@ -130,6 +130,10 @@ func (f *Function) CompileInstruction(line token.List) error {
case "*=":
f.Assembler.RegisterNumber(asm.MUL, register, number)
return nil
case "/=":
f.Assembler.RegisterNumber(asm.DIV, register, number)
return nil
}
}