diff options
author | Autechre | 2021-03-18 03:15:03 +0100 |
---|---|---|
committer | GitHub | 2021-03-18 03:15:03 +0100 |
commit | 5ef784ab8af08b9629b573b3cfd25f21384771af (patch) | |
tree | 250fbceb4e4c0cd061dd524f08459b775fb6e2cf /x86 | |
parent | 11632ad5e3ac626d9687ae6f25f545cf852f1b55 (diff) | |
parent | eab44b9e0b9dcb5cf7fa7b6851fa5454041da930 (diff) | |
download | picogpsp-5ef784ab8af08b9629b573b3cfd25f21384771af.tar.gz picogpsp-5ef784ab8af08b9629b573b3cfd25f21384771af.tar.bz2 picogpsp-5ef784ab8af08b9629b573b3cfd25f21384771af.zip |
Merge pull request #112 from davidgfnet/master
Enable runtime dynarec enable/disable
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 6765114..1e338a4 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 |