Mercurial > hg > Members > kono > nitros9-code
view lib/alib/to_lowrs.as @ 3220:9ccec98c9897
Updated IDE Driver makefile so it will have place holders for
dsk, dskclean, and dskcopy so that make does not error out when
chaining into the driver tree to build disk images where applicable.
author | David Ladd <drencor-xeen@users.sourceforge.net> |
---|---|
date | Wed, 20 Dec 2017 16:10:50 -0600 |
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