sim: Move the BaseTLB to src/arch/generic/

The TLB-related code is generally architecture dependent and should
live in the arch directory to signify that.

--HG--
rename : src/sim/BaseTLB.py => src/arch/generic/BaseTLB.py
rename : src/sim/tlb.cc => src/arch/generic/tlb.cc
rename : src/sim/tlb.hh => src/arch/generic/tlb.hh
This commit is contained in:
Andreas Sandberg
2015-02-11 10:23:27 -05:00
parent 9e6f803254
commit 550c318490
16 changed files with 21 additions and 19 deletions

View File

@@ -33,4 +33,9 @@ if env['TARGET_ISA'] == 'null':
Source('decode_cache.cc')
Source('mmapped_ipr.cc')
Source('tlb.cc')
SimObject('BaseTLB.py')
DebugFlag('TLB')
Source('pseudo_inst.cc')