From: kajoljain379 Date: Tue, 19 Mar 2019 08:38:24 +0000 (+0530) Subject: arch-power: Updated Store instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a536a76f5413683c833506a6f0d4df47e4f60849;p=gem5.git arch-power: Updated Store instructions Change-Id: I3eb0f5adbcce13cf586755fa62c7ca1d7aa80089 Signed-off-by: kajoljain379 --- diff --git a/src/arch/power/isa/decoder.isa b/src/arch/power/isa/decoder.isa index 541975564..92e1f7712 100644 --- a/src/arch/power/isa/decoder.isa +++ b/src/arch/power/isa/decoder.isa @@ -216,13 +216,13 @@ decode PO default Unknown::unknown() { format StoreDispOp { 38: stb({{ Mem_ub = Rs_ub; }}); 44: sth({{ Mem_uh = Rs_uh; }}); - 36: stw({{ Mem = Rs_uw; }}); + 36: stw({{ Mem_uw = Rs_uw; }}); } format StoreDispUpdateOp { 39: stbu({{ Mem_ub = Rs_ub; }}); 45: sthu({{ Mem_uh = Rs_uh; }}); - 37: stwu({{ Mem = Rs_uw; }}); + 37: stwu({{ Mem_uw = Rs_uw; }}); } format IntImmArithCheckRaOp {