diff options
author | David Guillen Fandos | 2021-03-17 21:05:49 +0100 |
---|---|---|
committer | David Guillen Fandos | 2021-03-17 21:05:49 +0100 |
commit | eab44b9e0b9dcb5cf7fa7b6851fa5454041da930 (patch) | |
tree | 71351b6aa15bf47c525cf11402c4d4b06fa6d2e4 /x86 | |
parent | fb7ca09b019248b9a0aba481ea55386f71053d73 (diff) | |
download | picogpsp-eab44b9e0b9dcb5cf7fa7b6851fa5454041da930.tar.gz picogpsp-eab44b9e0b9dcb5cf7fa7b6851fa5454041da930.tar.bz2 picogpsp-eab44b9e0b9dcb5cf7fa7b6851fa5454041da930.zip |
Enable runtime dynarec enable/disable
Added a more thorough cache cleanup for reset/mode-change too.
Fixed the mmap initialization that ends up leaking memory.
Minor x86 asm fixes for Android.
Diffstat (limited to 'x86')
-rw-r--r-- | x86/x86_stub.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x86/x86_stub.S b/x86/x86_stub.S index 8d76457..322547d 100644 --- a/x86/x86_stub.S +++ b/x86/x86_stub.S @@ -538,7 +538,7 @@ _execute_arm_translate: # (if the CPU is halted, do not start executing but # loop in the alert loop until it wakes up) - cmp $0, CPU_HALT_STATE(%ebx) + cmpl $0, CPU_HALT_STATE(%ebx) je 1f call alert_loop # Need to push something to the stack |