; ; This is a Hello World assembly program ; comment / Description: This is a basic hello world program written in assembly / TITLE HelloWorld (HelloWorld.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 variable BYTE "Hello World",0 ;This is the main procedure of the program .code main PROC ;Create a cmd console call clrscr ;Move the values in the variable into edx mov edx, OFFSET variable ;Write the value of variable into the console call writestring ;Skip line call crlf exit main endp END main