view lib/alib/parsnstr.a @ 2765:0bd16cca86b7

Updated rules.mak for all the os9 format's to format the entire disk. People were having some issues with the disk images not being formatted to their full capacity and preventing some functions from working.
author drencor-xeen
date Thu, 17 Jan 2013 11:03:26 -0600
parents 7d70b7e1cb21
children aaba193af04f
line wrap: on
line source

* Parse sign bit terminated string to convert it to a
* null terminated string. Note: if X and Y are the same
* the existing string will be overwritten -- don't do this
* with psects...

* OTHER MODULES NEEDED: none
 
* ENTRY: X=start of sign bit terminated string
*        Y=buffer for null terminated string

* EXIT: D=string size (not including null)
*       All other regs (except cc) preserved


 nam Parse sign-bit terminated string
 ttl Assembler Library Module


 psect PARSNSTR,0,0,0,0,0


PARSNSTR:
 pshs x
 lbsr STRHCPY copy string
 tfr y,x point to moved string
 lbsr STRHLEN find length of string
 pshs d size
 leax d,x
 lda ,-x get final byte
 anda #%01111111 clear sign bit
 clrb add null terminator
 std ,x  
 puls d,x,pc


 endsect