diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-02 14:37:09 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-02 14:37:09 +0200 |
| commit | 7bb9dd18da19f7acaf32927c720403385065175d (patch) | |
| tree | 93d1b0d6548cf129cabd9a0457c93d401070682e /src/include | |
| parent | 140254f311eead840969229040c807ad3da3f177 (diff) | |
| download | box64-7bb9dd18da19f7acaf32927c720403385065175d.tar.gz box64-7bb9dd18da19f7acaf32927c720403385065175d.zip | |
[DYNAREC] Improved the fast native call path
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/regs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/regs.h b/src/include/regs.h index 4eacf160..b7da3078 100755 --- a/src/include/regs.h +++ b/src/include/regs.h @@ -247,6 +247,7 @@ typedef union { } mmx87_regs_t; typedef union { + __uint128_t u128; uint64_t q[2]; int64_t sq[2]; double d[2]; |