sets mt core complex

This commit is contained in:
2025-10-07 16:18:17 +02:00
parent 39ea27ee08
commit fc66bcbf48
5 changed files with 14 additions and 5 deletions

9
.vscode/launch.json vendored
View File

@@ -30,6 +30,15 @@
"arguments": "--isa 'rv32gc|msu_vp' -v INFO --disass -f fw/hello-world/hello.elf -g 10000",
"openGdbConsole": true
},
{
"type": "gdb",
"request": "launch",
"name": "32bit VP",
"cwd": "${workspaceRoot}",
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
"arguments": "--isa 'rv32gc_msu' -v INFO --disass -f fw/hello-world/hello.elf",
"initCommands": ["info break"]
},
{
"type": "gdb",
"request": "launch",

2
scc

Submodule scc updated: badc373aae...658e19539a

View File

@@ -20,7 +20,7 @@
#include <sysc/communication/sc_clock.h>
#include <sysc/communication/sc_signal.h>
#include <sysc/communication/sc_signal_ports.h>
#include <sysc/core_complex.h>
#include <sysc/core_complex_mt.h>
#include <sysc/kernel/sc_module.h>
#include <sysc/kernel/sc_time.h>
#include <sysc/utils/sc_vector.h>
@@ -48,7 +48,7 @@ public:
system(sc_core::sc_module_name nm);
private:
sysc::riscv::core_complex<scc::LT, tlm::scc::quantumkeeper_mt> core_complex{"core_complex"};
sysc::riscv::core_complex_mt<> core_complex{"core_complex"};
scc::router<> ahb_router, apbBridge;
vpvper::minres::gpio_tl gpio0{"gpio0"};
vpvper::minres::uart_tl uart0{"uart0"};