Re: [Qemu-devel] [PATCH v2 3/4] m68k: Add NeXTcube machine

2019-07-03 Thread Philippe Mathieu-Daudé
On 7/3/19 7:00 PM, Thomas Huth wrote: > On 02/07/2019 19.43, Thomas Huth wrote: >> On 29/06/2019 14.26, Philippe Mathieu-Daudé wrote: >>> On 6/28/19 8:15 PM, Thomas Huth wrote: > [...] +static uint32_t mmio_readb(NeXTState *s, hwaddr addr) +{ +switch (addr) { +case 0xc00

Re: [Qemu-devel] [PATCH v2 3/4] m68k: Add NeXTcube machine

2019-07-03 Thread Thomas Huth
On 02/07/2019 19.43, Thomas Huth wrote: > On 29/06/2019 14.26, Philippe Mathieu-Daudé wrote: >> On 6/28/19 8:15 PM, Thomas Huth wrote: [...] >>> +static uint32_t mmio_readb(NeXTState *s, hwaddr addr) >>> +{ >>> +switch (addr) { >>> +case 0xc000: >>> +return (s->scr1 >> 24) & 0xFF; >

Re: [Qemu-devel] [PATCH v2 3/4] m68k: Add NeXTcube machine

2019-07-02 Thread Thomas Huth
On 29/06/2019 14.26, Philippe Mathieu-Daudé wrote: > On 6/28/19 8:15 PM, Thomas Huth wrote: >> It is still quite incomplete (no SCSI, no floppy emulation, no network, >> etc.), but the firmware already shows up the debug monitor prompt in the >> framebuffer display, so at least the very basics are

Re: [Qemu-devel] [PATCH v2 3/4] m68k: Add NeXTcube machine

2019-06-29 Thread Philippe Mathieu-Daudé
On 6/29/19 2:26 PM, Philippe Mathieu-Daudé wrote: > On 6/28/19 8:15 PM, Thomas Huth wrote: >> It is still quite incomplete (no SCSI, no floppy emulation, no network, >> etc.), but the firmware already shows up the debug monitor prompt in the >> framebuffer display, so at least the very basics are a

Re: [Qemu-devel] [PATCH v2 3/4] m68k: Add NeXTcube machine

2019-06-29 Thread Philippe Mathieu-Daudé
On 6/28/19 8:15 PM, Thomas Huth wrote: > It is still quite incomplete (no SCSI, no floppy emulation, no network, > etc.), but the firmware already shows up the debug monitor prompt in the > framebuffer display, so at least the very basics are already working. > > This code has been taken from Bryc