diff options
| author | Mark Wenning <wenning@us.ibm.com> | 2013-02-13 20:26:49 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-02-28 10:07:23 -0600 |
| commit | 6a257b9bfa5c95cd342e92e441c5fade9f034796 (patch) | |
| tree | 7e724328cea9c083f4da3145e975e13d026cbd57 /src/build/debug | |
| parent | 3d50adf7e2ba101168f6e0cb1be69d552814500f (diff) | |
| download | talos-hostboot-6a257b9bfa5c95cd342e92e441c5fade9f034796.tar.gz talos-hostboot-6a257b9bfa5c95cd342e92e441c5fade9f034796.zip | |
Fix hb-Istep to work under simics
Change-Id: I60dbd9940b2126969292519f8427efe31c90ad33
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/3185
Tested-by: Jenkins Server
Reviewed-by: Van H. Lee <vanlee@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/debug')
| -rwxr-xr-x | src/build/debug/Hostboot/Istep.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/build/debug/Hostboot/Istep.pm b/src/build/debug/Hostboot/Istep.pm index a4aee621f..4911ee3a9 100755 --- a/src/build/debug/Hostboot/Istep.pm +++ b/src/build/debug/Hostboot/Istep.pm @@ -6,7 +6,7 @@ # # IBM CONFIDENTIAL # -# COPYRIGHT International Business Machines Corp. 2011,2012 +# COPYRIGHT International Business Machines Corp. 2011,2013 # # p1 # @@ -672,8 +672,8 @@ sub getStatus() $statusLo = ::readScom( MBOX_SCRATCH1, 8 ); if ( $opt_debug ) { ::userDisplay "=== statusLo: $statusLo \n"; } - $status = ( ( (hex $statusHi) & 0xffffffff00000000 ) - | (( (hex $statusLo) & 0xffffffff00000000 ) >> 32) + $status = ( ( ( $statusHi) & 0xffffffff00000000 ) + | (( ( $statusLo) & 0x7fffffff00000000 ) >> 32) ); if ( $opt_debug ) |

