Get the instruction format for this opcode.
(self)
| 303 | impl Opcode { |
| 304 | /// Get the instruction format for this opcode. |
| 305 | pub fn format(self) -> InstructionFormat { |
| 306 | OPCODE_FORMAT[self as usize - 1] |
| 307 | } |
| 308 | |
| 309 | /// Get the constraint descriptor for this opcode. |
| 310 | /// Panic if this is called on `NotAnOpcode`. |
no outgoing calls
no test coverage detected