mirror of
https://github.com/ps5-linux/ps5-linux-loader.git
synced 2026-07-15 21:42:27 +00:00
13 lines
349 B
C
13 lines
349 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
#include "shellcode_kernel_args.h"
|
|
|
|
void (*printf)(const char *format, ...);
|
|
void (*smp_rendezvous)(void (*setup_func)(void *), void (*action_func)(void *),
|
|
void (*teardown_func)(void *), void *arg);
|
|
void (*smp_no_rendevous_barrier)(void *);
|
|
|
|
uint32_t main(uint64_t add1, uint64_t add2);
|
|
|
|
#endif
|