diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-30 18:39:38 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-30 18:39:38 -0700 |
commit | 248033f31ea7198ab1339631cc198bb13935c2e8 (patch) | |
tree | b7ee90ef322e3f65351eb1c39518553b4691e750 /src/arch/mips/BISystem.py | |
parent | 8009b53c41b4b8643bc335ce293c6ba305b70608 (diff) | |
download | gem5-248033f31ea7198ab1339631cc198bb13935c2e8.tar.xz |
SE/FS: Get rid of FULL_SYSTEM in MIPS.
Diffstat (limited to 'src/arch/mips/BISystem.py')
-rwxr-xr-x | src/arch/mips/BISystem.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/arch/mips/BISystem.py b/src/arch/mips/BISystem.py index a6e4091f2..d5e02485e 100755 --- a/src/arch/mips/BISystem.py +++ b/src/arch/mips/BISystem.py @@ -32,10 +32,9 @@ from m5.defines import buildEnv from System import * -if buildEnv['FULL_SYSTEM']: - class BareIronMipsSystem(MipsSystem): - type = 'BareIronMipsSystem' - system_type = 34 - system_rev = 1 << 10 - hex_file_name = Param.String('test.hex',"hex file that contains [address,data] pairs") +class BareIronMipsSystem(MipsSystem): + type = 'BareIronMipsSystem' + system_type = 34 + system_rev = 1 << 10 + hex_file_name = Param.String('test.hex',"hex file that contains [address,data] pairs") |