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=50893fabb50abbcaffeec34ecd4bac791e05a003;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 a2f12b427..01562cadf 100644 --- a/src/arch/power/isa/decoder.isa +++ b/src/arch/power/isa/decoder.isa @@ -214,13 +214,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 {