Fix ThreadContext definition

Its correct size is 0xcc bytes, not the 8-byte aligned 0xd0
This commit is contained in:
TuxSH 2017-03-06 18:29:32 +01:00 committed by fincs
parent e5fc424414
commit 65171be4d8

View File

@ -70,9 +70,9 @@ typedef struct {
/// Structure representing FPU registers
typedef struct {
union{
double d[16]; ///< d0-d15.
float f[32]; ///< f0-f31.
union {
struct PACKED { double d[16]; }; ///< d0-d15.
float f[32]; ///< f0-f31.
};
u32 fpscr; ///< fpscr.
u32 fpexc; ///< fpexc.