commit | 2e28da5583814efe1e0a09718f6a674f983d12d1 | [log] [tgz] |
---|---|---|
author | Gabe Black <gblack@eecs.umich.edu> | Tue Nov 10 20:34:38 2009 -0800 |
committer | Gabe Black <gblack@eecs.umich.edu> | Tue Nov 10 20:34:38 2009 -0800 |
tree | 28f95117047652c1dceec3eef6f239f6d278ece4 | |
parent | 4779020e139c70355335729b504195a0e5009e7a [diff] [blame] |
ARM: Implement fault classes. Implement some fault classes using the curriously recurring template pattern, similar to SPARCs.
diff --git a/src/arch/arm/isa_traits.hh b/src/arch/arm/isa_traits.hh index 542174b..91c51c4 100644 --- a/src/arch/arm/isa_traits.hh +++ b/src/arch/arm/isa_traits.hh
@@ -104,6 +104,8 @@ const int WordBytes = 4; const int HalfwordBytes = 2; const int ByteBytes = 1; + + const uint32_t HighVecs = 0xFFFF0000; }; using namespace ArmISA;