-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b2978d
commit 9af1bd7
Showing
3 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,9 @@ SCUS_971.98 | |
SCUS_*.* | ||
*.elf | ||
|
||
prodg_sce* | ||
tools/cc/* | ||
prodg* | ||
tools/cc/ | ||
usr/ | ||
sce/ | ||
|
||
html/ | ||
functions.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* @file gs.h | ||
* | ||
* @brief Graphics Synthesizer. | ||
*/ | ||
#ifndef GS_H | ||
#define GS_H | ||
|
||
#include "common.h" | ||
|
||
struct sceGsTex0 | ||
{ | ||
undefined4 unk_0x0; | ||
undefined4 unk_0x4; | ||
}; | ||
|
||
struct sceGsTex2 | ||
{ | ||
undefined4 unk_0x0; | ||
undefined4 unk_0x4; | ||
}; | ||
|
||
#endif // GS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "common.h" | ||
|
||
INCLUDE_ASM(const s32, "sce/rand", srand); | ||
|
||
INCLUDE_ASM(const s32, "sce/rand", rand); |