Remove unused headers

This commit is contained in:
Màrius Montón 2022-10-06 17:22:47 +02:00
parent c58ac7f198
commit 61fbe8cecd
No known key found for this signature in database
GPG Key ID: FA199E7A752699F0
2 changed files with 2 additions and 14 deletions

View File

@ -7,16 +7,6 @@
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-License-Identifier: GPL-3.0-or-later
#include "BASE_ISA.h" #include "BASE_ISA.h"
#include "tlm.h"
#include "tlm_utils/simple_initiator_socket.h"
#include "memory.h"
#include "MemoryInterface.h"
#include "Instruction.h"
#include "C_extension.h"
#include "M_extension.h"
#include "A_extension.h"
#include "Registers.h"
namespace riscv_tlm { namespace riscv_tlm {

View File

@ -6,11 +6,10 @@
*/ */
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-License-Identifier: GPL-3.0-or-later
#include <cstdint>
#include "Timer.h" #include "Timer.h"
namespace riscv_tlm { namespace riscv_tlm::peripherals {
namespace peripherals {
SC_HAS_PROCESS(Timer); SC_HAS_PROCESS(Timer);
Timer::Timer(sc_core::sc_module_name const &name) : Timer::Timer(sc_core::sc_module_name const &name) :
@ -103,4 +102,3 @@ namespace peripherals {
trans.set_response_status(tlm::TLM_OK_RESPONSE); trans.set_response_status(tlm::TLM_OK_RESPONSE);
} }
} }
}