Allow all memory regions to be used as IO with CPUNone

This commit is contained in:
Xiretza 2020-02-10 19:56:36 +01:00
parent 16d1972bf8
commit e301df7f56
No known key found for this signature in database
GPG Key ID: E51A6C6A1EB378ED
1 changed files with 1 additions and 1 deletions

View File

@ -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 ---------------------------------------------------------------------------------------------