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

Subversion Repositories riscv_vhdl

[/] [riscv_vhdl/] [trunk/] [debugger/] [src/] [common/] [coreservices/] [iwire.h] - Diff between revs 2 and 4

Show entire file | Details | Blame | View Log

Rev 2 Rev 4
Line 1... Line 1...
/**
/**
 * @file
 * @file
 * @copyright  Copyright 2016 GNSS Sensor Ltd. All right reserved.
 * @copyright  Copyright 2017 GNSS Sensor Ltd. All right reserved.
 * @author     Sergey Khabarov - sergeykhbr@gmail.com
 * @author     Sergey Khabarov - sergeykhbr@gmail.com
 * @brief      Single wire interface.
 * @brief      Single wire interface.
 */
 */
 
 
#ifndef __DEBUGGER_PLUGIN_IWIRE_H__
#ifndef __DEBUGGER_COMMON_CORESERVICES_IWIRE_H__
#define __DEBUGGER_PLUGIN_IWIRE_H__
#define __DEBUGGER_COMMON_CORESERVICES_IWIRE_H__
 
 
#include "iface.h"
 
#include <inttypes.h>
#include <inttypes.h>
 
#include <iface.h>
 
#include <attribute.h>
 
#include <iservice.h>
 
 
namespace debugger {
namespace debugger {
 
 
static const char *const IFACE_WIRE = "IWire";
static const char *const IFACE_WIRE = "IWire";
 
 
class IWire : public IFace {
class IWire : public IFace {
public:
public:
    IWire() : IFace(IFACE_WIRE) {}
    IWire() : IFace(IFACE_WIRE) {}
 
 
    virtual void raiseLine(int idx) =0;
    virtual void raiseLine() = 0;
    virtual void lowerLine() =0;
    virtual void lowerLine() =0;
    virtual void setLevel(bool level) =0;
    virtual void setLevel(bool level) =0;
 
    virtual bool getLevel() = 0;
 
};
 
 
 
class GenericWireAttribute : public AttributeType,
 
                             public IWire {
 
 public:
 
    GenericWireAttribute(IService *parent, const char *name)
 
        : parent_(parent) {
 
        parent->registerAttribute(name, static_cast<IAttribute *>(this));
 
        parent->registerPortInterface(name, static_cast<IWire *>(this));
 
        wireName_.make_string(name);
 
        make_boolean(false);
 
    }
 
 
 
    /** IWire */
 
    virtual void raiseLine() { make_boolean(true); }
 
    virtual void lowerLine() { make_boolean(false); }
 
    virtual void setLevel(bool level) { make_boolean(level); }
 
    virtual bool getLevel() { return to_bool(); }
 
 
 
 protected:
 
    // Debug output compatibility
 
    IFace *getInterface(const char *name) {
 
        return parent_->getInterface(name);
 
    }
 
 
 
 protected:
 
    IService *parent_;
 
    AttributeType wireName_;
};
};
 
 
}  // namespace debugger
}  // namespace debugger
 
 
#endif  // __DEBUGGER_PLUGIN_IWIRE_H__
#endif  // __DEBUGGER_COMMON_CORESERVICES_IWIRE_H__
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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