diff options
author | adventuresin9 <adventuresin9@gmail.com> | 2023-03-30 12:18:05 +0000 |
---|---|---|
committer | adventuresin9 <adventuresin9@gmail.com> | 2023-03-30 12:18:05 +0000 |
commit | 168acf6a2ff4f402c7f093ad89d71aaeab714352 (patch) | |
tree | f25aed2c539268d688350b60159206529864a476 /sys/src/9 | |
parent | 4e8c03184992a548b6cba1cd32fc43e84c7c1304 (diff) |
removing tos from fpimips
Diffstat (limited to 'sys/src/9')
-rw-r--r-- | sys/src/9/mt7688/dat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/mt7688/dat.h b/sys/src/9/mt7688/dat.h index 23982ae24..022e14af4 100644 --- a/sys/src/9/mt7688/dat.h +++ b/sys/src/9/mt7688/dat.h @@ -99,6 +99,8 @@ enum { */ struct FPsave { + /* scratch space for kernel use (e.g., mips fp delay-slot execution) */ + ulong kscr[4]; /* /dev/proc expects the registers to be first in FPsave */ ulong reg[Nfpregs]; /* the canonical bits */ union { |