OpenCores
URL https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk

Subversion Repositories riscv_vhdl

[/] [riscv_vhdl/] [trunk/] [debugger/] [src/] [common/] [coreservices/] [iclock.h] - Rev 2

Go to most recent revision | Compare with Previous | Blame | View Log

/**
 * @file
 * @copyright  Copyright 2016 GNSS Sensor Ltd. All right reserved.
 * @author     Sergey Khabarov - sergeykhbr@gmail.com
 * @brief      Clock interface.
 */
 
#ifndef __DEBUGGER_PLUGIN_ICLOCK_H__
#define __DEBUGGER_PLUGIN_ICLOCK_H__
 
#include "iface.h"
#include <inttypes.h>
#include "iclklistener.h"
#include "attribute.h"
 
namespace debugger {
 
static const char *const IFACE_CLOCK = "IClock";
 
class IClock : public IFace {
public:
    IClock() : IFace(IFACE_CLOCK) {}
 
    virtual uint64_t getStepCounter() =0;
 
    /** Executed instruction counter.
     *
     * One executed instruction = 1 step for functional simulation.
     * And it can be more than 1 for precise SystemC model if enabled
     * GENERATE_CORE_TRACE.
     */
    virtual void registerStepCallback(IClockListener *cb, uint64_t t) =0;
};
 
}  // namespace debugger
 
#endif  // __DEBUGGER_PLUGIN_ICLOCK_H__
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.