Location | Referrer | Text |
opcodes.h:15 | | static uint32_t bit(uint32_t value, unsigned int b) |
opcodes.h:53 | imm_b() | return (bit(imm, 11) << 7) | (bits(imm, 4, 1) << 8) | (bits(imm, 10, 5) << 25) | (bit(imm, 12) << 31); |
opcodes.h:65 | imm_j() | return (bits(imm, 19, 12) << 12) | (bit(imm, 11) << 20) | (bits(imm, 10, 1) << 21) | (bit(imm, 20) << 31); |