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
Description:
get instruction does not work, if address parameter is set via register. According to the wiki, and stationeer manual, the address parameter may be passed via register.
Repro steps:
r1 register is not set to the value from stack address 0
poke 0 -666742878 #iron
move r0 0
get r1 db r0
#r1 is empty
if I replace r0 with the literal 10, then r1 is set to -666742878.
poke 0 -666742878 #iron
move r0 0
get r1 db 10
#r1 is -666742878
Expected behavior:
r1 is set to the value stored in stack at the referenced address as stated in wiki and manual
Description:
get instruction does not work, if address parameter is set via register. According to the wiki, and stationeer manual, the address parameter may be passed via register.
Repro steps:
r1 register is not set to the value from stack address 0
if I replace r0 with the literal 10, then r1 is set to -666742878.
Expected behavior:
r1 is set to the value stored in stack at the referenced address as stated in wiki and manual
Screenshot:
Additional information
https://stationeers-wiki.com/MIPS#Stack
The text was updated successfully, but these errors were encountered: