3fae969b5b
git-svn-id: svn://svn.cc65.org/cc65/trunk@1487 b7a2c559-68d2-44c3-8de9-860c34a00d81
17 lines
383 B
ArmAsm
17 lines
383 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 05.11.2002
|
|
;
|
|
; void randomize (void);
|
|
; /* Initialize the random number generator */
|
|
;
|
|
|
|
.export _randomize
|
|
.import _srand
|
|
|
|
.include "plus4.inc"
|
|
|
|
_randomize:
|
|
ldx TED_VLINELO ; Use TED rasterline as high byte
|
|
lda TIME ; Use 60HZ clock as low byte
|
|
jmp _srand ; Initialize generator
|
|
|