TITLE hello assembler (instructor dev)						(main.asm)

; Description: displays a message
; 
; Revision date: Feb 5, 09

INCLUDE Irvine32.inc

.data

msg	BYTE "hello assembler",0		; a null terminated string

.code
main PROC

	mov	edx,OFFSET msg			; move the string's offset into EDX
	call WriteString			; use Irvine code to print the string	
	call	DumpRegs				; let's check out the registers
	
	exit						; use Irvine code to quit
main ENDP
END main
