integration/soc: Improve mem_map overriding display.
This commit is contained in:
parent
5363d61859
commit
23b9d73354
|
@ -926,8 +926,8 @@ class SoC(Module):
|
|||
self.logger.info("CPU {} {} mapping from {} to {}.".format(
|
||||
colorer("overriding", color="cyan"),
|
||||
colorer(n),
|
||||
colorer(f"0x{self.mem_map[n]:x}"),
|
||||
colorer(f"0x{self.cpu.mem_map[n]:x}")))
|
||||
colorer(f"0x{self.mem_map[n]:08x}"),
|
||||
colorer(f"0x{self.cpu.mem_map[n]:08x}")))
|
||||
self.mem_map.update(self.cpu.mem_map)
|
||||
|
||||
# Add Bus Masters/CSR/IRQs.
|
||||
|
|
Loading…
Reference in New Issue