mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-17 02:10:36 +00:00
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: Verilator output: Symbol table internal header
|
|
//
|
|
// Internal details; most calling programs do not need this header,
|
|
// unless using verilator public meta comments.
|
|
|
|
#ifndef VERILATED_VSPARKLETANGNANO9KTOP__SYMS_H_
|
|
#define VERILATED_VSPARKLETANGNANO9KTOP__SYMS_H_ // guard
|
|
|
|
#include "verilated.h"
|
|
|
|
// INCLUDE MODEL CLASS
|
|
|
|
#include "VSparkleTangNano9KTop.h"
|
|
|
|
// INCLUDE MODULE CLASSES
|
|
#include "VSparkleTangNano9KTop___024root.h"
|
|
|
|
// SYMS CLASS (contains all model state)
|
|
class alignas(VL_CACHE_LINE_BYTES) VSparkleTangNano9KTop__Syms final : public VerilatedSyms {
|
|
public:
|
|
// INTERNAL STATE
|
|
VSparkleTangNano9KTop* const __Vm_modelp;
|
|
bool __Vm_activity = false; ///< Used by trace routines to determine change occurred
|
|
uint32_t __Vm_baseCode = 0; ///< Used by trace routines when tracing multiple models
|
|
VlDeleter __Vm_deleter;
|
|
bool __Vm_didInit = false;
|
|
|
|
// MODULE INSTANCE STATE
|
|
VSparkleTangNano9KTop___024root TOP;
|
|
|
|
// CONSTRUCTORS
|
|
VSparkleTangNano9KTop__Syms(VerilatedContext* contextp, const char* namep, VSparkleTangNano9KTop* modelp);
|
|
~VSparkleTangNano9KTop__Syms();
|
|
|
|
// METHODS
|
|
const char* name() const { return TOP.vlNamep; }
|
|
};
|
|
|
|
#endif // guard
|