diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-02 01:02:07 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-01 19:02:07 +0200 |
| commit | 2c7a2082e624a78e42199d90f7d9fa90473c26c2 (patch) | |
| tree | 2da6c474edf66752c1f36250aa8266163b4ba3e7 /src/include/x64test.h | |
| parent | 3230265646a48abef02a5c7873490e10ffc0afb5 (diff) | |
| download | box64-2c7a2082e624a78e42199d90f7d9fa90473c26c2.tar.gz box64-2c7a2082e624a78e42199d90f7d9fa90473c26c2.zip | |
Introduced box64cpu.h for exported interpreter and dynarec functions (#2490)
Diffstat (limited to 'src/include/x64test.h')
| -rw-r--r-- | src/include/x64test.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/x64test.h b/src/include/x64test.h index 48e2a935..be417ce4 100644 --- a/src/include/x64test.h +++ b/src/include/x64test.h @@ -1,6 +1,9 @@ #ifndef __X64TEST_H_ #define __X64TEST_H_ +typedef struct x64test_s x64test_t; +int RunTest(x64test_t* test); + void x64test_step(x64emu_t* ref, uintptr_t ip); void x64test_check(x64emu_t* ref, uintptr_t ip); |