summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nlid_cmos.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/devices/nlid_cmos.h')
-rw-r--r--src/lib/netlist/devices/nlid_cmos.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/lib/netlist/devices/nlid_cmos.h b/src/lib/netlist/devices/nlid_cmos.h
deleted file mode 100644
index 03e6e9dd01d..00000000000
--- a/src/lib/netlist/devices/nlid_cmos.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// license:GPL-2.0+
-// copyright-holders:Couriersud
-/*
- * nld_cmos.h
- *
- */
-
-#ifndef NLID_CMOS_H_
-#define NLID_CMOS_H_
-
-#include "netlist/nl_base.h"
-#include "netlist/nl_setup.h"
-
-namespace netlist
-{
-namespace devices
-{
- // FIXME: this needs to be removed
- NETLIB_OBJECT(vdd_vss)
- {
- NETLIB_CONSTRUCTOR(vdd_vss)
- , m_vdd(*this, "VDD")
- , m_vss(*this, "VSS")
- {
- }
-
- NETLIB_UPDATEI() {}
- NETLIB_RESETI() {}
-
- public:
- nl_fptype vdd() { return m_vdd(); }
- nl_fptype vss() { return m_vss(); }
-
- analog_input_t m_vdd;
- analog_input_t m_vss;
- };
-
-} //namespace devices
-} // namespace netlist
-
-#endif /* NLID_CMOS_H_ */