blob: 6a88ad5a1be4b7aa7e3bbfbc49147e34d3574b0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// license:GPL-2.0+
// copyright-holders:Couriersud
#ifndef NLM_BASE_H_
#define NLM_BASE_H_
/*
* Provide base environment for netlist
*
*/
#ifndef __PLIB_PREPROCESSOR__
#include "netlist/nl_setup.h"
/* ----------------------------------------------------------------------------
* Netlist Macros
* ---------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------
* DIP only macros
* ---------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------
* External declarations
* ---------------------------------------------------------------------------*/
NETLIST_EXTERNAL(base)
#endif
#endif
|