1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-05 17:25:17 +00:00
Files
cc65/libsrc/nes/randomize.s
2022-08-29 20:52:35 +02:00

19 lines
369 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-05-02
;
; void __randomize (void);
; /* Initialize the random number generator */
;
.export ___randomize
.import _srand
.include "nes.inc"
___randomize:
ldx tickcount ; Use tick clock
lda tickcount+1
jmp _srand ; Initialize generator