mov ah, 0x0e ; set tty mode (teletype mode) of Interrupt 10h for character output (0x0e)
mov al, 'G' ; set a single byte, the output character
int 0x10 ; Call the interrupt routine
mov al, 'o'
int 0x10
mov al, 'd'
mov al, ''
mov al, 'E'
mov al, 'v'
mov al, 'e'
mov al, 'n'
mov al, 'i'
mov al, 'g'
mov al, 'P'
mov al, 'r'
mov al, 'f'
mov al, 's'
mov al, '!'
jmp $ ; jump to current address = infinite loop this is your boot program
; padding and magic number
times 510 - ($-$$) db 0
dw 0xaa55