(self)
| 462 | } |
| 463 | |
| 464 | pub(crate) fn opcode(self) -> u32 { |
| 465 | match self { |
| 466 | Self::Fmadd => 0b1000011, |
| 467 | Self::Fmsub => 0b1000111, |
| 468 | Self::Fnmsub => 0b1001011, |
| 469 | Self::Fnmadd => 0b1001111, |
| 470 | } |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | impl FpuOPRR { |
no outgoing calls
no test coverage detected