pato-z80-home-computer/assembly/os/libs/strings.asm
Daniele Verducci su MatissePenguin 53022fdafc Moved "bios" to "os"
2020-12-30 20:14:03 +01:00

24 lines
384 B
NASM

; Strings manipulation library
; @author Daniele Verducci
; Transforms case to upper
Strings_strToUpper:
; TODO
ret
Strings_strToLower:
; TODO
ret
; Transforms character in A to uppercase. If is not a character, returns as is
; @param A character to transform
; @return A upper char
Strings_charToUpper:
; TODO
ret
Strings_charToLower:
; TODO
ret