View Single Post
Old Mar 13th, 2008, 2:15 PM   #3
Vb Programmer
Newbie
 
Join Date: Mar 2008
Posts: 5
Rep Power: 0 Vb Programmer is on a distinguished road
Re: Deleting chracters

how would i go about doing that? im fairley new to assembly

this is the code to ask the user to enter a string
mov AH, 63
mov BX, 0
mov CX, 25
lea DX, UserText
int 33

this code prints the string to screen
mov AH, 64
	mov BX, 1
	mov CX, Length
	lea DX, UserText
	int 33
Vb Programmer is offline   Reply With Quote