diff options
| author | Yang Liu <numbksco@gmail.com> | 2024-05-22 19:06:43 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-22 13:06:43 +0200 |
| commit | 3faabb478d2f5ccaec250273750bd4b6d6adabea (patch) | |
| tree | 77a0583576d4f9e684c03eb7a037db438d46f996 /src/emu | |
| parent | 2c127fe69c421ec9ab9928c6364018ca3828a64b (diff) | |
| download | box64-3faabb478d2f5ccaec250273750bd4b6d6adabea.tar.gz box64-3faabb478d2f5ccaec250273750bd4b6d6adabea.zip | |
[DYNAREC] Simplified emit_pf helper (#1518)
* [DYNAREC] Simplified emit_pf helper * Remove unused function and outdated comments
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64emu.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/emu/x64emu.c b/src/emu/x64emu.c index 68a9d4e0..2b8f94bc 100644 --- a/src/emu/x64emu.c +++ b/src/emu/x64emu.c @@ -48,11 +48,6 @@ static uint32_t x86emu_parity_tab[8] = 0x69969669, }; -uint32_t* GetParityTab() -{ - return x86emu_parity_tab; -} - static void internalX64Setup(x64emu_t* emu, box64context_t *context, uintptr_t start, uintptr_t stack, int stacksize, int ownstack) { emu->context = context; |