Implemented return keyword

This commit is contained in:
2024-06-14 10:46:45 +02:00
parent f13f7c2800
commit f04e9d7a60
4 changed files with 22 additions and 0 deletions

View File

@ -38,8 +38,14 @@ func (a *Assembler) Finalize() ([]byte, []byte) {
})
}
case RETURN:
code = x64.Return(code)
case SYSCALL:
code = x64.Syscall(code)
default:
panic("Unknown mnemonic: " + x.Mnemonic.String())
}
}