view lib/alib/to_upprs.as @ 3149:afd0f7d9b514

Add the Sleuth multipass disassembler from Bud Pass Added new directory "3rdparty/utiles/sleuth3" and source files to build "sleuth3" and its utilities. Also added "sleuth3" to the Directories section of "3rdparty/utils/makefile" to faciliate the inclusion of the sleuth3 build.
author Bill Pierce <merlinious999@gmail.com>
date Sat, 04 Feb 2017 18:55:39 +0100
parents 03f26e88b809
children
line wrap: on
line source

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

* convert a null terminated string to all uppercase

* OTHER MODULES NEEDED: TO_UPPER

* ENTRY: X=start of string

* EXIT:  all registers (except CC) preserved


 nam Convert String to Uppercase
 ttl Assembler Library Module


 section .text

TO_UPPRS:
 pshs cc,b,x

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

exit
 puls cc,b,x,pc

 endsect