Subversion Repositories aysalia

Compare Revisions

Regard whitespace Rev 24 → Rev 25

/trunk/Aysalia DOS/AyDos.mnu
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/Source/Menu/AyDos.mnu
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/Source/Menu/AyDosMnu.asm
138,14 → 138,13
; cl = Color
mov ah, 0Eh
print_color_string_again:
mov al, 0
mov bx, dx
cmp [bx], al
mov al, [bx]
cmp al, 0 ; is the character zero? then we are done
je print_color_string_end
mov al, [bx]
mov bl, cl
int 10h
add dx, 1
add dx, 1 ; go to next character
jmp print_color_string_again
print_color_string_end:
ret