mirror of
https://github.com/nathanriggs/AppleIIAsm-Collection.git
synced 2024-12-03 03:52:16 +00:00
1b182844cc
- fixed a plethora of bugs - overhauled demo - integrated shared required library and macros - began early planning of floating-point routines and macros - created minified, no-comment versions of every routine
19 lines
276 B
Plaintext
19 lines
276 B
Plaintext
** RAND8
|
|
*
|
|
LDX #8
|
|
LDA RNDL+0
|
|
:A
|
|
ASL
|
|
ROL RNDL+1
|
|
BCC :B
|
|
EOR #$2D
|
|
:B
|
|
DEX
|
|
BNE :A
|
|
STA RNDL+0
|
|
STA RETURN
|
|
LDY #1
|
|
STY RETLEN
|
|
CMP #0
|
|
RTS
|