view lib/alib/to_lowrs.as @ 3054:22ddd48b4ec2

level1 krn: Fix scheduler bug that only affected 6309 The original 6809 binary was correct, but it was disassembled and interpreted wrongly, so that reassembly went wrong on 6309.
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 25 Jan 2015 22:36:02 +0100
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