]> git.proxmox.com Git - mirror_qemu.git/blame - include/exec/hwaddr.h
qemu-common: push cpu.h inclusion out of qemu-common.h
[mirror_qemu.git] / include / exec / hwaddr.h
CommitLineData
a8170e5e
AK
1/* Define hwaddr if it exists. */
2
3#ifndef HWADDR_H
4#define HWADDR_H
5
33c11879
PB
6#include <inttypes.h>
7
a8170e5e
AK
8#define HWADDR_BITS 64
9/* hwaddr is the type of a physical address (its size can
10 be different from 'target_ulong'). */
11
12typedef uint64_t hwaddr;
13#define HWADDR_MAX UINT64_MAX
14#define TARGET_FMT_plx "%016" PRIx64
15#define HWADDR_PRId PRId64
16#define HWADDR_PRIi PRIi64
17#define HWADDR_PRIo PRIo64
18#define HWADDR_PRIu PRIu64
19#define HWADDR_PRIx PRIx64
20#define HWADDR_PRIX PRIX64
21
22#endif