blob: 8f764aa651fb64c2dd7a8d1d8677d10c033add00 (
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
|
// license:GPL-2.0+
// copyright-holders:Couriersud
/*
* nld_MM5837.h
*
* MM5837: Digital noise source
*
* +--------+
* VDD |1 ++ 8| NC
* VGG |2 7| NC
* OUT |3 6| NC
* VSS |4 5| NC
* +--------+
*
* Naming conventions follow National Semiconductor datasheet
*
*/
#ifndef NLD_MM5837_H_
#define NLD_MM5837_H_
#include "netlist/nl_setup.h"
#define MM5837_DIP(name) \
NET_REGISTER_DEV(MM5837_DIP, name)
#endif /* NLD_MM5837_H_ */
|