Merge pull request #4429 from wwylele/io-size

Memory: IO area is at most 4MB
This commit is contained in:
Weiyi Wang 2018-11-13 11:09:14 -05:00 committed by GitHub
commit b1f55c9cab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,7 +75,7 @@ struct PageTable {
enum : PAddr {
/// IO register area
IO_AREA_PADDR = 0x10100000,
IO_AREA_SIZE = 0x01000000, ///< IO area size (16MB)
IO_AREA_SIZE = 0x00400000, ///< IO area size (4MB)
IO_AREA_PADDR_END = IO_AREA_PADDR + IO_AREA_SIZE,
/// MPCore internal memory region