Some cleanups to the types of vars.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@689 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2009-03-22 17:44:29 +00:00
parent cf99da06b8
commit c324adfff2
6 changed files with 29 additions and 30 deletions

View File

@@ -32,9 +32,10 @@
// Déclaration des types de base /////////////////////////////////////////////
typedef uint8_t byte;
typedef uint16_t word;
typedef uint32_t dword;
#define byte uint8_t
#define word uint16_t
#define dword uint32_t
#define qword uint64_t
typedef void (* fonction_action) (void);
typedef void (* fonction_afficheur) (word,word,byte);