bond/x86/src/c/type.h
HyperAssembler c886d569cd Complete refactor of craps I wrote. Especially when constructing GDT / Page table.
Need:
1. Map page depending on current memory
2. ELF loader
2015-02-03 23:55:38 -08:00

11 lines
286 B
C

#ifndef _TYPE_H_
#define _TYPE_H_
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
typedef unsigned long long uint64_t;
typedef unsigned char uint8_t;
typedef signed int int32_t;
typedef signed short int16_t;
typedef signed long long int64_t;
typedef char int8_t;
#endif