The code here is for Hello World simple program in assembly
.model small
.stack 100h
.data
msg db 0AH,0DH,"Hello World","$"
.code
mov ax,@data
mov ds,ax
mov ah,09h
mov dx,offset msg
int 21h
mov ah,4ch
int 21h
I want the code to change the color of console background and text color also. I am using Dosbox to run this code.