I went through the steps and got stuck on step 4 with an error.
QUOTE
C:\Documents and Settings\*****\Desktop\New Folder>tlink myprog.obj
Turbo Link Version 7.1.30.1. Copyright © 1987, 1996 Borland International
Fatal: No program entry point
I used the same code in the example :
CODE
; use; to put comments in the assembler program
.MODEL SMALL; memory model
.STACK; memory space for program instructions in the stack
.CODE; the following lines are program instructions
mov ah,1h; moves the value 1h to register ah
mov cx,07h;moves the value 07h to register cx
int 10h;10h interruption
mov ah,4ch;moves the value 4 ch to register ah
int 21h;21h interruption
END; finishes the program code
EDIT:Never mind figered it out from this page:http://forums.devshed.com/other-programming-languages-139/fatal-no-program-entry-point-454993.html
Thanks for the help no2pencil could not have done it with out you

.
This post has been edited by Clearman: 11 May, 2008 - 04:14 AM