diff options
Diffstat (limited to 'hw/spitz.c')
-rw-r--r-- | hw/spitz.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/spitz.c b/hw/spitz.c index 68bba18e1e..764b694e17 100644 --- a/hw/spitz.c +++ b/hw/spitz.c @@ -12,7 +12,11 @@ #define spitz_printf(format, ...) \ fprintf(stderr, "%s: " format, __FUNCTION__, ##__VA_ARGS__) #undef REG_FMT +#if TARGET_PHYS_ADDR_BITS == 32 +#define REG_FMT "0x%02x" +#else #define REG_FMT "0x%02lx" +#endif /* Spitz Flash */ #define FLASH_BASE 0x0c000000 |