view lib/alib/to_lowrs.as @ 2852:f2e92661b4c6 lwtools-port

Makefiles: Always use macro for lwar and rm The LWAR macro is new, rm was still used in one place.
author Tormod Volden <debian.tormod@gmail.com>
date Fri, 12 Jul 2013 22:41:18 +0200
parents 03f26e88b809
children
line wrap: on
line source

*******************************

* convert a null terminated string to all lowercase

* OTHER MODULES NEEDED: TO_LOWER

* ENTRY: X=start of string

* EXIT:  all registers  preserved

 nam Convert String to Lowercase
 ttl Assembler Library Module

 section .text

TO_LOWRS:
 pshs cc,b,x

loop
 ldb ,x get char to check
 beq exit exit if all done
 lbsr TO_LOWER convert to upper 
 stb ,x+ put back in string
 bra loop loop till done

exit
 puls cc,b,x,pc

 endsect