i forgot to give you what i have so far
name_in proc ;input name
;ClearScreen
mov ah,09
mov dx, offset prompt
int 21h
mov ah,0ah
mov dx,offset nameprm
int 21h
ret...
TITLE Sort names entered from terminal (bsort.asm)
.MODEL small
.STACK 256
INCLUDE macs.inc
.DATA
nameprm label byte ;name prm list:
maxlen db 21 ; max length of name
namelen db ? ; #...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.