Apple2: don't define _allow_lowercase and uppercasemask on APPLE2ENH

This commit is contained in:
Colin Leroy-Mira
2025-05-31 13:27:52 +02:00
committed by Oliver Schmidt
parent 89daccaa43
commit d03529067a
2 changed files with 10 additions and 6 deletions

View File

@@ -4,8 +4,11 @@
; unsigned char __fastcall__ allow_lowercase (unsigned char onoff);
;
.ifndef __APPLE2ENH__
.export _allow_lowercase
.import uppercasemask, return0, return1
.import return0
.import uppercasemask, return1
_allow_lowercase:
tax
@@ -21,3 +24,5 @@ _allow_lowercase:
values: .byte $DF ; Force uppercase
.byte $FF ; Keep lowercase
.endif