* specifierForUID - Given a UID, returns the name and operand specification for * that instruction. * * @param uid - The unique ID for the instruction. This should be returned by * decode(); specifierForUID will not check bounds. * @return - A pointer to the specification for that instruction. */
| 266 | * @return - A pointer to the specification for that instruction. |
| 267 | */ |
| 268 | static const struct InstructionSpecifier *specifierForUID(InstrUID uid) |
| 269 | { |
| 270 | return &INSTRUCTIONS_SYM[uid]; |
| 271 | } |
| 272 | |
| 273 | /* |
| 274 | * consumeByte - Uses the reader function provided by the user to consume one |
no outgoing calls
no test coverage detected
searching dependent graphs…