Improved Windows ABI support
This commit is contained in:
@ -33,6 +33,7 @@ func (r *Result) finalize() {
|
||||
final.Syscall()
|
||||
case config.Windows:
|
||||
final.RegisterNumber(asm.MOVE, x86.WindowsInputRegisters[0], 0)
|
||||
final.RegisterNumber(asm.AND, x86.RSP, -16)
|
||||
final.DLLCall("kernel32.ExitProcess")
|
||||
}
|
||||
|
||||
@ -67,6 +68,7 @@ func (r *Result) finalize() {
|
||||
final.Syscall()
|
||||
case config.Windows:
|
||||
final.RegisterNumber(asm.MOVE, x86.WindowsInputRegisters[0], 1)
|
||||
final.RegisterNumber(asm.AND, x86.RSP, -16)
|
||||
final.DLLCall("kernel32.ExitProcess")
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user