diff options
author | Subv <subv2112@gmail.com> | 2015-11-29 13:06:45 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-11-29 13:06:45 -0500 |
commit | 1d02eb0587c9434eb32979377f1c92e54fa96f4d (patch) | |
tree | 8ea1a1967387aada30038df6aa0a89f9b4f9123e /src/core/core.h | |
parent | e906165229346c22034195efba083152c45c4dd5 (diff) |
Core/ARM11: Correct the size of the VFP register array in the ThreadContext structure.
The VFP registers are 64 bits each, and there are 32 of them.
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index 278f0f1cc..491230a74 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -18,7 +18,7 @@ struct ThreadContext { u32 lr; u32 pc; u32 cpsr; - u32 fpu_registers[32]; + u32 fpu_registers[64]; u32 fpscr; u32 fpexc; }; |