PS2SDK
PS2 Homebrew Libraries
Toggle main menu visibility
Main Page
Related Pages
Topics
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
c
d
e
f
g
i
l
m
n
p
q
r
s
t
u
v
Variables
_
c
d
f
g
i
k
m
n
p
q
r
s
t
u
v
w
Typedefs
a
d
h
i
l
m
n
p
r
s
t
w
Enumerations
_
a
c
d
g
i
l
m
n
o
p
s
t
v
Enumerator
c
d
e
g
i
n
p
s
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
w
z
▼
PS2SDK
PS2SDK - PS2DEV Open Source Project
PS2SDK - KERNEL LIBRARY
remote
►
Topics
►
Data Structures
▼
Files
▼
File List
►
common
►
ee
▼
iop
►
arcade
►
cdvd
►
debug
►
deckard
►
dev9
►
dvrp
►
fs
►
hdd
►
iLink
►
kernel
►
memorycard
►
network
►
security
►
sio
►
sound
►
startup
▼
system
►
alloc
►
boardinf
►
dmacman
►
eeconf
►
eesync
►
excepman
►
heaplib
►
igreeting
►
intrman
►
ioman
►
iomanx
►
iopmgr
►
loadcore
►
loadfile
►
modload
►
mtapman
►
padman
►
reboot
►
rmman
►
sbusintr
►
sifcmd
►
sifinit
►
sifman
►
siftoo
►
sio2man
►
ssbusc
►
stdio
▼
sysclib
►
include
▼
src
►
embeddedartistry_libc
►
eyalroz_printf
►
musl
►
newlib
►
nonstd
►
size_optimized
_start.c
irx_imports.h
►
sysmem
►
threadman
►
timrman
►
udnl
►
vblank
►
tcpip
►
usb
►
tools
►
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
_start.c
1
/*
2
# _____ ___ ____ ___ ____
3
# ____| | ____| | | |____|
4
# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5
#-----------------------------------------------------------------------
6
# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7
# Licenced under Academic Free License version 2.0
8
# Review ps2sdk README & LICENSE files for further details.
9
*/
10
11
#include "irx_imports.h"
12
13
#define MODNAME "System_C_lib"
14
IRX_ID(MODNAME, 1, 1);
15
16
extern
struct
irx_export_table
_exp_sysclib;
17
extern
struct
irx_export_table
_exp_stdio;
18
19
int
_start(
int
argc,
char
*argv[]) {
20
(void)argc;
21
(void)argv;
22
23
if
(RegisterLibraryEntries(&_exp_sysclib) != 0)
24
return
MODULE_NO_RESIDENT_END;
25
if
(RegisterLibraryEntries(&_exp_stdio) != 0)
26
return
MODULE_NO_RESIDENT_END;
27
28
return
MODULE_RESIDENT_END;
29
}
irx_export_table
Definition
irx.h:90
iop
system
sysclib
src
_start.c
Generated on Sun Mar 30 2025 21:53:13 for PS2SDK by
1.12.0