diff options
author | 2020-05-01 10:49:28 +0200 | |
---|---|---|
committer | 2020-05-01 10:49:28 +0200 | |
commit | e30ab9be9af8dad2d15e0e8ddd36150768e29fd4 (patch) | |
tree | f1bb5bb6b3d3e34953999da4d568e7f0160066d6 /src/lib/netlist/examples | |
parent | 0120d1d8ff136a49f7ee78fc2f2f1dc9560ce737 (diff) |
netlist: Fix inclusion of examples in documentation. (nw)
Diffstat (limited to 'src/lib/netlist/examples')
-rw-r--r-- | src/lib/netlist/examples/ne566.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/netlist/examples/ne566.cpp b/src/lib/netlist/examples/ne566.cpp index c6ef3d0d4ca..0fac07d9f0d 100644 --- a/src/lib/netlist/examples/ne566.cpp +++ b/src/lib/netlist/examples/ne566.cpp @@ -1,3 +1,12 @@ +// license:GPL-2.0+ +// copyright-holders:Couriersud + +/* + * ne566.cpp + * + */ + +//! [ne566_example] #include "netlist/devices/net_lib.h" @@ -19,3 +28,4 @@ NETLIST_START(oscillator) NET_C(GND, X.1, C1.2) NET_C(C1.1, X.7) NETLIST_END() +//! [ne566_example] |