aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/amomax_w.h
blob: ff9c2da7923787f9232914074deca2008fbc36eb (plain)
1
2
3
int32_t v = mmu.load_int32(RS1);
mmu.store_uint32(RS1, std::max(int32_t(RS2),v));
RD = v;