export declare const TEST_INPUT = "[BITS 16]\n[ORG 0x7c00]\n\nMOV AL, 0x59\nMOV AH, 0x0E\t   ;Tell BIOS that we need to print one charater on screen.\nMOV BH, 0x00\t   ;Page no.\nMOV BL, 0x07\t   ;Text attribute 0x07 is lightgrey font on black background\nINT 0x10\t       ;Call video interrupt\n\nint3\n\nMOV AL, 0x41\nMOV AH, 0x0E\t   ;Tell BIOS that we need to print one charater on screen.\nMOV BH, 0x00\t   ;Page no.\nMOV BL, 0x07\t   ;Text attribute 0x07 is lightgrey font on black background\nINT 0x10\t       ;Call video interrupt\n\nint3\n\nMOV AL, 0x59\nMOV AH, 0x0E     ;Tell BIOS that we need to print one charater on screen.\nMOV BH, 0x00     ;Page no.\nMOV BL, 0x07     ;Text attribute 0x07 is lightgrey font on black background\nINT 0x10         ;Call video interrupt\n\njmp $\n\nTIMES 510 - ($ - $$) db 0\nDW 0xAA55 ;\uD83E\uDD16";
