You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
97 lines
2.6 KiB
C
97 lines
2.6 KiB
C
#ifndef _ULTRATYPES_H_
|
|
#define _ULTRATYPES_H_
|
|
|
|
|
|
/**************************************************************************
|
|
* *
|
|
* Copyright (C) 1995, 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. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
/*************************************************************************
|
|
*
|
|
* File: ultratypes.h
|
|
*
|
|
* This file contains various types used in Ultra64 interfaces.
|
|
*
|
|
* $Revision: 1.6 $
|
|
* $Date: 1997/12/17 04:02:06 $
|
|
* $Source: /exdisk2/cvs/N64OS/Master/cvsmdev2/PR/include/ultratypes.h,v $
|
|
*
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
* General data types for R4300
|
|
*/
|
|
|
|
#ifndef _LANGUAGE_ASSEMBLY
|
|
typedef signed char s8;
|
|
typedef unsigned char u8;
|
|
typedef signed short int s16;
|
|
typedef unsigned short int u16;
|
|
typedef signed int s32;
|
|
typedef unsigned int u32;
|
|
|
|
typedef float f32;
|
|
typedef double f64;
|
|
|
|
#ifdef TARGET_N64
|
|
typedef signed long long int s64;
|
|
typedef unsigned long long int u64;
|
|
typedef u32 size_t;
|
|
typedef s32 ssize_t;
|
|
typedef u32 uintptr_t;
|
|
typedef s32 intptr_t;
|
|
typedef s32 ptrdiff_t;
|
|
|
|
typedef s8 int8_t;
|
|
typedef u8 uint8_t;
|
|
typedef s16 int16_t;
|
|
typedef u16 uint16_t;
|
|
typedef s32 int32_t;
|
|
typedef u32 uint32_t;
|
|
typedef s64 int64_t;
|
|
typedef u64 uint64_t;
|
|
#else
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
typedef ptrdiff_t ssize_t;
|
|
typedef int64_t s64;
|
|
typedef uint64_t u64;
|
|
#endif
|
|
|
|
typedef volatile u8 vu8;
|
|
typedef volatile u16 vu16;
|
|
typedef volatile u32 vu32;
|
|
typedef volatile u64 vu64;
|
|
typedef volatile s8 vs8;
|
|
typedef volatile s16 vs16;
|
|
typedef volatile s32 vs32;
|
|
typedef volatile s64 vs64;
|
|
#endif // _LANGUAGE_ASSEMBLY
|
|
|
|
/*************************************************************************
|
|
* Common definitions
|
|
*/
|
|
#ifndef TRUE
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|
|
|
|
#ifndef NULL
|
|
#define NULL (void *)0
|
|
#endif
|
|
|
|
#endif /* _ULTRATYPES_H_ */
|