mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
8 lines
109 B
C
8 lines
109 B
C
#include <rp6502.h>
|
|
#include <stdlib.h>
|
|
|
|
void _randomize (void)
|
|
{
|
|
srand (ria_call_int (RIA_OP_LRAND));
|
|
}
|