mirror of
https://github.com/nathanriggs/AppleIIAsm-Collection.git
synced 2024-11-23 15:32:08 +00:00
875dd80998
- fixed a bunch of bugs - separated common and stdio libraries - commenting upgrades - created min versions of each library
30 lines
405 B
Plaintext
30 lines
405 B
Plaintext
*
|
|
DELAYMS
|
|
*
|
|
MSCNT EQU $0CA
|
|
:DELAY
|
|
CPY #0
|
|
BEQ :EXIT
|
|
NOP
|
|
CPY #1
|
|
BNE :DELAYA
|
|
JMP :LAST1
|
|
:DELAYA
|
|
DEY
|
|
:DELAY0
|
|
LDX #MSCNT
|
|
:DELAY1
|
|
DEX
|
|
BNE :DELAY1
|
|
NOP
|
|
NOP
|
|
DEY
|
|
BNE :DELAY0
|
|
:LAST1
|
|
LDX #MSCNT-3
|
|
:DELAY2
|
|
DEX
|
|
BNE :DELAY2
|
|
:EXIT
|
|
RTS
|