},
IR::Store8 => { // ( x addr -- )
self.pop_some_to("t0 t1");
- self.line("sbu t0, 0(t1)"); // store x at addr
+ self.line("sb t0, 0(t1)"); // store x at addr
},
IR::Store16 => { // ( x addr -- )
self.pop_some_to("t0 t1");
- self.line("shu t0, 0(t1)"); // store x at addr
+ self.line("sh t0, 0(t1)"); // store x at addr
},
IR::Store32 => { // ( x addr -- )
self.pop_some_to("t0 t1");
- self.line("shu t0, 0(t1)"); // store x at addr
+ self.line("sw t0, 0(t1)"); // store x at addr
},
IR::Store => { // ( x addr -- )
self.pop_some_to("t0 t1");