mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +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 \
|
||||
oserror.o \
|
||||
ostype.o \
|
||||
randomize.o \
|
||||
read.o \
|
||||
readjoy.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…
Reference in New Issue
Block a user