Merge pull request #380 from Xiretza/cpunone-all-io

Allow all memory regions to be used as IO with CPUNone
This commit is contained in:
enjoy-digital 2020-02-11 13:11:33 +01:00 committed by GitHub
commit 7c57a33ba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 ---------------------------------------------------------------------------------------------