cc: z80 helpers
authorAlan Cox <alan@linux.intel.com>
Thu, 16 Nov 2017 18:55:10 +0000 (18:55 +0000)
committerAlan Cox <alan@linux.intel.com>
Thu, 16 Nov 2017 18:55:10 +0000 (18:55 +0000)
commite80d648a2d5441d8462c99932a427c7f6196c248
tree142201277b7878a716d274e3e50e141766d07b9d
parent4af1151d567af901ff622e10a7bf3b77733ee557
cc: z80 helpers

First drafts
25 files changed:
Applications/SmallC/Z80/lib/_isalnum.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isalpha.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isascii.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isblank.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_iscntrl.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isdigit.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isgraph.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_islower.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isprint.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_ispunct.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isspace.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isupper.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_isxdigit.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_memcpy.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_memset.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strcat.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strchr.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strcmp.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strcpy.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strcspn.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strlen.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strncat.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strncpy.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strrchr.s [new file with mode: 0644]
Applications/SmallC/Z80/lib/_strspn.s [new file with mode: 0644]