]> git.proxmox.com Git - mirror_qemu.git/blob - include/exec/hwaddr.h
qapi: New qobject_input_visitor_new_str() for convenience
[mirror_qemu.git] / include / exec / hwaddr.h
1 /* Define hwaddr if it exists. */
2
3 #ifndef HWADDR_H
4 #define HWADDR_H
5
6
7 #define HWADDR_BITS 64
8 /* hwaddr is the type of a physical address (its size can
9 be different from 'target_ulong'). */
10
11 typedef uint64_t hwaddr;
12 #define HWADDR_MAX UINT64_MAX
13 #define TARGET_FMT_plx "%016" PRIx64
14 #define HWADDR_PRId PRId64
15 #define HWADDR_PRIi PRIi64
16 #define HWADDR_PRIo PRIo64
17 #define HWADDR_PRIu PRIu64
18 #define HWADDR_PRIx PRIx64
19 #define HWADDR_PRIX PRIX64
20
21 #endif