powerpc-ofw-boot/entry/ofw/time.c

21 lines
354 B
C
Raw Normal View History

2023-07-01 15:36:00 +00:00
#include <ofw.h>
extern void (*ofw)();
int32_t milliseconds(void)
{
struct
{
char* service;
int32_t n_args;
int32_t n_rets;
int32_t ret;
} ofw_arg;
SERVICE("milliseconds", 13, 0, 1);
ofw(&ofw_arg);
return ofw_arg.ret;
}