A83: Darn Lower Case


[Prev][Next][Index][Thread]

A83: Darn Lower Case




  Hum...  I seem to have found something wierd with the lowercase
letters.   Basic for some reason will not display them on the screen
as they should be.  If you add 0, or 1, ect.. it will display it that
many characters up, but not the lower case.  Someone take a look at
this code and slap me upside the head abit.

Jimmy


.NOLIST
#define equ .equ
#define EQU .equ
#define END .end
#include "ti83asm.inc"
#include "tokens.inc"

.LIST
.org 9327h
	call 	_zerooop1
	ld 	a, tans		
	ld 	(op1+1), a
	call 	_chkfindsym  ; (should be findsym??)
	ld	a, (de)
	ld	b, a			
	inc	de
	inc	de
tolower:
	ld	a, (de)		; Get letter
	add	a, 32		; Lowercase it!
	ld 	(de), a		; Store it back
	inc	 de		; Next letter
	djnz	tolower	
	ret
.end
end


_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com



Follow-Ups: