diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-05-23 16:31:53 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-05-23 16:32:04 +0200 |
| commit | 604ab2252658e85791bfd3d5a04f546b554f23c3 (patch) | |
| tree | 281ee1bd7b09f6e06ac4f70f566aac55c70179a0 /src/dynarec/dynarec_native_functions.h | |
| parent | 85d09df9382d2ce581f89e9fee2e7d862e21e891 (diff) | |
| download | box64-604ab2252658e85791bfd3d5a04f546b554f23c3.tar.gz box64-604ab2252658e85791bfd3d5a04f546b554f23c3.zip | |
[ARM64_DYNAREC] Added 66 D9 /6 and 66 DD /4 /6 opcodes
Diffstat (limited to 'src/dynarec/dynarec_native_functions.h')
| -rw-r--r-- | src/dynarec/dynarec_native_functions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynarec/dynarec_native_functions.h b/src/dynarec/dynarec_native_functions.h index 6e7fc46d..533dfeeb 100644 --- a/src/dynarec/dynarec_native_functions.h +++ b/src/dynarec/dynarec_native_functions.h @@ -30,7 +30,9 @@ void native_fistp64(x64emu_t* emu, int64_t* ed); void native_fistt64(x64emu_t* emu, int64_t* ed); void native_fld(x64emu_t* emu, uint8_t* ed); void native_fsave(x64emu_t* emu, uint8_t* ed); +void native_fsave16(x64emu_t* emu, uint8_t* ed); void native_frstor(x64emu_t* emu, uint8_t* ed); +void native_frstor16(x64emu_t* emu, uint8_t* ed); void native_fprem1(x64emu_t* emu); void native_aesd(x64emu_t* emu, int xmm); |