68kcounter
Version:
68000 ASM source code cycle counter
7 lines (6 loc) • 307 B
TypeScript
import { Qualifier } from "../syntax";
import { InstructionStatement } from "./nodes";
/**
* Gets the size qualifier of an instruction, applying defaults where not specified
*/
export default function instructionQualifier({ opcode: { op, qualifier }, operands, }: InstructionStatement): Qualifier | null;