I am new to assembly language i want a way to change screen color in MASM (Console Color) i had searched in internet but i didn't find anything . I already had made the code that changes the text color this is the function that changes the text color
ChangeTextColor PROC
call crlf
mov edx,offset colormsg
call writestring
call crlf
call readint
call clrscr
call setTextColor
ret
ChangeTextColorColor ENDP