mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-23 21:45:00 +03:00
902dc0b829
* 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 <alejandro.asenjo88@gmail.com>
43 lines
1007 B
C
43 lines
1007 B
C
/**************************************************************************
|
|
* *
|
|
* 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;
|