adds clk connection of memories
This commit is contained in:
@ -85,7 +85,7 @@ int sc_main(int argc, char *argv[]) {
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
if (parser.get<std::string>("dump-config").size() > 0) {
|
||||
std::ofstream of{parser.get<std::string>("dump-config")};
|
||||
if (of.is_open()) cfg.dump_configuration(of);
|
||||
if (of.is_open()) cfg.dump_configuration(of, true);
|
||||
}
|
||||
cfg.configure();
|
||||
std::unique_ptr<scc::hierarchy_dumper> dumper;
|
||||
|
@ -52,6 +52,8 @@ system::system(sc_core::sc_module_name nm)
|
||||
clint.tlclk_i(tlclk_s);
|
||||
clint.lfclk_i(lfclk_s);
|
||||
core_complex.clk_i(tlclk_s);
|
||||
mem_qspi.clk_i(tlclk_s);
|
||||
mem_ram.clk_i(tlclk_s);
|
||||
|
||||
uart0.rst_i(rst_s);
|
||||
uart1.rst_i(rst_s);
|
||||
|
Reference in New Issue
Block a user