diff options
| author | Haichen Wu <www.wxmqq@gmail.com> | 2024-02-29 15:16:40 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-29 08:16:40 +0100 |
| commit | db01a92edff0548b87d6e8c1e285e8bfbbc97fe7 (patch) | |
| tree | 634968d1247cb2e985727cfa009773cb37e58078 /src/include/dynarec_la64.h | |
| parent | 6a9836912d6325e1d3ef1a639b06c5d22722e503 (diff) | |
| download | box64-db01a92edff0548b87d6e8c1e285e8bfbbc97fe7.tar.gz box64-db01a92edff0548b87d6e8c1e285e8bfbbc97fe7.zip | |
[LONGAARCH_DYNAREC] Added 00...05 and 28...2D opcodes (#1297)
* [LONGAARCH] More renamed arch to LA64 * [LONGAARCH_DYNAREC] Added 00...05 and 28...2D opcodes
Diffstat (limited to 'src/include/dynarec_la64.h')
| -rw-r--r-- | src/include/dynarec_la64.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/dynarec_la64.h b/src/include/dynarec_la64.h new file mode 100644 index 00000000..cf8946f0 --- /dev/null +++ b/src/include/dynarec_la64.h @@ -0,0 +1,10 @@ +#ifndef __DYNAREC_LA64_H_ +#define __DYNAREC_LA64_H_ + +typedef struct dynablock_s dynablock_t; +typedef struct x64emu_s x64emu_t; + +void CancelBlock64(void); +void* FillBlock64(dynablock_t* block, uintptr_t addr); + +#endif //__DYNAREC_LA64_H_ \ No newline at end of file |