fix typo: WHITE_OB_BLACK -> WHITE_ON_BLACK

This commit is contained in:
garenchan 2018-11-24 18:37:53 +08:00
parent 87c6042643
commit 025a4d5189
6 changed files with 12 additions and 12 deletions

View File

@ -2,7 +2,7 @@
; this is how constants are defined
VIDEO_MEMORY equ 0xb8000
WHITE_OB_BLACK equ 0x0f ; the color byte for each character
WHITE_ON_BLACK equ 0x0f ; the color byte for each character
print_string_pm:
pusha
@ -10,7 +10,7 @@ print_string_pm:
print_string_pm_loop:
mov al, [ebx] ; [ebx] is the address of our character
mov ah, WHITE_OB_BLACK
mov ah, WHITE_ON_BLACK
cmp al, 0 ; check if end of string
je print_string_pm_done

View File

@ -2,7 +2,7 @@
; this is how constants are defined
VIDEO_MEMORY equ 0xb8000
WHITE_OB_BLACK equ 0x0f ; the color byte for each character
WHITE_ON_BLACK equ 0x0f ; the color byte for each character
print_string_pm:
pusha
@ -10,7 +10,7 @@ print_string_pm:
print_string_pm_loop:
mov al, [ebx] ; [ebx] is the address of our character
mov ah, WHITE_OB_BLACK
mov ah, WHITE_ON_BLACK
cmp al, 0 ; check if end of string
je print_string_pm_done

View File

@ -2,7 +2,7 @@
; this is how constants are defined
VIDEO_MEMORY equ 0xb8000
WHITE_OB_BLACK equ 0x0f ; the color byte for each character
WHITE_ON_BLACK equ 0x0f ; the color byte for each character
print_string_pm:
pusha
@ -10,7 +10,7 @@ print_string_pm:
print_string_pm_loop:
mov al, [ebx] ; [ebx] is the address of our character
mov ah, WHITE_OB_BLACK
mov ah, WHITE_ON_BLACK
cmp al, 0 ; check if end of string
je print_string_pm_done

View File

@ -2,7 +2,7 @@
; this is how constants are defined
VIDEO_MEMORY equ 0xb8000
WHITE_OB_BLACK equ 0x0f ; the color byte for each character
WHITE_ON_BLACK equ 0x0f ; the color byte for each character
print_string_pm:
pusha
@ -10,7 +10,7 @@ print_string_pm:
print_string_pm_loop:
mov al, [ebx] ; [ebx] is the address of our character
mov ah, WHITE_OB_BLACK
mov ah, WHITE_ON_BLACK
cmp al, 0 ; check if end of string
je print_string_pm_done

View File

@ -2,7 +2,7 @@
; this is how constants are defined
VIDEO_MEMORY equ 0xb8000
WHITE_OB_BLACK equ 0x0f ; the color byte for each character
WHITE_ON_BLACK equ 0x0f ; the color byte for each character
print_string_pm:
pusha
@ -10,7 +10,7 @@ print_string_pm:
print_string_pm_loop:
mov al, [ebx] ; [ebx] is the address of our character
mov ah, WHITE_OB_BLACK
mov ah, WHITE_ON_BLACK
cmp al, 0 ; check if end of string
je print_string_pm_done

View File

@ -2,7 +2,7 @@
; this is how constants are defined
VIDEO_MEMORY equ 0xb8000
WHITE_OB_BLACK equ 0x0f ; the color byte for each character
WHITE_ON_BLACK equ 0x0f ; the color byte for each character
print_string_pm:
pusha
@ -10,7 +10,7 @@ print_string_pm:
print_string_pm_loop:
mov al, [ebx] ; [ebx] is the address of our character
mov ah, WHITE_OB_BLACK
mov ah, WHITE_ON_BLACK
cmp al, 0 ; check if end of string
je print_string_pm_done