mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
Removed relative paths in include statements. (nw)
This commit is contained in:
parent
7815f924ec
commit
3575a923a6
@ -5,9 +5,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <solver/nld_solver.h>
|
||||
#include "nld_bjt.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "solver/nld_solver.h"
|
||||
#include "analog/nld_bjt.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
#ifndef NLD_BJT_H_
|
||||
#define NLD_BJT_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_twoterm.h"
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
@ -5,9 +5,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <solver/nld_solver.h>
|
||||
#include "solver/nld_solver.h"
|
||||
#include "nld_fourterm.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#define NLD_FOURTERM_H_
|
||||
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_twoterm.h"
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#include "nld_opamps.h"
|
||||
#include "../devices/net_lib.h"
|
||||
#include "devices/net_lib.h"
|
||||
|
||||
NETLIST_START(opamp_lm3900)
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
#ifndef NLD_OPAMPS_H_
|
||||
#define NLD_OPAMPS_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_base.h"
|
||||
#include "nl_setup.h"
|
||||
#include "nld_twoterm.h"
|
||||
#include "nld_fourterm.h"
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#include "nld_switches.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
#define R_OFF (1.0 / netlist().gmin())
|
||||
#define R_ON 0.01
|
||||
|
@ -10,7 +10,7 @@
|
||||
#ifndef NLD_SWITCHES_H_
|
||||
#define NLD_SWITCHES_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_twoterm.h"
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
@ -33,7 +33,7 @@
|
||||
#ifndef NLD_TWOTERM_H_
|
||||
#define NLD_TWOTERM_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Macros
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include "net_lib.h"
|
||||
#include "nld_system.h"
|
||||
#include "../nl_factory.h"
|
||||
#include "nl_factory.h"
|
||||
|
||||
NETLIST_START(diode_models)
|
||||
NET_MODEL("D _(IS=1e-15 N=1)")
|
||||
|
@ -11,7 +11,7 @@
|
||||
#ifndef NET_LIB_H
|
||||
#define NET_LIB_H
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_signal.h"
|
||||
#include "nld_system.h"
|
||||
|
||||
@ -56,17 +56,17 @@
|
||||
|
||||
#include "nld_log.h"
|
||||
|
||||
#include "../macro/nlm_cd4xxx.h"
|
||||
#include "../macro/nlm_ttl74xx.h"
|
||||
#include "../macro/nlm_opamp.h"
|
||||
#include "../macro/nlm_other.h"
|
||||
#include "macro/nlm_cd4xxx.h"
|
||||
#include "macro/nlm_ttl74xx.h"
|
||||
#include "macro/nlm_opamp.h"
|
||||
#include "macro/nlm_other.h"
|
||||
|
||||
#include "../analog/nld_bjt.h"
|
||||
#include "../analog/nld_fourterm.h"
|
||||
#include "../analog/nld_switches.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "../analog/nld_opamps.h"
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "analog/nld_bjt.h"
|
||||
#include "analog/nld_fourterm.h"
|
||||
#include "analog/nld_switches.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
#include "analog/nld_opamps.h"
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
#include "nld_legacy.h"
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
#ifndef NLD_4020_H_
|
||||
#define NLD_4020_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_cmos.h"
|
||||
|
||||
/* FIXME: only used in mario.c */
|
||||
|
@ -24,7 +24,7 @@
|
||||
#ifndef NLD_4066_H_
|
||||
#define NLD_4066_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_cmos.h"
|
||||
|
||||
#define CD4066_GATE(_name) \
|
||||
|
@ -59,7 +59,7 @@
|
||||
#ifndef NLD_74107_H_
|
||||
#define NLD_74107_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_74107A(_name, _CLK, _J, _K, _CLRQ) \
|
||||
NET_REGISTER_DEV(TTL_74107A, _name) \
|
||||
|
@ -49,9 +49,9 @@
|
||||
#ifndef NLD_74123_H_
|
||||
#define NLD_74123_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_system.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
#define TTL_74123(_name) \
|
||||
NET_REGISTER_DEV(TTL_74123, _name)
|
||||
|
@ -45,7 +45,7 @@
|
||||
#ifndef NLD_74153_H_
|
||||
#define NLD_74153_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_74153(_name, _C0, _C1, _C2, _C3, _A, _B, _G) \
|
||||
NET_REGISTER_DEV(TTL_74153, _name) \
|
||||
|
@ -29,7 +29,7 @@
|
||||
#ifndef NLD_74192_H_
|
||||
#define NLD_74192_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
#include "nld_9316.h"
|
||||
|
||||
#define TTL_74192(_name) \
|
||||
|
@ -26,7 +26,7 @@
|
||||
#ifndef NLD_74193_H_
|
||||
#define NLD_74193_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_74193(_name) \
|
||||
NET_REGISTER_DEV(TTL_74193, _name)
|
||||
|
@ -24,7 +24,7 @@
|
||||
#ifndef NLD_7448_H_
|
||||
#define NLD_7448_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_7448(_name, _A0, _A1, _A2, _A3, _LTQ, _BIQ, _RBIQ) \
|
||||
NET_REGISTER_DEV(TTL_7448, _name) \
|
||||
|
@ -27,7 +27,7 @@
|
||||
#ifndef NLD_7483_H_
|
||||
#define NLD_7483_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_7483(_name, _A1, _A2, _A3, _A4, _B1, _B2, _B3, _B4, _CI) \
|
||||
NET_REGISTER_DEV(TTL_7483, _name) \
|
||||
|
@ -55,7 +55,7 @@
|
||||
#ifndef NLD_7490_H_
|
||||
#define NLD_7490_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_7490(_name, _A, _B, _R1, _R2, _R91, _R92) \
|
||||
NET_REGISTER_DEV(TTL_7490, _name) \
|
||||
|
@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#include "nld_7493.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
||||
#ifndef NLD_7493_H_
|
||||
#define NLD_7493_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_7493(_name, _CLKA, _CLKB, _R1, _R2) \
|
||||
NET_REGISTER_DEV(TTL_7493, _name) \
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
|
||||
#include "nld_74ls629.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -28,8 +28,8 @@
|
||||
#ifndef NLD_74LS629_H_
|
||||
#define NLD_74LS629_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "nl_base.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
#define SN74LS629(_name, _cap) \
|
||||
NET_REGISTER_DEV(SN74LS629, _name) \
|
||||
|
@ -24,7 +24,7 @@
|
||||
#ifndef NLD_82S16_H_
|
||||
#define NLD_82S16_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_82S16(_name) \
|
||||
NET_REGISTER_DEV(TTL_82S16, _name)
|
||||
|
@ -45,7 +45,7 @@
|
||||
#ifndef NLD_9310_H_
|
||||
#define NLD_9310_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_9310(_name, _CLK, _ENP, _ENT, _CLRQ, _LOADQ, _A, _B, _C, _D) \
|
||||
NET_REGISTER_DEV(TTL_9310, _name) \
|
||||
|
@ -49,7 +49,7 @@
|
||||
#ifndef NLD_9316_H_
|
||||
#define NLD_9316_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
#define TTL_9316(_name, _CLK, _ENP, _ENT, _CLRQ, _LOADQ, _A, _B, _C, _D) \
|
||||
NET_REGISTER_DEV(TTL_9316, _name) \
|
||||
|
@ -8,8 +8,8 @@
|
||||
#ifndef NLD_CMOS_H_
|
||||
#define NLD_CMOS_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "nl_base.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#include "nld_legacy.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
#ifndef NLD_LEGACY_H_
|
||||
#define NLD_LEGACY_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -5,8 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
#include "nld_log.h"
|
||||
//#include "sound/wavwrite.h"
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
#include <solver/nld_solver.h>
|
||||
#include "nld_mm5837.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
#define R_LOW (1000)
|
||||
#define R_HIGH (1000)
|
||||
|
@ -19,8 +19,8 @@
|
||||
#ifndef NLD_MM5837_H_
|
||||
#define NLD_MM5837_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "nl_base.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
#define MM5837_DIP(_name) \
|
||||
NET_REGISTER_DEV(MM5837_DIP, _name)
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
#include <solver/nld_solver.h>
|
||||
#include "nld_ne555.h"
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
#define R_OFF (1E20)
|
||||
#define R_ON (25) // Datasheet states a maximum discharge of 200mA, R = 5V / 0.2
|
||||
|
@ -19,8 +19,8 @@
|
||||
#ifndef NLD_NE555_H_
|
||||
#define NLD_NE555_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "nl_base.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
#define NE555(_name) \
|
||||
NET_REGISTER_DEV(NE555, _name)
|
||||
|
@ -46,8 +46,8 @@
|
||||
#ifndef NLD_R2R_DAC_H_
|
||||
#define NLD_R2R_DAC_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "nl_base.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
#define R2R_DAC(_name, _VIN, _R, _N) \
|
||||
NET_REGISTER_DEV(R2R_DAC, _name) \
|
||||
|
@ -8,7 +8,7 @@
|
||||
#ifndef NLD_SIGNAL_H_
|
||||
#define NLD_SIGNAL_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
// MACROS
|
||||
|
@ -9,10 +9,10 @@
|
||||
#ifndef NLD_SYSTEM_H_
|
||||
#define NLD_SYSTEM_H_
|
||||
|
||||
#include "../nl_setup.h"
|
||||
#include "../nl_base.h"
|
||||
#include "../nl_factory.h"
|
||||
#include "../analog/nld_twoterm.h"
|
||||
#include "nl_setup.h"
|
||||
#include "nl_base.h"
|
||||
#include "nl_factory.h"
|
||||
#include "analog/nld_twoterm.h"
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Macros
|
||||
|
@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#include "nld_truthtable.h"
|
||||
#include "../plib/plists.h"
|
||||
#include "plib/plists.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
#ifndef NLD_TRUTHTABLE_H_
|
||||
#define NLD_TRUTHTABLE_H_
|
||||
|
||||
#include "../nl_base.h"
|
||||
#include "../nl_factory.h"
|
||||
#include "nl_base.h"
|
||||
#include "nl_factory.h"
|
||||
|
||||
#define NETLIB_TRUTHTABLE(_name, _nIN, _nOUT, _state) \
|
||||
class NETLIB_NAME(_name) : public nld_truthtable_t<_nIN, _nOUT, _state> \
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef NLD_CD4XXX_H_
|
||||
#define NLD_CD4XXX_H_
|
||||
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
/*
|
||||
* Devices:
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef NLM_OPAMP_H_
|
||||
#define NLM_OPAMP_H_
|
||||
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
#ifndef __PLIB_PREPROCESSOR__
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef NLM_OTHER_H_
|
||||
#define NLM_OTHER_H_
|
||||
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
#ifndef __PLIB_PREPROCESSOR__
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef NLD_TTL74XX_H_
|
||||
#define NLD_TTL74XX_H_
|
||||
|
||||
#include "../nl_setup.h"
|
||||
#include "nl_setup.h"
|
||||
|
||||
#ifndef __PLIB_PREPROCESSOR__
|
||||
|
||||
|
@ -8,7 +8,6 @@
|
||||
#include <solver/nld_solver.h>
|
||||
#include <cstring>
|
||||
#include <algorithm>
|
||||
#include <cstdio>
|
||||
|
||||
#include "plib/palloc.h"
|
||||
|
||||
|
@ -5,8 +5,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <solver/nld_solver.h>
|
||||
#include <cstdio>
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
#include "plib/palloc.h"
|
||||
#include "nl_base.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#define MAT_CR_H_
|
||||
|
||||
#include <algorithm>
|
||||
#include "../plib/pconfig.h"
|
||||
#include "plib/pconfig.h"
|
||||
|
||||
template<int _storage_N>
|
||||
struct mat_cr_t
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
#ifndef NLD_MS_DIRECT1_H_
|
||||
#define NLD_MS_DIRECT1_H_
|
||||
|
||||
#include "../solver/nld_ms_direct.h"
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "solver/nld_ms_direct.h"
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
#ifndef NLD_MS_DIRECT2_H_
|
||||
#define NLD_MS_DIRECT2_H_
|
||||
|
||||
#include "../solver/nld_ms_direct.h"
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "solver/nld_ms_direct.h"
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -14,10 +14,10 @@
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "../solver/mat_cr.h"
|
||||
#include "../solver/nld_ms_direct.h"
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "../solver/vector_base.h"
|
||||
#include "solver/mat_cr.h"
|
||||
#include "solver/nld_ms_direct.h"
|
||||
#include "solver/nld_solver.h"
|
||||
#include "solver/vector_base.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "../solver/nld_ms_direct.h"
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "solver/nld_ms_direct.h"
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "../solver/nld_ms_direct.h"
|
||||
#include "../solver/nld_solver.h"
|
||||
#include "solver/nld_ms_direct.h"
|
||||
#include "solver/nld_solver.h"
|
||||
|
||||
NETLIB_NAMESPACE_DEVICES_START()
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
#include "nld_ms_sor_mat.h"
|
||||
#include "nld_ms_gmres.h"
|
||||
//#include "nld_twoterm.h"
|
||||
#include "../nl_lists.h"
|
||||
#include "nl_lists.h"
|
||||
|
||||
#if HAS_OPENMP
|
||||
#include "omp.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
#ifndef NLD_SOLVER_H_
|
||||
#define NLD_SOLVER_H_
|
||||
|
||||
#include "../nl_setup.h"
|
||||
#include "../nl_base.h"
|
||||
#include "nl_setup.h"
|
||||
#include "nl_base.h"
|
||||
|
||||
//#define ATTR_ALIGNED(N) __attribute__((aligned(N)))
|
||||
#define ATTR_ALIGNED(N) ATTR_ALIGN
|
||||
|
@ -11,7 +11,7 @@
|
||||
#define VECTOR_BASE_H_
|
||||
|
||||
#include <algorithm>
|
||||
#include "../plib/pconfig.h"
|
||||
#include "plib/pconfig.h"
|
||||
|
||||
#if 0
|
||||
template <unsigned _storage_N>
|
||||
|
Loading…
Reference in New Issue
Block a user