I need to leave multiple empty lines.
I tried
PRINT 09h,09h
and
CALL PTHIS
DB 13, 10, '', 0
CALL PTHIS
DB 13, 10, '', 0
The first method seems to leave a single line regardless the number of 09h I use while the second is obviously not very practical.
How can I make multiple line breaks in assembly?