2002-11-05 10:48:20 +00:00
|
|
|
;
|
2015-09-11 14:03:07 +00:00
|
|
|
; 2002-11-05, Ullrich von Bassewitz
|
|
|
|
; 2015-09-11, Greg King
|
2002-11-05 10:48:20 +00:00
|
|
|
;
|
2002-11-05 20:17:38 +00:00
|
|
|
; void _randomize (void);
|
2002-11-05 10:48:20 +00:00
|
|
|
; /* Initialize the random number generator */
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export __randomize
|
|
|
|
.import _srand
|
2002-11-05 10:48:20 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "c64.inc"
|
2002-11-05 10:48:20 +00:00
|
|
|
|
2002-11-05 20:17:38 +00:00
|
|
|
__randomize:
|
2002-11-05 10:48:20 +00:00
|
|
|
ldx VIC_HLINE ; Use VIC rasterline as high byte
|
2015-09-11 14:03:07 +00:00
|
|
|
lda TIME+2 ; Use 60HZ clock as low byte
|
2002-11-05 10:48:20 +00:00
|
|
|
jmp _srand ; Initialize generator
|
|
|
|
|