mirror of
https://github.com/cc65/cc65.git
synced 2025-03-13 15:32:09 +00:00
added randomize
git-svn-id: svn://svn.cc65.org/cc65/trunk@1494 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b98a3bd537
commit
82696446fc
@ -50,6 +50,7 @@ OBJS = _scrsize.o \
|
|||||||
oserrlist.o \
|
oserrlist.o \
|
||||||
oserror.o \
|
oserror.o \
|
||||||
ostype.o \
|
ostype.o \
|
||||||
|
randomize.o \
|
||||||
read.o \
|
read.o \
|
||||||
readjoy.o \
|
readjoy.o \
|
||||||
remove.o \
|
remove.o \
|
||||||
|
17
libsrc/atari/randomize.s
Normal file
17
libsrc/atari/randomize.s
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
;
|
||||||
|
; Christian Groessler, 06.11.2002
|
||||||
|
;
|
||||||
|
; void _randomize (void);
|
||||||
|
; /* Initialize the random number generator */
|
||||||
|
;
|
||||||
|
|
||||||
|
.export __randomize
|
||||||
|
.import _srand
|
||||||
|
|
||||||
|
.include "atari.inc"
|
||||||
|
|
||||||
|
__randomize:
|
||||||
|
ldx VCOUNT ; Use vertical line counter as high byte
|
||||||
|
lda RTCLOK+2 ; Use clock as low byte
|
||||||
|
jmp _srand ; Initialize generator
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user