URL
https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk
Subversion Repositories riscv_vhdl
[/] [riscv_vhdl/] [trunk/] [debugger/] [src/] [socsim_plugin/] [boardsim.cpp] - Rev 4
Compare with Previous | Blame | View Log
/** * @file * @copyright Copyright 2016 GNSS Sensor Ltd. All right reserved. * @author Sergey Khabarov - sergeykhbr@gmail.com * @brief Simulator of the FPGA board with Ethernet UDP/EDCL interface. */ #include "api_core.h" #include "boardsim.h" namespace debugger { BoardSim::BoardSim(const char *name) : IService(name) { registerInterface(static_cast<IBoardSim *>(this)); } void BoardSim::postinitService() { } } // namespace debugger