1. configs/common/Options.py 파일에 l3 cache option 추가 parser.add_argument("--l3cache", action="store_true") 2. configs/common/Caches.py 파일에 l3 cache class 추가 class L3Cache(Cache): assoc = 16 tag_latency = 32 data_latency = 32 response_latency = 32 mshrs = 32 tgts_per_mshr = 24 write_buffers = 16 3. src/mem/XBar.py 파일에 L3XBar class 추가 class L3XBar(CoherentXBar): width = 32 frontend_latency = 1 forw..