2002-11-05 10:48:20 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 05.11.2002
|
|
|
|
;
|
2002-11-05 20:17:38 +00:00
|
|
|
; void _randomize (void);
|
2002-11-05 10:48:20 +00:00
|
|
|
; /* Initialize the random number generator */
|
|
|
|
;
|
|
|
|
|
2002-11-05 20:17:38 +00:00
|
|
|
.export __randomize
|
2002-11-05 10:48:20 +00:00
|
|
|
.import _srand
|
|
|
|
|
|
|
|
.include "c64.inc"
|
|
|
|
|
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
|
|
|
|
lda TIME ; Use 60HZ clock as low byte
|
|
|
|
jmp _srand ; Initialize generator
|
|
|
|
|