deprecated constructor

This commit is contained in:
mariusmonton 2021-02-21 20:53:39 +01:00
parent e65e90c371
commit bfb537e0d5
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
constexpr char nibble_to_hex[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
Debug::Debug(CPU *cpu, Memory* mem): sc_module(std::string("Debug")) {
Debug::Debug(CPU *cpu, Memory* mem): sc_module(sc_core::sc_module_name("Debug")) {
dbg_cpu = cpu;
dbg_mem = mem;