| 393 | } |
| 394 | |
| 395 | void Assembler::LB(GPR rd, int32_t imm, GPR rs) noexcept { |
| 396 | BISCUIT_ASSERT(IsValidSigned12BitImm(imm)); |
| 397 | EmitIType(m_buffer, static_cast<uint32_t>(imm), rs, 0b000, rd, 0b0000011); |
| 398 | } |
| 399 | |
| 400 | void Assembler::LBU(GPR rd, int32_t imm, GPR rs) noexcept { |
| 401 | BISCUIT_ASSERT(IsValidSigned12BitImm(imm)); |
no test coverage detected