Subversion Repositories aysalia

Compare Revisions

Regard whitespace Rev 25 → Rev 24

/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,13 → 138,14
; cl = Color
mov ah, 0Eh
print_color_string_again:
mov al, 0
mov bx, dx
cmp [bx], al
je print_color_string_end
mov al, [bx]
cmp al, 0 ; is the character zero? then we are done
je print_color_string_end
mov bl, cl
int 10h
add dx, 1 ; go to next character
add dx, 1
jmp print_color_string_again
print_color_string_end:
ret