blob: c9b51b08985d2d811aa0a0614ec3e4b4b9feee9e (
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
|
// license:BSD-3-Clause
// copyright-holders:Couriersud
/*
* nld_9310.cpp
*
*/
#include "nl_base.h"
#include "nl_factory.h"
#include "nld_9316_base.hxx"
// FIXME: All detail can be found in nld_9316_base.hxx
// At least gcc-7.x needs the implementations of the base device
// in different compilation units. If created in the same file
// performance degrades horrible.
// FIXME: this file could be created programmatically
namespace netlist::devices {
NETLIB_DEVICE_IMPL(9310, "TTL_9310", "+CLK,+ENP,+ENT,+CLRQ,+LOADQ,+A,+B,+C,+D,@VCC,@GND")
} // namespace netlist::devices
|