diff options
author | aurel32 <aurel32> | 2008-12-15 07:03:06 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-15 07:03:06 +0000 |
commit | b34913267a02bde6607a707c32738baac5875355 (patch) | |
tree | cbc9b5748d9a33976df2edd64699b514a765cddf | |
parent | d6f3846b4880ceaba9cf9bc3a93981ae880bfc41 (diff) |
target-ppc: add signed fields to ppc_avr_t.
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r-- | qemu/target-ppc/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qemu/target-ppc/cpu.h b/qemu/target-ppc/cpu.h index de53675a..973f50aa 100644 --- a/qemu/target-ppc/cpu.h +++ b/qemu/target-ppc/cpu.h @@ -311,6 +311,9 @@ union ppc_avr_t { uint8_t u8[16]; uint16_t u16[8]; uint32_t u32[4]; + int8_t s8[16]; + int16_t s16[8]; + int32_t s32[4]; uint64_t u64[2]; }; |