comment / Description: This is a basic program which writes multiple lines into the cmd / TITLE Multiplelines (MultipleLines.asm) INCLUDE Irvine32.inc ;This is where we declare all the data information .data ;Assign a 32-bit storage size with String Hello World to variable variable1 BYTE "Hello! this is the 1st line", 0 variable2 BYTE "Hello! this is the 2nd line", 0 variable3 BYTE "Hello! this is the 3rd line", 0 ;This is the main procedure of the program .code main PROC ;Create a cmd console call clrscr ;Move the values in the variable1 into edx mov edx, OFFSET variable1 ;Write the value of variable1 into the console call writestring ;Skip line call crlf ;Move the values in the variable2 into edx mov edx, OFFSET variable2 ;Write the value of variable2 into the console call writestring ;skip line call crlf ;Move the values in the variable3 into edx mov edx, OFFSET variable3 ;Write the value of variable3 into the console call writestring ;skip line call crlf exit main endp END main