blob: 79293b48725f9233ff673df9b10ae81a9ed355b1 [file] [log] [blame] [raw]
import { getAsmOpcode } from '../asm-docs-6502';
import { BaseAssemblyDocumentationHandler } from '../base-assembly-documentation-handler';
export class Mos6502DocumentationHandler extends BaseAssemblyDocumentationHandler {
getInstructionInformation(instruction) {
return getAsmOpcode(instruction) || null;
}
}