Home/Instructions/Unsigned Minimum
MINU

RISC-V MINU Instruction Details

Instruction ManualR-type

Return the minimum of rs1 and rs2 using unsigned comparison.

Instruction Syntax

minu rd, rs1, rs2
Operand Breakdown
Destination rd: register receiving the operation result.
Source rs1: register holding the first operand.
Source rs2: register holding the second operand.
BZbbBit ManipulationInteger Operation

Instruction Behavior

MINU is a Zbb integer min/max instruction. It compares x[rs1] and x[rs2] as unsigned values and writes the original XLEN-bit value that is smaller under that ordering to rd.

MINU Decode And Execute Animation

Starts with machine-code field decoding, then shows operand reads, instruction-specific execution, and ISA-visible state update.

rd
rs1
rs2
minu
,
,
Execution Context
t1(x6)
0x00000014
a0(x10)
0x00001000
31..25
24..20
19..15
14..12
11..7
6..0
0000101
funct7
01010
rs2
00110
rs1
101
funct3
00101
rd
0110011
opcode
Execution Data Path
instruction
0x0AA352B3
opcode
0110011 -> OP
funct3
101 -> MINU
funct7
0000101 -> Zbb MIN/MAX selector
rd / rs1 / rs2
t0(x5) / t1(x6) / a0(x10)
integer comparison and selection
unsigned: 0x00000014 (20) < 0x00001000 (4096) -> select rs1 = 0x00000014
x5
t0(x5) = 0x00000014
Current Step

Concept Step: receive the 32-bit instruction encoding

The machine code is split by the current instruction format; the animation starts from encoding/decode.

encoding: 0x0AA352B3
syntax : minu t0(x5), t1(x6), a0(x10)
result : t0(x5) = 0x00000014
Architectural Result
t0(x5) = 0x00000014

This animation shows ISA-visible decode and state changes, not any specific CPU pipeline, cache, prediction, or timing implementation.

Quick Understanding & Search Notes

MINU selects between rs1 and rs2 using unsigned ordering and returns the selected original XLEN-bit pattern, not a comparison bit.

Forms with U use unsigned ordering; forms without U use two's-complement signed ordering.
MINU operands and result are XLEN-wide integer-register values.

Common Usage Scenarios

Integer Comparison

Understand this scenario with real code like «minu x10, x11, x12 ; x10 = unsigned_min(x11, x12)».

Integer Min/Max

Understand this scenario with real code like «minu x10, x11, x12 ; x10 = unsigned_min(x11, x12)».

Pre-Use Checklist

Syntax Check
  • Verify rd, rs1, rs2 (and rs3) are valid GPRs.
  • Confirm funct3 and funct7 encoding is correct.
Semantic Check
  • Check if the result affects subsequent branches or address calculations.
  • Ensure the rd register is not overwritten by another instruction.

Pitfalls / Common Confusions

MINU uses unsigned comparison; use MIN for signed comparisons.
The result is the selected original register value, not Boolean 0/1.
MINU and MIN differ only in comparison signedness; the selected original bit pattern is written.

FAQ

Does MINU return 0 or 1?

No. It returns the original XLEN-bit value selected from rs1 or rs2 by the comparison rule.

How do I choose between MINU and MIN?

Use the U form when data is ordered as unsigned; use the non-U form for signed two's-complement ordering.