Explorar o código

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.
Subv %!s(int64=10) %!d(string=hai) anos
pai
achega
1d02eb0587
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/core.h

+ 1 - 1
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;
 };