ultimecia

A ps1 emulator in c
Log | Files | Refs

types.h (233B)


      1 #pragma once
      2 
      3 #include <stdint.h>
      4 
      5 typedef uint8_t     u8;
      6 typedef uint16_t    u16;
      7 typedef uint32_t    u32;
      8 typedef uint64_t    u64;
      9 typedef int8_t      i8;
     10 typedef int16_t     i16;
     11 typedef int32_t     i32;
     12 typedef int64_t     i64;