mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 22:30:12 +00:00
8 lines
118 B
C
8 lines
118 B
C
|
#include <rp6502.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
clock_t __fastcall__ clock (void)
|
||
|
{
|
||
|
return ria_call_long (RIA_OP_CLOCK);
|
||
|
}
|