summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-11-14 01:30:34 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-11-14 01:30:34 -0500
commit20730b790c98bfb29d1f57911b32610af4d6e35b (patch)
treec265dc2944b9c4c2584da9b14089d4b55f945f4b /src
parentc2ceaa887e07a219b16423d8f9c20624785ee4a1 (diff)
downloadgem5-20730b790c98bfb29d1f57911b32610af4d6e35b.tar.xz
Set hpstate to be what I'm assuming Legion is.
--HG-- extra : convert_revision : 0be66513cb0cff07c0c2b50c97c1ea74d52b0dc9
Diffstat (limited to 'src')
-rw-r--r--src/arch/sparc/miscregfile.cc3
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;