blob: 19cd9a0a6fe831b868697c4bf87d81eb47e930a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# CONVENTION: macro only uses %AX, %SI registers
.macro BIOS_PRINT string
mov $0x0e, %ah # Set writing char in TTY mode routine
mov \string, %si # Set in Source Index reg the beginning
# address of a string
print_loop\@:
lodsb # Increase SI by 1 byte => get next char
or %al, %al # Check for a '\0'
jz print_done\@
int $0x10 # Print a char in al register
jmp print_loop\@
print_done\@:
.endm
.macro PUTCHAR char
mov $0x0e, %ah # Set writing char in TTY mode routine
mov \char, %al
int $0x10 # Print a char in al register
.endm
|