blob: 9d1f22b26f49fa2c41716dbd5b9e13b2e4a04fc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* SPDX-License-Identifier: MIT */
#ifndef __GXF_H__
#define __GXF_H__
#include "types.h"
#define GL_STACK_SIZE 0x10000
#ifndef __ASSEMBLER__
bool gxf_enabled(void);
bool in_gl12(void);
void gxf_init(void);
uint64_t gl1_call(void *func, uint64_t a, uint64_t b, uint64_t c, uint64_t d);
uint64_t gl2_call(void *func, uint64_t a, uint64_t b, uint64_t c, uint64_t d);
#endif
#endif
|