Re: [PATCH v39 05/22] target/avr: Add instruction translation - Arithmetic and Logic Instructions

2019-12-22 Thread Aleksandar Markovic
On Wednesday, December 18, 2019, Michael Rolnik wrote: > This includes: > - ADD, ADC, ADIW > - SBIW, SUB, SUBI, SBC, SBCI > - AND, ANDI > - OR, ORI, EOR > - COM, NEG > - INC, DEC > - MUL, MULS, MULSU > - FMUL, FMULS, FMULSU > - DES > > > ... + > +/* > + * Performs the logical AND between the

[PATCH v39 05/22] target/avr: Add instruction translation - Arithmetic and Logic Instructions

2019-12-18 Thread Michael Rolnik
This includes: - ADD, ADC, ADIW - SBIW, SUB, SUBI, SBC, SBCI - AND, ANDI - OR, ORI, EOR - COM, NEG - INC, DEC - MUL, MULS, MULSU - FMUL, FMULS, FMULSU - DES Signed-off-by: Michael Rolnik Tested-by: Philippe Mathieu-Daudé --- target/avr/translate.c | 714