changeset 3995fc9d1280 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=3995fc9d1280
description:
        Fix improper shift for loading address

diffstat:

 system/alpha/palcode/platform_m5.s |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (15 lines):

diff -r 3ae330196ace -r 3995fc9d1280 system/alpha/palcode/platform_m5.s
--- a/system/alpha/palcode/platform_m5.s        Tue Feb 03 15:03:34 2004 -0500
+++ b/system/alpha/palcode/platform_m5.s        Tue Feb 03 15:09:09 2004 -0500
@@ -799,9 +799,9 @@
         or      r31,3,r16                       // a0 means it is a I/O 
interrupt
         
         bis     r31,0x801,r8
-        sll     r8,4,r8
+        sll     r8,16,r8
         bis     r8,0xa000,r8
-        sll     r8,4,r8
+        sll     r8,16,r8
         bis     r8,0x80,r8
         ldl_p   r9, 0(r8)                       // read the MISC register
         
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to