asc: Use 0x8000 offset for mbox regs

Not sure where 0x4000 came from?

Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
Hector Martin 2022-01-17 04:12:12 +09:00
parent a4c5b64655
commit 18ceb3b3ff

View file

@ -50,7 +50,7 @@ asc_dev_t *asc_init(const char *path)
asc->iop_node = adt_first_child_offset(adt, node);
asc->cpu_base = base;
asc->base = base + 0x4000;
asc->base = base + 0x8000;
return asc;
}