diff options
author | Andreas Färber | 2013-01-10 21:52:28 +0100 |
---|---|---|
committer | Andreas Färber | 2013-01-10 21:52:28 +0100 |
commit | 63e3555e80c31776285accbb4d0c14ae91c457dc (patch) | |
tree | 89907c82724d6519c8bbad7acc15c0198c6f902f /targphys.h | |
parent | prep: Use pc87312 device instead of collection of random ISA devices (diff) | |
parent | Merge remote-tracking branch 'kraxel/build.1' into staging (diff) | |
download | qemu-63e3555e80c31776285accbb4d0c14ae91c457dc.tar.gz qemu-63e3555e80c31776285accbb4d0c14ae91c457dc.tar.xz qemu-63e3555e80c31776285accbb4d0c14ae91c457dc.zip |
Merge branch 'master' of git://git.qemu.org/qemu into prep-up
Conflicts:
hw/Makefile.objs
hw/ppc_prep.c
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Diffstat (limited to 'targphys.h')
-rw-r--r-- | targphys.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/targphys.h b/targphys.h deleted file mode 100644 index bd4938fc02..0000000000 --- a/targphys.h +++ /dev/null @@ -1,37 +0,0 @@ -/* Define target_phys_addr_t if it exists. */ - -#ifndef TARGPHYS_H -#define TARGPHYS_H - -#ifdef TARGET_PHYS_ADDR_BITS -/* target_phys_addr_t is the type of a physical address (its size can - be different from 'target_ulong'). */ - -#if TARGET_PHYS_ADDR_BITS == 32 -typedef uint32_t target_phys_addr_t; -#define TARGET_PHYS_ADDR_MAX UINT32_MAX -#define TARGET_FMT_plx "%08x" -/* Format strings for printing target_phys_addr_t types. - * These are recommended over the less flexible TARGET_FMT_plx, - * which is retained for the benefit of existing code. - */ -#define TARGET_PRIdPHYS PRId32 -#define TARGET_PRIiPHYS PRIi32 -#define TARGET_PRIoPHYS PRIo32 -#define TARGET_PRIuPHYS PRIu32 -#define TARGET_PRIxPHYS PRIx32 -#define TARGET_PRIXPHYS PRIX32 -#elif TARGET_PHYS_ADDR_BITS == 64 -typedef uint64_t target_phys_addr_t; -#define TARGET_PHYS_ADDR_MAX UINT64_MAX -#define TARGET_FMT_plx "%016" PRIx64 -#define TARGET_PRIdPHYS PRId64 -#define TARGET_PRIiPHYS PRIi64 -#define TARGET_PRIoPHYS PRIo64 -#define TARGET_PRIuPHYS PRIu64 -#define TARGET_PRIxPHYS PRIx64 -#define TARGET_PRIXPHYS PRIX64 -#endif -#endif - -#endif |