-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes a bug where, after d3d enables pgraph, nxbx still considered it disabled. This was because interrupts were not checked often enough
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule lib86cpu
updated
25 files
+0 −6 | README.md | |
+0 −1 | include/lib86cpu.h | |
+14 −10 | lib86cpu/core/breakpoint.cpp | |
+2 −2 | lib86cpu/core/breakpoint.h | |
+2 −4 | lib86cpu/core/emitter/emitter_common.h | |
+66 −131 | lib86cpu/core/emitter/x64/jit.cpp | |
+7 −5 | lib86cpu/core/emitter/x64/jit.h | |
+0 −24 | lib86cpu/core/emitter/x64/support.cpp | |
+27 −27 | lib86cpu/core/fpu_instructions.cpp | |
+36 −37 | lib86cpu/core/helpers.cpp | |
+8 −8 | lib86cpu/core/helpers.h | |
+154 −147 | lib86cpu/core/instructions.cpp | |
+17 −17 | lib86cpu/core/instructions.h | |
+16 −24 | lib86cpu/core/internal.h | |
+1 −5 | lib86cpu/core/linux/clock.cpp | |
+63 −65 | lib86cpu/core/memory_management.cpp | |
+25 −25 | lib86cpu/core/memory_management.h | |
+128 −148 | lib86cpu/core/translate.cpp | |
+1 −5 | lib86cpu/core/windows/clock.cpp | |
+25 −25 | lib86cpu/dbg/debugger.cpp | |
+17 −16 | lib86cpu/interface.cpp | |
+2 −6 | lib86cpu/lib86cpu_priv.h | |
+4 −5 | lib86cpu/support.cpp | |
+2 −2 | lib86cpu/support.h | |
+1 −1 | test/debug.cpp |