mame/src/lib/netlist/devices/nld_schmitt.h
couriersud 5383dd355c netlist: remove pragma once. (nw)
Only used inconsistently in the code. May as well go.
2019-11-03 15:26:37 +01:00

22 lines
577 B
C

// license:BSD-3-Clause
// copyright-holders:Vas Crabb
/*
* nld_schmitt.h
*
*/
#ifndef NLD_SCHMITT_H_
#define NLD_SCHMITT_H_
#include "netlist/nl_setup.h"
// ----------------------------------------------------------------------------------------
// Macros
// ----------------------------------------------------------------------------------------
#define SCHMITT_TRIGGER(name, model) \
NET_REGISTER_DEV(SCHMITT_TRIGGER, name) \
NETDEV_PARAMI(name, MODEL, model)
#endif /* NLD_SCHMITT_H_ */