Colored Hello World in TASM
问题 Good day. I'm new in assembly language and I'm trying to print a colored "Hello World" in TASM. Here is my code so far. It just prints "hello world" without a color. .model small .stack 100h .data message db 13,10,"Hello World!$" .code main proc near lea dx, message mov ah, 09h int 21h mov ah,4ch int 21h main endp I've read something like this mov ah,9 ;Function 9: Write character and attribute at cursor position mov al,'H' ;AL = character to display mov bh,0 ;BH = page number mov bl,02EH ;BL