Branch to PC + imm if the signed value in register xs1 is less than the signed value in register xs2. Raise a `MisalignedAddress` exception if PC + imm is misaligned.
blt xs1, xs2, imm
Pseudo-Instructionbltz xs1, immequalsblt xs1, 0, immwhenxs2 == 0
Pseudo-Instructionbgtz xs2, immequalsblt 0, xs2, immwhenxs1 == 0
Pseudo-Instructionbgt xs2, xs1, immequalsblt xs1, xs2, immwhentrue
Type: