]> git.sur5r.net Git - cc65/blobdiff - libsrc/c64/randomize.s
Merge pull request #431 from polluks/patch-2
[cc65] / libsrc / c64 / randomize.s
index c46764b60cf59e9c58ea4a530aaf16f0ff992d31..d74bae91eea67437f19f23a2ef3dc577f7da1f54 100644 (file)
@@ -1,17 +1,18 @@
 ;
-; Ullrich von Bassewitz, 05.11.2002
+; 2002-11-05, Ullrich von Bassewitz
+; 2015-09-11, Greg King
 ;
-; void randomize (void);
+; void _randomize (void);
 ; /* Initialize the random number generator */
 ;
 
-       .export         _randomize
-       .import         _srand
+        .export         __randomize
+        .import         _srand
 
-       .include        "c64.inc"
+        .include        "c64.inc"
 
-_randomize:
+__randomize:              
         ldx     VIC_HLINE       ; Use VIC rasterline as high byte
-        lda     TIME            ; Use 60HZ clock as low byte
+        lda     TIME+2          ; Use 60HZ clock as low byte
         jmp     _srand          ; Initialize generator