示例#1
0
 public ArchitectureConfig(string title, ProcessorConfig processor, CacheConfig l2Cache, MainMemoryConfig mainMemory)
 {
     this.Title = title;
     this.Processor = processor;
     this.L2Cache = l2Cache;
     this.MainMemory = mainMemory;
 }
示例#2
0
 public MemoryController(ICycleProvider cycleProvider, MainMemoryConfig config, MainMemoryStat stat)
     : base(cycleProvider, "mem")
 {
     this.Config = config;
     this.Stat = stat;
 }