未验证 提交 b0640430 编写于 作者: W William Wang 提交者: GitHub

Merge pull request #436 from RISCVERS/fix-flash-addr

MMIO: change flash address to 0x10000000
......@@ -9,13 +9,13 @@ import freechips.rocketchip.tilelink.{TLErrorEvaluator, TLMasterParameters, TLXb
class SimMMIO()(implicit p: config.Parameters) extends LazyModule {
val flash = LazyModule(new AXI4Flash(Seq(AddressSet(0x10000000L, 0xfffffff))))
val uart = LazyModule(new AXI4UART(Seq(AddressSet(0x40600000L, 0xf))))
val vga = LazyModule(new AXI4VGA(
sim = false,
fbAddress = Seq(AddressSet(0x50000000L, 0x3fffffL)),
ctrlAddress = Seq(AddressSet(0x40001000L, 0x7L))
))
val flash = LazyModule(new AXI4Flash(Seq(AddressSet(0x40000000L, 0xfff))))
val sd = LazyModule(new AXI4DummySD(Seq(AddressSet(0x40002000L, 0xfff))))
val axiBus = AXI4Xbar()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册