Implemented more arm64 instructions

This commit is contained in:
2025-03-13 13:17:58 +01:00
parent dc664dbf5a
commit 5a5061c5d7
23 changed files with 290 additions and 53 deletions

View File

@ -99,7 +99,7 @@ func (c *compiler) compileX86(x asm.Instruction) {
c.dllCall(x)
case asm.JE, asm.JNE, asm.JG, asm.JGE, asm.JL, asm.JLE, asm.JUMP:
c.jump(x)
c.jumpX86(x)
case asm.LABEL:
label := c.assembler.Param.Label[x.Index]