Fix ThreadContext definition
Its correct size is 0xcc bytes, not the 8-byte aligned 0xd0
This commit is contained in:
parent
e5fc424414
commit
65171be4d8
@ -70,9 +70,9 @@ typedef struct {
|
|||||||
|
|
||||||
/// Structure representing FPU registers
|
/// Structure representing FPU registers
|
||||||
typedef struct {
|
typedef struct {
|
||||||
union{
|
union {
|
||||||
double d[16]; ///< d0-d15.
|
struct PACKED { double d[16]; }; ///< d0-d15.
|
||||||
float f[32]; ///< f0-f31.
|
float f[32]; ///< f0-f31.
|
||||||
};
|
};
|
||||||
u32 fpscr; ///< fpscr.
|
u32 fpscr; ///< fpscr.
|
||||||
u32 fpexc; ///< fpexc.
|
u32 fpexc; ///< fpexc.
|
||||||
|
Loading…
Reference in New Issue
Block a user