diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/debug.h | 1 | ||||
| -rw-r--r-- | src/include/x64emu.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/include/debug.h b/src/include/debug.h index 468fe5c4..59568021 100644 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -13,6 +13,7 @@ extern int box64_dynarec_test; extern int box64_maxcpu; extern int box64_mmap32; extern int box64_ignoreint3; +extern int box64_rdtsc; #ifdef DYNAREC extern int box64_dynarec_dump; extern int box64_dynarec_trace; diff --git a/src/include/x64emu.h b/src/include/x64emu.h index e0adf686..450f7a63 100644 --- a/src/include/x64emu.h +++ b/src/include/x64emu.h @@ -53,6 +53,7 @@ void CallAllCleanup(x64emu_t *emu); void UnimpOpcode(x64emu_t* emu, int is32bits); uint64_t ReadTSC(x64emu_t* emu); +uint64_t ReadTSCFrequency(x64emu_t* emu); double FromLD(void* ld); // long double (80bits pointer) -> double long double LD2localLD(void* ld); // long double (80bits pointer) -> long double (80 or 128bits) |