Fixed all warnings, some little bugs, and improved compatibility with >1GB RAM

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@54 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2008-07-21 12:47:32 +00:00
parent 750e68ed35
commit 272506e850
17 changed files with 1535 additions and 1584 deletions

View File

@@ -1,13 +1,14 @@
#ifndef _STRUCT_H_
#define _STRUCT_H_
#include <stdint.h>
#include "const.h"
// Déclaration des types de base /////////////////////////////////////////////
typedef unsigned char byte;
typedef unsigned short word;
typedef unsigned long dword;
typedef uint8_t byte;
typedef uint16_t word;
typedef uint32_t dword;
typedef void (* fonction_action) (void);
typedef void (* fonction_afficheur) (word,word,byte);