I learn to assembler yasm. But when compiling displays:
boot.asm: 11: warning: value does not fit in 8 bit field
Source:
use16 org 0x7c00 start: mov ah,0xEH mov al "This is working..." mov bl,0 mov bh,0 int 10h jmp $ finish: times 510+start-finish db 0 db 0x55,0xAAA