You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure about this, but shouldn't the global pointer be initialized to 0x10000800 instead of 0x10008000?
The reason is that it would allow access to addresses from 0x10000000 to 0x10000fff using a single load/store instruction with a 12 bit immediate.
The current value used in RARS seems to make more sense for MIPS where the immediate is 16 bits.
The text was updated successfully, but these errors were encountered:
Not sure about this, but shouldn't the global pointer be initialized to
0x10000800
instead of0x10008000
?The reason is that it would allow access to addresses from
0x10000000
to0x10000fff
using a single load/store instruction with a 12 bit immediate.The current value used in RARS seems to make more sense for MIPS where the immediate is 16 bits.
The text was updated successfully, but these errors were encountered: