diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-14 01:30:34 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-14 01:30:34 -0500 |
commit | 20730b790c98bfb29d1f57911b32610af4d6e35b (patch) | |
tree | c265dc2944b9c4c2584da9b14089d4b55f945f4b | |
parent | c2ceaa887e07a219b16423d8f9c20624785ee4a1 (diff) | |
download | gem5-20730b790c98bfb29d1f57911b32610af4d6e35b.tar.xz |
Set hpstate to be what I'm assuming Legion is.
--HG--
extra : convert_revision : 0be66513cb0cff07c0c2b50c97c1ea74d52b0dc9
-rw-r--r-- | src/arch/sparc/miscregfile.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/sparc/miscregfile.cc b/src/arch/sparc/miscregfile.cc index d52e3983f..d9d7f4411 100644 --- a/src/arch/sparc/miscregfile.cc +++ b/src/arch/sparc/miscregfile.cc @@ -88,7 +88,8 @@ void MiscRegFile::reset() otherwin = 0; wstate = 0; gl = 0; - hpstate = 0; + //In a T1, bit 11 is apparently always 1 + hpstate = (1 << 11); memset(htstate, 0, sizeof(htstate)); hintp = 0; htba = 0; |