Example #1
0
 public DebugDialog(Cpu cpu, List <MemoryModule> memModules, MemoryConfig memCfg,
                    BiosMemController biosMemCtrl, AsusWMI asusWmi)
 {
     InitializeComponent();
     modules = memModules;
     SI      = cpu.systemInfo;
     MEMCFG  = memCfg;
     PT      = cpu.powerTable;
     BMC     = biosMemCtrl;
     CPU     = cpu;
     AWMI    = asusWmi;
 }
Example #2
0
 public DebugDialog(uint dramBaseAddr, List <MemoryModule> memModules,
                    MemoryConfig memCfg, SystemInfo systemInfo,
                    BiosMemController biosMemCtrl, PowerTable powerTable,
                    Ops ops)
 {
     InitializeComponent();
     baseAddress = dramBaseAddr;
     modules     = memModules;
     SI          = systemInfo;
     MEMCFG      = memCfg;
     PT          = powerTable;
     BMC         = biosMemCtrl;
     OPS         = ops;
 }