about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-07-11 17:22:27 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-07-11 17:22:27 +0200
commita7422d11edc92f16e8a0d6a479d5efb016a70c19 (patch)
treec67c3478dcde19f781b692cdaad844f8c4231147 /src/include
parentb39fbc0cfddea724f877756c587571127bd22edf (diff)
downloadbox64-a7422d11edc92f16e8a0d6a479d5efb016a70c19.tar.gz
box64-a7422d11edc92f16e8a0d6a479d5efb016a70c19.zip
Splitted mmx and x87 register (from box86)
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/regs.h6
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 {