aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/amomax_w.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/amomax_w.h')
-rw-r--r--riscv/insns/amomax_w.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/riscv/insns/amomax_w.h b/riscv/insns/amomax_w.h
deleted file mode 100644
index ff9c2da..0000000
--- a/riscv/insns/amomax_w.h
+++ /dev/null
@@ -1,3 +0,0 @@
-int32_t v = mmu.load_int32(RS1);
-mmu.store_uint32(RS1, std::max(int32_t(RS2),v));
-RD = v;