In MIPS assembly, there are instruction SLT, SLTI, SLTU, SLTIU implemented as real hardware instructions. Also, there are instruction for conditional jump when comparing register with zero (greater, greater or equal, less and less or equal), BE and BNE with registers (except with use $zero register) don't matter in this case.
Maybe my question will be stupid, but I can't get with only combinations of this instructions pseudo-instruction that will be looking: BG Rz, Const, Label, meaning in C: if(Rz > direct_value) PC = Label;.
If we will try to reach it, SLTI (= Set If Less Than Immediate) can give us, with use BE with $zero, only two possible branching and that is register is less than immediate or register is greater or equal immediate, but not greater than immediate without using additional instructions.
Am I missing something? If not, how is this effectively solved?
Sorry for my English.

BG Rz, Const, Label. Exactly likeBGE,BGT,BLE,BLTare demonstrated on this page. However, on this page are only used both operands as registers. I need branch if register is greater than immediate. - Nik Novák