mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-18 17:00:34 +00:00
27 lines
830 B
C++
27 lines
830 B
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: Verilator output: Precompiled header
|
|
//
|
|
// Internal details; most user sources do not need this header,
|
|
// unless using verilator public meta comments.
|
|
// Suggest use VSparkleTangNano9KTop.h instead.
|
|
|
|
#ifndef VERILATED_VSPARKLETANGNANO9KTOP__PCH_H_
|
|
#define VERILATED_VSPARKLETANGNANO9KTOP__PCH_H_ // guard
|
|
|
|
// GCC and Clang only will precompile headers (PCH) for the first header.
|
|
// So, make sure this is the one and only PCH.
|
|
// If multiple module's includes are needed, use individual includes.
|
|
#ifdef VL_PCH_INCLUDED
|
|
# error "Including multiple precompiled header files"
|
|
#endif
|
|
#define VL_PCH_INCLUDED
|
|
|
|
|
|
#include "verilated.h"
|
|
|
|
#include "VSparkleTangNano9KTop__Syms.h"
|
|
#include "VSparkleTangNano9KTop.h"
|
|
|
|
// Additional include files added using '--compiler-include'
|
|
|
|
#endif // guard
|