Re: [PATCH] docs/about/deprecated: Remove empty 'related binaries' section

2021-11-08 Thread Joaquin de Andres
lies on the nanoMIPS ISA, which is deprecated (the ISA has never been upstreamed to a compiler toolchain). Therefore this CPU is also deprecated. -Related binaries - - Backwards compatibility --- Reviewed-by: Joaquin de Andres

Re: [PATCH] tests/avocado: Remove p7zip binary availability check

2021-11-08 Thread Joaquin de Andres
AVAILABLE = True -try: -find_command('7z') -except CmdNotFoundError: -P7ZIP_AVAILABLE = False """ Round up to next power of 2 Reviewed-by: Joaquin de Andres

Re: [PATCH] hw/avr/atmega.c: use the avr51 cpu for atmega1280

2021-05-05 Thread Joaquin de Andres
On 5/5/21 3:33 PM, Fred Konrad wrote: > > > Le 4/30/21 à 12:27 PM, Joaquin de Andres a écrit : >> On 4/28/21 9:17 PM, Philippe Mathieu-Daudé wrote: >>> Cc'ing Joaquín. >>> >>> On 4/28/21 9:15 PM, Frederic Konrad wrote: >>>> According to th

Re: [PATCH] hw/avr/atmega.c: use the avr51 cpu for atmega1280

2021-04-30 Thread Joaquin de Andres
On 4/28/21 9:17 PM, Philippe Mathieu-Daudé wrote: > Cc'ing Joaquín. > > On 4/28/21 9:15 PM, Frederic Konrad wrote: >> According to the as documentation: >> (https://sourceware.org/binutils/docs-2.36/as/AVR-Options.html) >> >> "Instruction set avr51 is for the enhanced AVR core with exactly 128K >>

[PATCH-for-5.1 v2] hw/core/register: Add register_init_block8 helper.

2020-04-02 Thread Joaquin de Andres
There was no support for 8 bits block registers. Changed register_init_block32 to be generic and static, adding register size in bits as parameter. Created one helper for each size. Signed-off-by: Joaquin de Andres --- This patch is small and I could see that there is not much movement with the

Wiki user request

2020-02-27 Thread Joaquin de Andres
Hi! I wonder if I can get write access to the wiki page. I'm working with Philippe Mathieu-Daudé in the GSoC Arduino Visualization project ([1]) and I need to modify and add pages. Thanks! --joa [1] https://wiki.qemu.org/Internships/ProjectIdeas/ArduinoVisualisation signature.asc Description:

Re: [GSoC/Outreachy] Arduino complete setup visualization and emulation

2020-02-21 Thread Joaquin de Andres
On 2/21/20 12:14 PM, Philippe Mathieu-Daudé wrote: > On 2/21/20 11:56 AM, Stefan Hajnoczi wrote: >> On Tue, Feb 11, 2020 at 10:51:19AM +, Stefan Hajnoczi wrote: >>> On Mon, Feb 10, 2020 at 08:58:28PM +0100, Philippe Mathieu-Daudé wrote: ... > [*] Test with the preset arduino examples (### TODO

Re: [PATCH rc4 06/29] target/avr: Add defintions of AVR core types

2020-02-02 Thread Joaquin de Andres
On 1/31/20 1:02 AM, Aleksandar Markovic wrote: From: Michael Rolnik AVR core types are: - avr1 - avr2 - avr25 - avr3 - avr31 - avr35 - avr4 - avr5 - avr51 - avr6 - avrtiny - xmega2 - xmega3 - xmega4 - xmega5 - xmega6 - xmega7 Each core type c

Re: [PATCH rc2 01/25] target/avr: Add outward facing interfaces and core CPU logic

2020-01-27 Thread Joaquin de Andres
On 1/24/20 1:51 AM, Philippe Mathieu-Daudé wrote: > From: Michael Rolnik > > This includes: > - CPU data structures > - object model classes and functions > - migration functions > - GDB hooks > > Co-developed-by: Michael Rolnik > Co-developed-by: Sarah Harris > Signed-off-by: Michael Rolnik

Re: [PATCH rc2 01/25] target/avr: Add outward facing interfaces and core CPU logic

2020-01-27 Thread Joaquin de Andres
On 1/27/20 10:48 AM, Michael Rolnik wrote: > Not used. it's there just for clarity. to follow the pattern like PC > > AVR_FEATURE_1_BYTE_PC, > AVR_FEATURE_2_BYTE_PC, > AVR_FEATURE_3_BYTE_PC, > > AVR_FEATURE_1_BYTE_SP, > AVR_FEATURE_2_BYTE_SP, > > To show that there is no

Re: [PATCH rc2 01/25] target/avr: Add outward facing interfaces and core CPU logic

2020-01-27 Thread Joaquin de Andres
> > On Sun, Jan 26, 2020 at 2:15 PM Joaquin de Andres > wrote: > >> Hi! In this mail I only checked the general code and one of the listed >> features for the different types of avr. I will check the rest in >> following emails. >> >> On 1/24/20 1:51

Re: [PATCH rc2 01/25] target/avr: Add outward facing interfaces and core CPU logic

2020-01-26 Thread Joaquin de Andres
Hi! In this mail I only checked the general code and one of the listed features for the different types of avr. I will check the rest in following emails. On 1/24/20 1:51 AM, Philippe Mathieu-Daudé wrote: > From: Michael Rolnik > > This includes: > - CPU data structures > - object model classes

Re: [PATCH rc2 21/25] hw/avr: Add some Arduino boards

2020-01-25 Thread Joaquin de Andres
cpus; > +mc->max_cpus = mc->default_cpus; > +mc->no_floppy = 1; > +mc->no_cdrom = 1; > +mc->no_parallel = 1; > +} > + > +static void arduino_duemilanove_class_init(ObjectClass *oc, void *data) > +{ > +MachineClass *mc = MACHINE_CLASS(oc); > +ArduinoMac