diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-11 17:22:27 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-11 17:22:27 +0200 |
| commit | a7422d11edc92f16e8a0d6a479d5efb016a70c19 (patch) | |
| tree | c67c3478dcde19f781b692cdaad844f8c4231147 /src/include | |
| parent | b39fbc0cfddea724f877756c587571127bd22edf (diff) | |
| download | box64-a7422d11edc92f16e8a0d6a479d5efb016a70c19.tar.gz box64-a7422d11edc92f16e8a0d6a479d5efb016a70c19.zip | |
Splitted mmx and x87 register (from box86)
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/regs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/regs.h b/src/include/regs.h index b7da3078..fc32abee 100755 --- a/src/include/regs.h +++ b/src/include/regs.h @@ -150,12 +150,12 @@ typedef struct { #else longdouble_t ld; #endif - uint64_t ref; + uint64_t uref; } fpu_ld_t; typedef struct { - int64_t ll; - int64_t ref; + int64_t sq; + int64_t sref; } fpu_ll_t; typedef union { |