1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-28 06:30:16 +00:00
cc65/libsrc/rp6502/clock.c
2024-01-10 21:24:55 -08:00

8 lines
118 B
C

#include <rp6502.h>
#include <time.h>
clock_t __fastcall__ clock (void)
{
return ria_call_long (RIA_OP_CLOCK);
}