Skip to content

Commit

Permalink
Fix typo in part5 - createCacheHierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
fshahinfar1 authored and powerjg committed Jul 12, 2019
1 parent 1945e11 commit cf0c996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions part5/fs_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ You can simply import that file to use those caches.
self.cpu.dcache.connectBus(self.membus)
# Connect the CPU TLBs directly to the mem.
self.cpu.itb.walker.port = self.mmubus.slave
self.cpu.dtb.walker.port = self.mmubus.slave
self.cpu.itb.walker.port = self.membus.slave
self.cpu.dtb.walker.port = self.membus.slave
After creating the cache hierarchy, next we need to create the memory controllers.
In this configuration file, it is very simple.
Expand Down

0 comments on commit cf0c996

Please sign in to comment.