diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-05-17 05:50:05 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-05-17 05:53:14 (GMT) |
commit | d9d887e226902905ef56d0ccf1107df50e5e4463 (patch) | |
tree | e0da243151116e93d8585fbc80f368431187df29 /src/arch | |
parent | 85e52ccd4c8aada6660d171e91c6c603f40606bb (diff) |
Define datatypes.h and move the remaining endianness.[ch] content into io.[ch].
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/vmpa.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/arch/vmpa.h b/src/arch/vmpa.h index 4f35ebe..fe98ed4 100644 --- a/src/arch/vmpa.h +++ b/src/arch/vmpa.h @@ -32,6 +32,7 @@ #include "archbase.h" #include "../common/cpp.h" +#include "../common/datatypes.h" #include "../common/packed.h" #include "../common/sqlite.h" @@ -48,8 +49,8 @@ /* Types pour respectivement une position physique et une adresse virtuelle */ -#define phys_t uint64_t -#define virt_t uint64_t +//#define phys_t uint64_t +//#define virt_t uint64_t /* Equivalents pour GLib */ #define G_TYPE_PHYS uint64_t |