.586 .model small ;---------------------------------------------------- ;data segement ;---------------------------------------------------- .data message db "Hello world", 0 ;---------------------------------------------------- ;----------------------------------------------------- ;code segment ;----------------------------------------------------- .code start: mov ah, 09h ;dos function to print string mov edx, offset message ;address of string to be printed int 21h ;call interrrupt end start
Edited by dargueta, 17 June 2011 - 08:18 AM.
Please use [code][/code] tags!


Sign In
Create Account


Back to top









