Changed welcome message in print.asm

This commit is contained in:
Jonathan Turner 2023-09-12 11:40:15 -04:00
parent f3bdacdd2c
commit ba78ae7964

View File

@ -1,43 +1,50 @@
mov ah, 0x0e ; set tty mode (teletype mode) of Interrupt 10h for character output (0x0e)
mov al, 'W' ; set a single byte, the output character
mov al, 'G' ; set a single byte, the output character
int 0x10 ; Call the interrupt routine
mov al, 'e'
int 0x10
mov al, 'l'
int 0x10
mov al, 'c'
mov al, 'o'
int 0x10
mov al, 'o'
int 0x10
mov al, 'm'
mov al, 'd'
int 0x10
mov al, ''
int 0x10
mov al, 'E'
int 0x10
mov al, 'v'
int 0x10
mov al, 'e'
int 0x10
mov al, ' '
mov al, 'n'
int 0x10
mov al, 't'
mov al, 'i'
int 0x10
mov al, 'n'
int 0x10
mov al, 'g'
int 0x10
mov al, ''
int 0x10
mov al, 'P'
int 0x10
mov al, 'r'
int 0x10
mov al, 'o'
int 0x10
mov al, ' '
mov al, 'f'
int 0x10
mov al, ' '
mov al, 'e'
int 0x10
mov al, 'O'
mov al, 's'
int 0x10
mov al, 'S'
mov al, 's'
int 0x10
mov al, '3'
mov al, 'o'
int 0x10
mov al, '5'
int 0x10
mov al, '0'
int 0x10
mov al, '2'
mov al, 'r'
int 0x10
mov al, '!'
int 0x10
jmp $ ; jump to current address = infinite loop this is your boot program
; padding and magic number