diff options
author | Stephen Hines <hines@cs.fsu.edu> | 2008-02-05 23:44:13 -0500 |
---|---|---|
committer | Stephen Hines <hines@cs.fsu.edu> | 2008-02-05 23:44:13 -0500 |
commit | 0ccf9a2c3751f160d7d51153ef468a60b4daf8d0 (patch) | |
tree | 3f5d77b729818492d27996adbc69b472f6fd4da7 /src/arch | |
parent | ca313e23033cd3f2ef827edf9a442ed1ae3d087f (diff) | |
download | gem5-0ccf9a2c3751f160d7d51153ef468a60b4daf8d0.tar.xz |
Add base ARM code to M5
--HG--
extra : convert_revision : d811bf87d1a0bfc712942ecd3db1b48fc75257af
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/isa_specific.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/isa_specific.hh b/src/arch/isa_specific.hh index c241e5c62..c10ce7350 100644 --- a/src/arch/isa_specific.hh +++ b/src/arch/isa_specific.hh @@ -49,6 +49,7 @@ #define SPARC_ISA 42 #define MIPS_ISA 34000 #define X86_ISA 8086 +#define ARM_ISA 6 //These tell the preprocessor where to find the files of a particular //ISA, and set the "TheISA" macro for use elsewhere. @@ -60,6 +61,8 @@ #define TheISA MipsISA #elif THE_ISA == X86_ISA #define TheISA X86ISA +#elif THE_ISA == ARM_ISA + #define TheISA ArmISA #else #error "THE_ISA not set" #endif |