Does anyone know how to change the colour of strings using x86 NASM Assembler? I've found tutorials like this:
mov ah, 09h
mov al, 97
mov bx, 100b
mov cx, 01h
int 10h
Which prints the letter "A" once in the colour you choose. This is a handy tutorial, but I would like to be able to print the entire screen text (i.e more than one string) in the same colour. Anyone have any ideas?