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