Implemented calls using memory addresses

This commit is contained in:
2025-03-03 00:53:41 +01:00
parent ea233d789d
commit 08660ad845
8 changed files with 114 additions and 10 deletions

@ -32,5 +32,8 @@ func (c *compiler) call(x asm.Instruction) {
case *asm.Register:
c.code = x86.CallRegister(c.code, data.Register)
case *asm.Memory:
c.code = x86.CallAtMemory(c.code, data.Base, data.Offset)
}
}