File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ spin:
109
109
110
110
# print a string and a newline
111
111
# IN
112
- # esi : points at zero - terminated String
112
+ # si : points at zero - terminated String
113
113
# CLOBBER
114
114
# ax
115
115
real_mode_println:
@@ -121,7 +121,7 @@ real_mode_println:
121
121
122
122
# print a string
123
123
# IN
124
- # esi : points at zero - terminated String
124
+ # si : points at zero - terminated String
125
125
# CLOBBER
126
126
# ax
127
127
real_mode_print:
@@ -130,7 +130,7 @@ real_mode_print_loop:
130
130
# note: if direction flag is set (via std )
131
131
# this will DECREMENT the ptr , effectively
132
132
# reading/printing in reverse.
133
- lodsb al , BYTE PTR [ esi ]
133
+ lodsb al , BYTE PTR [ si ]
134
134
test al , al
135
135
jz real_mode_print_done
136
136
call real_mode_print_char
You can’t perform that action at this time.
0 commit comments