Added push and pop instructions

This commit is contained in:
2024-06-27 12:59:41 +02:00
parent 8e64271f74
commit 735057ac74
4 changed files with 45 additions and 0 deletions

View File

@ -91,6 +91,18 @@ func (a *Assembler) Finalize() ([]byte, []byte) {
code = x64.MoveRegisterRegister64(code, operands.Destination, operands.Source)
}
case POP:
switch operands := x.Data.(type) {
case *Register:
code = x64.PopRegister(code, operands.Register)
}
case PUSH:
switch operands := x.Data.(type) {
case *Register:
code = x64.PushRegister(code, operands.Register)
}
case RETURN:
code = x64.Return(code)