PPRuNe Forums - View Single Post - Opinions on my website.
View Single Post
Old 10th March 2006 | 12:29
  #7 (permalink)  
Stoney X
 
Joined: Mar 2004
Posts: 133
Likes: 0
From: Bournemouth, UK
title UE_crazy

dosseg
.model small
.stack 100h

.data
warning_message db 'I am not quite that hard or crazy',0dh,0ah,'$'

.code
main proc
mov ax,@data
mov ds,ax

mov ah,9
mov dx,offset hello_message
int 21h

mov ax,4C00h
int 21h
main endp
end main


Stoney X is offline