org 0100h
mov dx, msg
mov ah, 09h
int 21h
mov ah, 4ch
int 21h
msg db 'Hello Wold! \nThis is my first program using Assembly', '$'
Hi guys,
I'm learning Assembly Programming using NASM and had a question. Would it be possible to break lines in Assembly?
Say for instance I would like to display the line above as.
Hello World!
This is my
first program
using Assembly
Thanks in advance for the help.