blob: d191a4537baebdc666e2c66fe23a0d45e6074417 (
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
|
// license:BSD-3-Clause
// copyright-holders:Couriersud
#ifndef NLBASE_H_
#define NLBASE_H_
///
/// \file nl_base.h
///
#include "core/device.h"
#include "core/device_macros.h"
#include "core/devices.h"
#include "core/logic.h"
#include "core/object_array.h"
namespace netlist
{
// nothing in here. This should not change.
} // namespace netlist
#endif // NLBASE_H_
|