cleans include statements

This commit is contained in:
2025-07-14 22:28:53 +02:00
parent 66c3d84926
commit 129864caf9
4 changed files with 9 additions and 8 deletions

View File

@@ -7,6 +7,7 @@
#pragma once #pragma once
#include <systemc> #include <systemc>
namespace tgc_vp { namespace tgc_vp {
class rst_gen : public sc_core::sc_module { class rst_gen : public sc_core::sc_module {

View File

@@ -4,11 +4,11 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
#include "../vp/system.h" #include "system.h"
#include "minres/timer.h" #include <minres/timer.h>
#include "minres/uart.h" #include <minres/uart.h>
#include "scc/utilities.h" #include <scc/utilities.h>
namespace tgc_vp { namespace tgc_vp {
using namespace sc_core; using namespace sc_core;

View File

@@ -7,8 +7,8 @@
#ifndef _PLATFORM_H_ #ifndef _PLATFORM_H_
#define _PLATFORM_H_ #define _PLATFORM_H_
#include "minres/irq.h" #include <minres/irq.h>
#include "minres/timer.h" #include <minres/timer.h>
#include <cci_configuration> #include <cci_configuration>
#include <minres/aclint.h> #include <minres/aclint.h>
#include <minres/gpio.h> #include <minres/gpio.h>

View File

@@ -4,9 +4,9 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
#include "../vp/tb.h" #include "tb.h"
#include <sysc/kernel/sc_time.h> #include <sysc/kernel/sc_time.h>
namespace tgc_vp { namespace tgc_vp {
SC_HAS_PROCESS(tb); SC_HAS_PROCESS(tb);