historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/openbios/utils/ofclient/ofclient.c
2024-01-16 11:20:27 -06:00

9 lines
125 B
C

#include "of1275.h"
int write(int fd, char *buf, int len);
int main(void)
{
write(1, "Hello world!\n", 13 );
return 0;
}