Thread: how to assemble
View Single Post
Join Date: Nov 2008
Posts: 18
Reputation: hellIon is an unknown quantity at this point 
Solved Threads: 0
hellIon hellIon is offline Offline
Newbie Poster

how to assemble

 
0
  #1
Nov 17th, 2008
.model tiny
.code

ORG 100H
HOST:
mov ah,9
mov dx,OFFSET HI
int 21H

mov ax,4C00H
int 21H

HI DB 'hello world$'

END HOST
Reply With Quote