View Single Post
Old 11-09-2011, 09:48 PM  
itto
Confirmed User
 
itto's Avatar
 
Industry Role:
Join Date: Jul 2006
Location: world wide
Posts: 1,363
title Computer sez 41
dosseg
.model small
.stack 100h
.data
da_result db '41',0dh,0ah,'$'
.code
main proc
mov ax,@data
mov ds,ax
mov ah,9
mov dx,offset da_result
int 21h
mov ax,4C00h
int 21h
main endp
end main
__________________
itto is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote