mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-12 09:44:04 +03:00
libgcc: Fix __udivmoddi4 and __divmoddi4
This commit is contained in:
parent
fc61ae76a0
commit
12aceadc76
@ -41,6 +41,7 @@ __udivmoddi4:
|
||||
div dword [esp+12]
|
||||
mov ecx, dword [esp+20]
|
||||
mov dword [ecx], edx
|
||||
mov dword [ecx+4], 0
|
||||
xor edx, edx
|
||||
ret
|
||||
|
||||
@ -51,5 +52,6 @@ __divmoddi4:
|
||||
idiv dword [esp+12]
|
||||
mov ecx, dword [esp+20]
|
||||
mov dword [ecx], edx
|
||||
mov dword [ecx+4], 0
|
||||
xor edx, edx
|
||||
ret
|
||||
|
Loading…
Reference in New Issue
Block a user