u_short GetIntrMask();


disassembled listing :
GetIntrMask:
    lui     v0,_hi(data_10E8)
    lw      v0,_lo(data_10E8)(v0)
    nop
    lhu     v0,0(v0)
    jr      ra
    nop
source code :
static volatile u_short *int_mask = (void *)0x1f801074;

u_short GetIntrMask()
{
    return *int_mask;
}
reversed listing :
GetIntrMask:
    lw      $2,int_mask
    nop
    lhu     $2,0($2)
    j       $31
    nop
coincidence: 100%

STATUS: COMPLETE
20 Apr 2003
Hosted by uCoz