next-cube: remove 0x14020 dummy value from next_mmio_read()
This is a dummy value for the SCSI CSR which appears to have no effect when removed. Eventually the reads/writes to this register will be directed towards the WIP implementations in next_scr_readfn() and next_scr_writefn(). Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Thomas Huth <huth@tuxfamily.org> Message-ID: <20241222130012.1013374-2-mark.cave-ayland@ilande.co.uk> Signed-off-by: Thomas Huth <huth@tuxfamily.org>
This commit is contained in:
parent
36a0d3748d
commit
347a9a975d
@ -286,10 +286,6 @@ static uint64_t next_mmio_read(void *opaque, hwaddr addr, unsigned size)
|
|||||||
size << 3);
|
size << 3);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 0x14020:
|
|
||||||
val = 0x7f;
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
val = 0;
|
val = 0;
|
||||||
DPRINTF("MMIO Read @ 0x%"HWADDR_PRIx" size %d\n", addr, size);
|
DPRINTF("MMIO Read @ 0x%"HWADDR_PRIx" size %d\n", addr, size);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user