MCPcopy Create free account
hub / github.com/OFFTKP/felix86 / DIV

Method DIV

external/biscuit/src/assembler.cpp:1186–1188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1184// RV32M Extension Instructions
1185
1186void Assembler::DIV(GPR rd, GPR rs1, GPR rs2) noexcept {
1187 EmitRType(m_buffer, 0b0000001, rs2, rs1, 0b100, rd, 0b0110011);
1188}
1189void Assembler::DIVU(GPR rd, GPR rs1, GPR rs2) noexcept {
1190 EmitRType(m_buffer, 0b0000001, rs2, rs1, 0b101, rd, 0b0110011);
1191}

Callers 2

FAST_HANDLEFunction · 0.80

Calls 1

EmitRTypeFunction · 0.85

Tested by

no test coverage detected