diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/asm_vfp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/arm/skyeye_common/vfp/asm_vfp.h b/src/core/arm/skyeye_common/vfp/asm_vfp.h index ccb7cf4d7..1187924f4 100644 --- a/src/core/arm/skyeye_common/vfp/asm_vfp.h +++ b/src/core/arm/skyeye_common/vfp/asm_vfp.h | |||
| @@ -7,15 +7,15 @@ | |||
| 7 | 7 | ||
| 8 | #pragma once | 8 | #pragma once |
| 9 | 9 | ||
| 10 | // FPSID Information | 10 | // ARM11 MPCore FPSID Information |
| 11 | // Note that these are used as values and not as flags. | 11 | // Note that these are used as values and not as flags. |
| 12 | enum : u32 { | 12 | enum : u32 { |
| 13 | VFP_FPSID_IMPLMEN = 0, // Implementation code. Should be the same as cp15 0 c0 0 | 13 | VFP_FPSID_IMPLMEN = 0x41, // Implementation code. Should be the same as cp15 0 c0 0 |
| 14 | VFP_FPSID_SW = 0, // Software emulation bit value | 14 | VFP_FPSID_SW = 0, // Software emulation bit value |
| 15 | VFP_FPSID_SUBARCH = 0x2, // Subarchitecture version number | 15 | VFP_FPSID_SUBARCH = 0x1, // Subarchitecture version number |
| 16 | VFP_FPSID_PARTNUM = 0x1, // Part number | 16 | VFP_FPSID_PARTNUM = 0x20, // Part number |
| 17 | VFP_FPSID_VARIANT = 0x1, // Variant number | 17 | VFP_FPSID_VARIANT = 0xB, // Variant number |
| 18 | VFP_FPSID_REVISION = 0x1 // Revision number | 18 | VFP_FPSID_REVISION = 0x4 // Revision number |
| 19 | }; | 19 | }; |
| 20 | 20 | ||
| 21 | // FPEXC bits | 21 | // FPEXC bits |