This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; (c) Copyright 2016 Matt Waltz | |
;------------------------------------------------------------------------- | |
; Faster memset variation | |
; Reasons faster: | |
; 1) uses ldir to memset | |
; 2) executes in RAM to avoid flash wait states | |
;------------------------------------------------------------------------- | |
.def _memset_fast | |
.assume adl=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; This has some custom string routines for use with my non-standard variant of | |
; Windows 1252. | |
.assume adl=1 | |
.def _strupper | |
.def _strlower | |
.def _isgreek | |
if defined GREEK_CASE_CHANGABLE | |
.def _disable_greek_case_change | |
.def _enable_greek_case_change |