-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg * Fixed libultra compilation flags * Matched viblack * Matched virepeatline, visetmode, visetspecial and viswapbuf * Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread * Fixed bss bs * Matched even more libultra stuff * Matched even more * __osRdbSend * Decompiled most of the functions of libultra <3 * Matched last functions * Added a separation to libultra macros * Removed ARRLEN from controller.h * Fix libultra warnings --------- Co-authored-by: Alejandro Javier Asenjo Nitti <[email protected]>
- Loading branch information
Showing
138 changed files
with
10,087 additions
and
1,430 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
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,12 @@ | ||
#ifndef __ASSERT_H__ | ||
#define __ASSERT_H__ | ||
|
||
#ifdef NDEBUG | ||
#undef assert | ||
#define assert(EX) ((void)0) | ||
#else | ||
extern void __assert(const char *, const char *, int); | ||
#define assert(EX) ((EX)?((void)0):__assert("EX", __FILE__, __LINE__)) | ||
#endif /* NDEBUG */ | ||
|
||
#endif /* !__ASSERT_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
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,42 @@ | ||
/************************************************************************** | ||
* * | ||
* Copyright (C) 1994, Silicon Graphics, Inc. * | ||
* * | ||
* These coded instructions, statements, and computer programs contain * | ||
* unpublished proprietary information of Silicon Graphics, Inc., and * | ||
* are protected by Federal copyright law. They may not be disclosed * | ||
* to third parties or copied or duplicated in any form, in whole or * | ||
* in part, without the prior written consent of Silicon Graphics, Inc. * | ||
* * | ||
**************************************************************************/ | ||
|
||
#include "PR/mbi.h" | ||
#include "PR/gu.h" | ||
|
||
typedef union | ||
{ | ||
struct | ||
{ | ||
unsigned int hi; | ||
unsigned int lo; | ||
} word; | ||
|
||
double d; | ||
} du; | ||
|
||
typedef union | ||
{ | ||
unsigned int i; | ||
float f; | ||
} fu; | ||
|
||
#ifndef __GL_GL_H__ | ||
|
||
typedef float Matrix[4][4]; | ||
|
||
#endif | ||
|
||
#define ROUND(d) (int)(((d) >= 0.0) ? ((d) + 0.5) : ((d) - 0.5)) | ||
#define ABS(d) ((d) > 0) ? (d) : -(d) | ||
|
||
extern float __libm_qnan_f; |
Oops, something went wrong.