1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

added randomize

git-svn-id: svn://svn.cc65.org/cc65/trunk@1494 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2002-11-06 22:21:15 +00:00
parent b98a3bd537
commit 82696446fc
2 changed files with 18 additions and 0 deletions

View File

@ -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
View 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