From ba067b3e3e95aee6870522fe7616d364985185bb Mon Sep 17 00:00:00 2001 From: garenchan <1412950785@qq.com> Date: Sat, 10 Nov 2018 20:33:19 +0800 Subject: [PATCH] fix comment for character address --- 08-32bit-print/32bit-print.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08-32bit-print/32bit-print.asm b/08-32bit-print/32bit-print.asm index e940aa9..6c6b192 100644 --- a/08-32bit-print/32bit-print.asm +++ b/08-32bit-print/32bit-print.asm @@ -9,7 +9,7 @@ print_string_pm: mov edx, VIDEO_MEMORY print_string_pm_loop: - mov al, [ebx] ; [ebx] is the address of our character + mov al, [ebx] ; 'ebx' is the address of our character mov ah, WHITE_ON_BLACK cmp al, 0 ; check if end of string