Re: [Qemu-devel] [PATCH v4 3/4] target-ppc: Implement bcdcfz. instruction

2016-11-07 Thread David Gibson
On Tue, Nov 01, 2016 at 01:24:47PM -0200, Jose Ricardo Ziviani wrote: > bcdcfz. converts from Zoned numeric format to BCD. Zoned format uses > a byte to represent a digit where the most significant nibble is 0x3 > or 0xf, depending on the preferred signal. > > Signed-off-by: Jose Ricardo Ziviani

[Qemu-devel] [PATCH v4 3/4] target-ppc: Implement bcdcfz. instruction

2016-11-01 Thread Jose Ricardo Ziviani
bcdcfz. converts from Zoned numeric format to BCD. Zoned format uses a byte to represent a digit where the most significant nibble is 0x3 or 0xf, depending on the preferred signal. Signed-off-by: Jose Ricardo Ziviani --- target-ppc/helper.h | 1 + target-ppc/int_helper.c