diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-21 01:09:05 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-21 01:09:05 -0700 |
commit | 74584d79b66b3459c72db6c74bfa9e22ee1ae23b (patch) | |
tree | f8a98156083103e9f883235e2fd91cccba76f179 /src/arch/mips/system.cc | |
parent | 7548082d3baf578fe984c79f414dbefd96091359 (diff) | |
download | gem5-74584d79b66b3459c72db6c74bfa9e22ee1ae23b.tar.xz |
MIPS: Get MIPS_FS to compile, more style fixes.
Some breakage was from my BitUnion change, some was much older.
Diffstat (limited to 'src/arch/mips/system.cc')
-rwxr-xr-x | src/arch/mips/system.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/mips/system.cc b/src/arch/mips/system.cc index ac900b6db..57310fa77 100755 --- a/src/arch/mips/system.cc +++ b/src/arch/mips/system.cc @@ -51,7 +51,7 @@ MipsSystem::MipsSystem(Params *p) : System(p) #if FULL_SYSTEM if (p->bare_iron == true) { hexFile = new HexFile(params()->hex_file_name); - if (!hexFile->loadSections(&functionalPort, MipsISA::LoadAddrMask)) + if (!hexFile->loadSections(&functionalPort)) panic("Could not load hex file\n"); } @@ -93,7 +93,6 @@ MipsSystem::MipsSystem(Params *p) : System(p) */ if (consoleSymtab->findAddress("env_booted_osflags", addr)) { warn("writing addr starting from %#x", addr); - cout << "-" << endl; virtPort.writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(), strlen(params()->boot_osflags.c_str())); } |