From e301df7f56cea83a6cac7885ef7e41d103c33925 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Mon, 10 Feb 2020 19:56:36 +0100 Subject: [PATCH] Allow all memory regions to be used as IO with CPUNone --- litex/soc/cores/cpu/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/cpu/__init__.py b/litex/soc/cores/cpu/__init__.py index 1503dfff0..272007d0b 100644 --- a/litex/soc/cores/cpu/__init__.py +++ b/litex/soc/cores/cpu/__init__.py @@ -22,7 +22,7 @@ class CPU(Module): class CPUNone(CPU): data_width = 32 reset_address = 0x00000000 - io_regions = {0x00000000: 0xf0000000} # origin, length + io_regions = {0x00000000: 0x1_0000_0000} # origin, length # CPUS ---------------------------------------------------------------------------------------------