diff options
author | 2015-04-11 14:17:02 +0200 | |
---|---|---|
committer | 2015-04-11 14:17:02 +0200 | |
commit | c334fda9a9da652bcac871f3b778ba4ca967031c (patch) | |
tree | ddf0e768d30a5121bf5b1ab9a906ee924fd09287 /scripts/src/machine.lua | |
parent | edda146aa20d1cd9bd2ad0fb3ff0009e77a54cd1 (diff) |
Start adding .h and .inc files to help usage inside IDE's like VS and XCode (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 251 |
1 files changed, 251 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index b0397cbed3c..9f0d7d4406f 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -18,6 +18,7 @@ if (MACHINES["AKIKO"]~=null) then files { MAME_DIR .. "src/emu/machine/akiko.c", + MAME_DIR .. "src/emu/machine/akiko.h", } end @@ -30,6 +31,7 @@ end if (MACHINES["AUTOCONFIG"]~=null) then files { MAME_DIR .. "src/emu/machine/autoconfig.c", + MAME_DIR .. "src/emu/machine/autoconfig.h", } end @@ -42,6 +44,7 @@ end if (MACHINES["CR511B"]~=null) then files { MAME_DIR .. "src/emu/machine/cr511b.c", + MAME_DIR .. "src/emu/machine/cr511b.h", } end @@ -54,6 +57,7 @@ end if (MACHINES["DMAC"]~=null) then files { MAME_DIR .. "src/emu/machine/dmac.c", + MAME_DIR .. "src/emu/machine/dmac.h", } end @@ -66,6 +70,7 @@ end if (MACHINES["GAYLE"]~=null) then files { MAME_DIR .. "src/emu/machine/gayle.c", + MAME_DIR .. "src/emu/machine/gayle.h", } end @@ -78,6 +83,7 @@ end if (MACHINES["CMOS40105"]~=null) then files { MAME_DIR .. "src/emu/machine/40105.c", + MAME_DIR .. "src/emu/machine/40105.h", } end @@ -91,6 +97,7 @@ if (MACHINES["NCR53C7XX"]~=null) then MACHINES["NSCSI"] = true files { MAME_DIR .. "src/emu/machine/53c7xx.c", + MAME_DIR .. "src/emu/machine/53c7xx.h", } end @@ -103,6 +110,7 @@ if (MACHINES["LSI53C810"]~=null) then MACHINES["SCSI"] = true files { MAME_DIR .. "src/emu/machine/53c810.c", + MAME_DIR .. "src/emu/machine/53c810.h", } end @@ -114,6 +122,7 @@ end if (MACHINES["6522VIA"]~=null) then files { MAME_DIR .. "src/emu/machine/6522via.c", + MAME_DIR .. "src/emu/machine/6522via.h", } end @@ -125,6 +134,7 @@ end if (MACHINES["TPI6525"]~=null) then files { MAME_DIR .. "src/emu/machine/6525tpi.c", + MAME_DIR .. "src/emu/machine/6525tpi.h", } end @@ -136,6 +146,7 @@ end if (MACHINES["RIOT6532"]~=null) then files { MAME_DIR .. "src/emu/machine/6532riot.c", + MAME_DIR .. "src/emu/machine/6532riot.h", } end @@ -147,6 +158,7 @@ end if (MACHINES["6821PIA"]~=null) then files { MAME_DIR .. "src/emu/machine/6821pia.c", + MAME_DIR .. "src/emu/machine/6821pia.h", } end @@ -158,6 +170,7 @@ end if (MACHINES["6840PTM"]~=null) then files { MAME_DIR .. "src/emu/machine/6840ptm.c", + MAME_DIR .. "src/emu/machine/6840ptm.h", } end @@ -169,6 +182,7 @@ end if (MACHINES["ACIA6850"]~=null) then files { MAME_DIR .. "src/emu/machine/6850acia.c", + MAME_DIR .. "src/emu/machine/6850acia.h", } end @@ -180,6 +194,7 @@ end if (MACHINES["68561MPCC"]~=null) then files { MAME_DIR .. "src/emu/machine/68561mpcc.c", + MAME_DIR .. "src/emu/machine/68561mpcc.h", } end @@ -191,6 +206,7 @@ end if (MACHINES["68681"]~=null) then files { MAME_DIR .. "src/emu/machine/mc68681.c", + MAME_DIR .. "src/emu/machine/mc68681.h", } end @@ -202,6 +218,7 @@ end if (MACHINES["7200FIFO"]~=null) then files { MAME_DIR .. "src/emu/machine/7200fifo.c", + MAME_DIR .. "src/emu/machine/7200fifo.h", } end @@ -213,6 +230,8 @@ end if (MACHINES["TTL74123"]~=null) then files { MAME_DIR .. "src/emu/machine/74123.c", + MAME_DIR .. "src/emu/machine/74123.h", + MAME_DIR .. "src/emu/machine/rescap.h", } end @@ -224,6 +243,7 @@ end if (MACHINES["TTL74145"]~=null) then files { MAME_DIR .. "src/emu/machine/74145.c", + MAME_DIR .. "src/emu/machine/74145.h", } end @@ -235,6 +255,7 @@ end if (MACHINES["TTL74148"]~=null) then files { MAME_DIR .. "src/emu/machine/74148.c", + MAME_DIR .. "src/emu/machine/74148.h", } end @@ -246,6 +267,7 @@ end if (MACHINES["TTL74153"]~=null) then files { MAME_DIR .. "src/emu/machine/74153.c", + MAME_DIR .. "src/emu/machine/74153.h", } end @@ -257,6 +279,7 @@ end if (MACHINES["TTL74181"]~=null) then files { MAME_DIR .. "src/emu/machine/74181.c", + MAME_DIR .. "src/emu/machine/74181.h", } end @@ -268,6 +291,7 @@ end if (MACHINES["TTL7474"]~=null) then files { MAME_DIR .. "src/emu/machine/7474.c", + MAME_DIR .. "src/emu/machine/7474.h", } end @@ -279,6 +303,7 @@ end if (MACHINES["KBDC8042"]~=null) then files { MAME_DIR .. "src/emu/machine/8042kbdc.c", + MAME_DIR .. "src/emu/machine/8042kbdc.h", } end @@ -290,6 +315,7 @@ end if (MACHINES["8530SCC"]~=null) then files { MAME_DIR .. "src/emu/machine/8530scc.c", + MAME_DIR .. "src/emu/machine/8530scc.h", } end @@ -301,6 +327,7 @@ end if (MACHINES["AAKARTDEV"]~=null) then files { MAME_DIR .. "src/emu/machine/aakart.c", + MAME_DIR .. "src/emu/machine/aakart.h", } end @@ -312,6 +339,7 @@ end if (MACHINES["ADC0808"]~=null) then files { MAME_DIR .. "src/emu/machine/adc0808.c", + MAME_DIR .. "src/emu/machine/adc0808.h", } end @@ -323,6 +351,7 @@ end if (MACHINES["ADC083X"]~=null) then files { MAME_DIR .. "src/emu/machine/adc083x.c", + MAME_DIR .. "src/emu/machine/adc083x.h", } end @@ -334,6 +363,7 @@ end if (MACHINES["ADC1038"]~=null) then files { MAME_DIR .. "src/emu/machine/adc1038.c", + MAME_DIR .. "src/emu/machine/adc1038.h", } end @@ -345,6 +375,7 @@ end if (MACHINES["ADC1213X"]~=null) then files { MAME_DIR .. "src/emu/machine/adc1213x.c", + MAME_DIR .. "src/emu/machine/adc1213x.h", } end @@ -356,6 +387,7 @@ end if (MACHINES["AICARTC"]~=null) then files { MAME_DIR .. "src/emu/machine/aicartc.c", + MAME_DIR .. "src/emu/machine/aicartc.h", } end @@ -367,6 +399,7 @@ end if (MACHINES["AM53CF96"]~=null) then files { MAME_DIR .. "src/emu/machine/am53cf96.c", + MAME_DIR .. "src/emu/machine/am53cf96.h", } end @@ -378,6 +411,7 @@ end if (MACHINES["AM9517A"]~=null) then files { MAME_DIR .. "src/emu/machine/am9517a.c", + MAME_DIR .. "src/emu/machine/am9517a.h", } end @@ -389,6 +423,7 @@ end if (MACHINES["AMIGAFDC"]~=null) then files { MAME_DIR .. "src/emu/machine/amigafdc.c", + MAME_DIR .. "src/emu/machine/amigafdc.h", } end @@ -400,6 +435,7 @@ end if (MACHINES["AT28C16"]~=null) then files { MAME_DIR .. "src/emu/machine/at28c16.c", + MAME_DIR .. "src/emu/machine/at28c16.h", } end @@ -411,6 +447,7 @@ end if (MACHINES["AT29040"]~=null) then files { MAME_DIR .. "src/emu/machine/at29040a.c", + MAME_DIR .. "src/emu/machine/at29040a.h", } end @@ -422,6 +459,7 @@ end if (MACHINES["AT45DBXX"]~=null) then files { MAME_DIR .. "src/emu/machine/at45dbxx.c", + MAME_DIR .. "src/emu/machine/at45dbxx.h", } end @@ -435,6 +473,7 @@ if (MACHINES["ATAFLASH"]~=null) then MACHINES["PCCARD"] = true files { MAME_DIR .. "src/emu/machine/ataflash.c", + MAME_DIR .. "src/emu/machine/ataflash.h", } end @@ -446,6 +485,7 @@ end if (MACHINES["AY31015"]~=null) then files { MAME_DIR .. "src/emu/machine/ay31015.c", + MAME_DIR .. "src/emu/machine/ay31015.h", } end @@ -457,6 +497,7 @@ end if (MACHINES["BANKDEV"]~=null) then files { MAME_DIR .. "src/emu/machine/bankdev.c", + MAME_DIR .. "src/emu/machine/bankdev.h", } end @@ -468,6 +509,7 @@ end if (MACHINES["CDP1852"]~=null) then files { MAME_DIR .. "src/emu/machine/cdp1852.c", + MAME_DIR .. "src/emu/machine/cdp1852.h", } end @@ -479,6 +521,7 @@ end if (MACHINES["CDP1871"]~=null) then files { MAME_DIR .. "src/emu/machine/cdp1871.c", + MAME_DIR .. "src/emu/machine/cdp1871.h", } end @@ -490,6 +533,7 @@ end if (MACHINES["COM8116"]~=null) then files { MAME_DIR .. "src/emu/machine/com8116.c", + MAME_DIR .. "src/emu/machine/com8116.h", } end @@ -501,6 +545,7 @@ end if (MACHINES["CR589"]~=null) then files { MAME_DIR .. "src/emu/machine/cr589.c", + MAME_DIR .. "src/emu/machine/cr589.h", } end @@ -512,6 +557,7 @@ end if (MACHINES["CS4031"]~=null) then files { MAME_DIR .. "src/emu/machine/cs4031.c", + MAME_DIR .. "src/emu/machine/cs4031.h", } end @@ -523,6 +569,7 @@ end if (MACHINES["CS8221"]~=null) then files { MAME_DIR .. "src/emu/machine/cs8221.c", + MAME_DIR .. "src/emu/machine/cs8221.h", } end @@ -534,6 +581,7 @@ end if (MACHINES["DS1204"]~=null) then files { MAME_DIR .. "src/emu/machine/ds1204.c", + MAME_DIR .. "src/emu/machine/ds1204.h", } end @@ -545,6 +593,7 @@ end if (MACHINES["DS1302"]~=null) then files { MAME_DIR .. "src/emu/machine/ds1302.c", + MAME_DIR .. "src/emu/machine/ds1302.h", } end @@ -556,6 +605,7 @@ end if (MACHINES["DS1315"]~=null) then files { MAME_DIR .. "src/emu/machine/ds1315.c", + MAME_DIR .. "src/emu/machine/ds1315.h", } end @@ -567,6 +617,7 @@ end if (MACHINES["DS2401"]~=null) then files { MAME_DIR .. "src/emu/machine/ds2401.c", + MAME_DIR .. "src/emu/machine/ds2401.h", } end @@ -578,6 +629,7 @@ end if (MACHINES["DS2404"]~=null) then files { MAME_DIR .. "src/emu/machine/ds2404.c", + MAME_DIR .. "src/emu/machine/ds2404.h", } end @@ -589,6 +641,7 @@ end if (MACHINES["DS75160A"]~=null) then files { MAME_DIR .. "src/emu/machine/ds75160a.c", + MAME_DIR .. "src/emu/machine/ds75160a.h", } end @@ -600,6 +653,7 @@ end if (MACHINES["DS75161A"]~=null) then files { MAME_DIR .. "src/emu/machine/ds75161a.c", + MAME_DIR .. "src/emu/machine/ds75161a.h", } end @@ -611,6 +665,7 @@ end if (MACHINES["E0516"]~=null) then files { MAME_DIR .. "src/emu/machine/e0516.c", + MAME_DIR .. "src/emu/machine/e0516.h", } end @@ -622,6 +677,7 @@ end if (MACHINES["E05A03"]~=null) then files { MAME_DIR .. "src/emu/machine/e05a03.c", + MAME_DIR .. "src/emu/machine/e05a03.h", } end @@ -633,6 +689,7 @@ end if (MACHINES["E05A30"]~=null) then files { MAME_DIR .. "src/emu/machine/e05a30.c", + MAME_DIR .. "src/emu/machine/e05a30.h", } end @@ -646,8 +703,11 @@ end if (MACHINES["EEPROMDEV"]~=null) then files { MAME_DIR .. "src/emu/machine/eeprom.c", + MAME_DIR .. "src/emu/machine/eeprom.h", MAME_DIR .. "src/emu/machine/eepromser.c", + MAME_DIR .. "src/emu/machine/eepromser.h", MAME_DIR .. "src/emu/machine/eeprompar.c", + MAME_DIR .. "src/emu/machine/eeprompar.h", } end @@ -659,6 +719,7 @@ end if (MACHINES["ER2055"]~=null) then files { MAME_DIR .. "src/emu/machine/er2055.c", + MAME_DIR .. "src/emu/machine/er2055.h", } end @@ -670,6 +731,7 @@ end if (MACHINES["F3853"]~=null) then files { MAME_DIR .. "src/emu/machine/f3853.c", + MAME_DIR .. "src/emu/machine/f3853.h", } end @@ -681,6 +743,7 @@ end if (MACHINES["HD63450"]~=null) then files { MAME_DIR .. "src/emu/machine/hd63450.c", + MAME_DIR .. "src/emu/machine/hd63450.h", } end @@ -692,6 +755,7 @@ end if (MACHINES["HD64610"]~=null) then files { MAME_DIR .. "src/emu/machine/hd64610.c", + MAME_DIR .. "src/emu/machine/hd64610.h", } end @@ -703,6 +767,7 @@ end if (MACHINES["I2CMEM"]~=null) then files { MAME_DIR .. "src/emu/machine/i2cmem.c", + MAME_DIR .. "src/emu/machine/i2cmem.h", } end @@ -714,6 +779,7 @@ end if (MACHINES["I8155"]~=null) then files { MAME_DIR .. "src/emu/machine/i8155.c", + MAME_DIR .. "src/emu/machine/i8155.h", } end @@ -725,6 +791,7 @@ end if (MACHINES["I8212"]~=null) then files { MAME_DIR .. "src/emu/machine/i8212.c", + MAME_DIR .. "src/emu/machine/i8212.h", } end @@ -736,6 +803,7 @@ end if (MACHINES["I8214"]~=null) then files { MAME_DIR .. "src/emu/machine/i8214.c", + MAME_DIR .. "src/emu/machine/i8214.h", } end @@ -747,6 +815,7 @@ end if (MACHINES["I8243"]~=null) then files { MAME_DIR .. "src/emu/machine/i8243.c", + MAME_DIR .. "src/emu/machine/i8243.h", } end @@ -758,6 +827,7 @@ end if (MACHINES["I8251"]~=null) then files { MAME_DIR .. "src/emu/machine/i8251.c", + MAME_DIR .. "src/emu/machine/i8251.h", } end @@ -769,6 +839,7 @@ end if (MACHINES["I8257"]~=null) then files { MAME_DIR .. "src/emu/machine/i8257.c", + MAME_DIR .. "src/emu/machine/i8257.h", } end @@ -781,6 +852,7 @@ end if (MACHINES["I8271"]~=null) then files { MAME_DIR .. "src/emu/machine/i8271.c", + MAME_DIR .. "src/emu/machine/i8271.h", } end @@ -792,6 +864,7 @@ end if (MACHINES["I8279"]~=null) then files { MAME_DIR .. "src/emu/machine/i8279.c", + MAME_DIR .. "src/emu/machine/i8279.h", } end @@ -803,6 +876,7 @@ end if (MACHINES["I8355"]~=null) then files { MAME_DIR .. "src/emu/machine/i8355.c", + MAME_DIR .. "src/emu/machine/i8355.h", } end @@ -814,6 +888,7 @@ end if (MACHINES["I80130"]~=null) then files { MAME_DIR .. "src/emu/machine/i80130.c", + MAME_DIR .. "src/emu/machine/i80130.h", } end @@ -827,13 +902,21 @@ if (MACHINES["IDE"]~=null) then MACHINES["T10"] = true files { MAME_DIR .. "src/emu/machine/atadev.c", + MAME_DIR .. "src/emu/machine/atadev.h", MAME_DIR .. "src/emu/machine/atahle.c", + MAME_DIR .. "src/emu/machine/atahle.h", MAME_DIR .. "src/emu/machine/ataintf.c", + MAME_DIR .. "src/emu/machine/ataintf.h", MAME_DIR .. "src/emu/machine/atapicdr.c", + MAME_DIR .. "src/emu/machine/atapicdr.h", MAME_DIR .. "src/emu/machine/atapihle.c", + MAME_DIR .. "src/emu/machine/atapihle.h", MAME_DIR .. "src/emu/machine/idectrl.c", + MAME_DIR .. "src/emu/machine/idectrl.h", MAME_DIR .. "src/emu/machine/idehd.c", + MAME_DIR .. "src/emu/machine/idehd.h", MAME_DIR .. "src/emu/machine/vt83c461.c", + MAME_DIR .. "src/emu/machine/vt83c461.h", } end @@ -845,6 +928,7 @@ end if (MACHINES["IM6402"]~=null) then files { MAME_DIR .. "src/emu/machine/im6402.c", + MAME_DIR .. "src/emu/machine/im6402.h", } end @@ -856,6 +940,7 @@ end if (MACHINES["INS8154"]~=null) then files { MAME_DIR .. "src/emu/machine/ins8154.c", + MAME_DIR .. "src/emu/machine/ins8154.h", } end @@ -867,6 +952,7 @@ end if (MACHINES["INS8250"]~=null) then files { MAME_DIR .. "src/emu/machine/ins8250.c", + MAME_DIR .. "src/emu/machine/ins8250.h", } end @@ -878,6 +964,7 @@ end if (MACHINES["INTELFLASH"]~=null) then files { MAME_DIR .. "src/emu/machine/intelfsh.c", + MAME_DIR .. "src/emu/machine/intelfsh.h", } end @@ -890,7 +977,9 @@ end if (MACHINES["JVS"]~=null) then files { MAME_DIR .. "src/emu/machine/jvsdev.c", + MAME_DIR .. "src/emu/machine/jvsdev.h", MAME_DIR .. "src/emu/machine/jvshost.c", + MAME_DIR .. "src/emu/machine/jvshost.h", } end @@ -902,6 +991,7 @@ end if (MACHINES["K033906"]~=null) then files { MAME_DIR .. "src/emu/machine/k033906.c", + MAME_DIR .. "src/emu/machine/k033906.h", } end @@ -913,6 +1003,7 @@ end if (MACHINES["K053252"]~=null) then files { MAME_DIR .. "src/emu/machine/k053252.c", + MAME_DIR .. "src/emu/machine/k053252.h", } end @@ -924,6 +1015,7 @@ end if (MACHINES["K056230"]~=null) then files { MAME_DIR .. "src/emu/machine/k056230.c", + MAME_DIR .. "src/emu/machine/k056230.h", } end @@ -935,6 +1027,7 @@ end if (MACHINES["KB3600"]~=null) then files { MAME_DIR .. "src/emu/machine/kb3600.c", + MAME_DIR .. "src/emu/machine/kb3600.h", } end @@ -946,6 +1039,7 @@ end if (MACHINES["KR2376"]~=null) then files { MAME_DIR .. "src/emu/machine/kr2376.c", + MAME_DIR .. "src/emu/machine/kr2376.h", } end @@ -957,6 +1051,7 @@ end if (MACHINES["LATCH8"]~=null) then files { MAME_DIR .. "src/emu/machine/latch8.c", + MAME_DIR .. "src/emu/machine/latch8.h", } end @@ -968,6 +1063,7 @@ end if (MACHINES["LC89510"]~=null) then files { MAME_DIR .. "src/emu/machine/lc89510.c", + MAME_DIR .. "src/emu/machine/lc89510.h", } end @@ -979,6 +1075,7 @@ end if (MACHINES["LDPR8210"]~=null) then files { MAME_DIR .. "src/emu/machine/ldpr8210.c", + MAME_DIR .. "src/emu/machine/ldpr8210.h", } end @@ -990,6 +1087,7 @@ end if (MACHINES["LDSTUB"]~=null) then files { MAME_DIR .. "src/emu/machine/ldstub.c", + MAME_DIR .. "src/emu/machine/ldstub.h", } end @@ -1003,6 +1101,7 @@ if (MACHINES["LDV1000"]~=null) then MACHINES["I8255"] = true files { MAME_DIR .. "src/emu/machine/ldv1000.c", + MAME_DIR .. "src/emu/machine/ldv1000.h", } end @@ -1014,6 +1113,7 @@ end if (MACHINES["LDVP931"]~=null) then files { MAME_DIR .. "src/emu/machine/ldvp931.c", + MAME_DIR .. "src/emu/machine/ldvp931.h", } end @@ -1025,6 +1125,7 @@ end if (MACHINES["LH5810"]~=null) then files { MAME_DIR .. "src/emu/machine/lh5810.c", + MAME_DIR .. "src/emu/machine/lh5810.h", } end @@ -1036,6 +1137,7 @@ end if (MACHINES["LINFLASH"]~=null) then files { MAME_DIR .. "src/emu/machine/linflash.c", + MAME_DIR .. "src/emu/machine/linflash.h", } end @@ -1047,6 +1149,7 @@ end if (MACHINES["M6M80011AP"]~=null) then files { MAME_DIR .. "src/emu/machine/m6m80011ap.c", + MAME_DIR .. "src/emu/machine/m6m80011ap.h", } end @@ -1058,6 +1161,7 @@ end if (MACHINES["MATSUCD"]~=null) then files { MAME_DIR .. "src/emu/machine/matsucd.c", + MAME_DIR .. "src/emu/machine/matsucd.h", } end @@ -1069,6 +1173,7 @@ end if (MACHINES["MB14241"]~=null) then files { MAME_DIR .. "src/emu/machine/mb14241.c", + MAME_DIR .. "src/emu/machine/mb14241.h", } end @@ -1080,6 +1185,7 @@ end if (MACHINES["MB3773"]~=null) then files { MAME_DIR .. "src/emu/machine/mb3773.c", + MAME_DIR .. "src/emu/machine/mb3773.h", } end @@ -1091,6 +1197,7 @@ end if (MACHINES["MB8421"]~=null) then files { MAME_DIR .. "src/emu/machine/mb8421.c", + MAME_DIR .. "src/emu/machine/mb8421.h", } end @@ -1102,6 +1209,7 @@ end if (MACHINES["MB87078"]~=null) then files { MAME_DIR .. "src/emu/machine/mb87078.c", + MAME_DIR .. "src/emu/machine/mb87078.h", } end @@ -1113,6 +1221,7 @@ end if (MACHINES["MB8795"]~=null) then files { MAME_DIR .. "src/emu/machine/mb8795.c", + MAME_DIR .. "src/emu/machine/mb8795.h", } end @@ -1124,6 +1233,7 @@ end if (MACHINES["MB89352"]~=null) then files { MAME_DIR .. "src/emu/machine/mb89352.c", + MAME_DIR .. "src/emu/machine/mb89352.h", } end @@ -1135,6 +1245,7 @@ end if (MACHINES["MB89371"]~=null) then files { MAME_DIR .. "src/emu/machine/mb89371.c", + MAME_DIR .. "src/emu/machine/mb89371.h", } end @@ -1146,7 +1257,9 @@ end if (MACHINES["MC146818"]~=null) then files { MAME_DIR .. "src/emu/machine/mc146818.c", + MAME_DIR .. "src/emu/machine/mc146818.h", MAME_DIR .. "src/emu/machine/ds128x.c", + MAME_DIR .. "src/emu/machine/ds128x.h", } end @@ -1158,6 +1271,7 @@ end if (MACHINES["MC2661"]~=null) then files { MAME_DIR .. "src/emu/machine/mc2661.c", + MAME_DIR .. "src/emu/machine/mc2661.h", } end @@ -1169,6 +1283,7 @@ end if (MACHINES["MC6843"]~=null) then files { MAME_DIR .. "src/emu/machine/mc6843.c", + MAME_DIR .. "src/emu/machine/mc6843.h", } end @@ -1180,6 +1295,7 @@ end if (MACHINES["MC6846"]~=null) then files { MAME_DIR .. "src/emu/machine/mc6846.c", + MAME_DIR .. "src/emu/machine/mc6846.h", } end @@ -1191,6 +1307,7 @@ end if (MACHINES["MC6852"]~=null) then files { MAME_DIR .. "src/emu/machine/mc6852.c", + MAME_DIR .. "src/emu/machine/mc6852.h", } end @@ -1202,6 +1319,7 @@ end if (MACHINES["MC6854"]~=null) then files { MAME_DIR .. "src/emu/machine/mc6854.c", + MAME_DIR .. "src/emu/machine/mc6854.h", } end @@ -1213,6 +1331,7 @@ end if (MACHINES["MC68328"]~=null) then files { MAME_DIR .. "src/emu/machine/mc68328.c", + MAME_DIR .. "src/emu/machine/mc68328.h", } end @@ -1224,6 +1343,7 @@ end if (MACHINES["MC68901"]~=null) then files { MAME_DIR .. "src/emu/machine/mc68901.c", + MAME_DIR .. "src/emu/machine/mc68901.h", } end @@ -1235,6 +1355,7 @@ end if (MACHINES["MCCS1850"]~=null) then files { MAME_DIR .. "src/emu/machine/mccs1850.c", + MAME_DIR .. "src/emu/machine/mccs1850.h", } end @@ -1246,9 +1367,13 @@ end if (MACHINES["M68307"]~=null) then files { MAME_DIR .. "src/emu/machine/68307.c", + MAME_DIR .. "src/emu/machine/68307.h", MAME_DIR .. "src/emu/machine/68307sim.c", + MAME_DIR .. "src/emu/machine/68307sim.h", MAME_DIR .. "src/emu/machine/68307bus.c", + MAME_DIR .. "src/emu/machine/68307bus.h", MAME_DIR .. "src/emu/machine/68307tmu.c", + MAME_DIR .. "src/emu/machine/68307tmu.h", } end @@ -1260,10 +1385,15 @@ end if (MACHINES["M68340"]~=null) then files { MAME_DIR .. "src/emu/machine/68340.c", + MAME_DIR .. "src/emu/machine/68340.h", MAME_DIR .. "src/emu/machine/68340sim.c", + MAME_DIR .. "src/emu/machine/68340sim.h", MAME_DIR .. "src/emu/machine/68340dma.c", + MAME_DIR .. "src/emu/machine/68340dma.h", MAME_DIR .. "src/emu/machine/68340ser.c", + MAME_DIR .. "src/emu/machine/68340ser.h", MAME_DIR .. "src/emu/machine/68340tmu.c", + MAME_DIR .. "src/emu/machine/68340tmu.h", } end @@ -1275,6 +1405,7 @@ end if (MACHINES["MCF5206E"]~=null) then files { MAME_DIR .. "src/emu/machine/mcf5206e.c", + MAME_DIR .. "src/emu/machine/mcf5206e.h", } end @@ -1286,6 +1417,7 @@ end if (MACHINES["MICROTOUCH"]~=null) then files { MAME_DIR .. "src/emu/machine/microtch.c", + MAME_DIR .. "src/emu/machine/microtch.h", } end @@ -1297,6 +1429,7 @@ end if (MACHINES["MM58274C"]~=null) then files { MAME_DIR .. "src/emu/machine/mm58274c.c", + MAME_DIR .. "src/emu/machine/mm58274c.h", } end @@ -1308,6 +1441,7 @@ end if (MACHINES["MM74C922"]~=null) then files { MAME_DIR .. "src/emu/machine/mm74c922.c", + MAME_DIR .. "src/emu/machine/mm74c922.h", } end @@ -1319,6 +1453,7 @@ end if (MACHINES["MOS6526"]~=null) then files { MAME_DIR .. "src/emu/machine/mos6526.c", + MAME_DIR .. "src/emu/machine/mos6526.h", } end @@ -1330,6 +1465,7 @@ end if (MACHINES["MOS6529"]~=null) then files { MAME_DIR .. "src/emu/machine/mos6529.c", + MAME_DIR .. "src/emu/machine/mos6529.h", } end @@ -1341,6 +1477,7 @@ end if (MACHINES["MOS6702"]~=null) then files { MAME_DIR .. "src/emu/machine/mos6702.c", + MAME_DIR .. "src/emu/machine/mos6702.h", } end @@ -1352,6 +1489,7 @@ end if (MACHINES["MOS8706"]~=null) then files { MAME_DIR .. "src/emu/machine/mos8706.c", + MAME_DIR .. "src/emu/machine/mos8706.h", } end @@ -1363,6 +1501,7 @@ end if (MACHINES["MOS8722"]~=null) then files { MAME_DIR .. "src/emu/machine/mos8722.c", + MAME_DIR .. "src/emu/machine/mos8722.h", } end @@ -1374,6 +1513,7 @@ end if (MACHINES["MOS8726"]~=null) then files { MAME_DIR .. "src/emu/machine/mos8726.c", + MAME_DIR .. "src/emu/machine/mos8726.h", } end @@ -1385,7 +1525,9 @@ end if (MACHINES["MIOT6530"]~=null) then files { MAME_DIR .. "src/emu/machine/mos6530.c", + MAME_DIR .. "src/emu/machine/mos6530.h", MAME_DIR .. "src/emu/machine/mos6530n.c", + MAME_DIR .. "src/emu/machine/mos6530n.h", } end @@ -1397,6 +1539,7 @@ end if (MACHINES["MOS6551"]~=null) then files { MAME_DIR .. "src/emu/machine/mos6551.c", + MAME_DIR .. "src/emu/machine/mos6551.h", } end @@ -1408,6 +1551,7 @@ end if (MACHINES["MSM5832"]~=null) then files { MAME_DIR .. "src/emu/machine/msm5832.c", + MAME_DIR .. "src/emu/machine/msm5832.h", } end @@ -1419,6 +1563,7 @@ end if (MACHINES["MSM58321"]~=null) then files { MAME_DIR .. "src/emu/machine/msm58321.c", + MAME_DIR .. "src/emu/machine/msm58321.h", } end @@ -1430,6 +1575,7 @@ end if (MACHINES["MSM6242"]~=null) then files { MAME_DIR .. "src/emu/machine/msm6242.c", + MAME_DIR .. "src/emu/machine/msm6242.h", } end @@ -1442,6 +1588,7 @@ if (MACHINES["NCR539x"]~=null) then MACHINES["SCSI"] = true files { MAME_DIR .. "src/emu/machine/ncr539x.c", + MAME_DIR .. "src/emu/machine/ncr539x.h", } end @@ -1453,6 +1600,7 @@ end if (MACHINES["NMC9306"]~=null) then files { MAME_DIR .. "src/emu/machine/nmc9306.c", + MAME_DIR .. "src/emu/machine/nmc9306.h", } end @@ -1468,10 +1616,15 @@ end if (MACHINES["NSCSI"]~=null) then files { MAME_DIR .. "src/emu/machine/nscsi_bus.c", + MAME_DIR .. "src/emu/machine/nscsi_bus.h", MAME_DIR .. "src/emu/machine/nscsi_cb.c", + MAME_DIR .. "src/emu/machine/nscsi_cb.h", MAME_DIR .. "src/emu/machine/nscsi_cd.c", + MAME_DIR .. "src/emu/machine/nscsi_cd.h", MAME_DIR .. "src/emu/machine/nscsi_hd.c", + MAME_DIR .. "src/emu/machine/nscsi_hd.h", MAME_DIR .. "src/emu/machine/nscsi_s1410.c", + MAME_DIR .. "src/emu/machine/nscsi_s1410.h", } end @@ -1483,6 +1636,7 @@ end if (MACHINES["PCF8593"]~=null) then files { MAME_DIR .. "src/emu/machine/pcf8593.c", + MAME_DIR .. "src/emu/machine/pcf8593.h", } end @@ -1494,6 +1648,7 @@ end if (MACHINES["LPCI"]~=null) then files { MAME_DIR .. "src/emu/machine/lpci.c", + MAME_DIR .. "src/emu/machine/lpci.h", } end @@ -1505,18 +1660,31 @@ end if (MACHINES["PCI"]~=null) then files { MAME_DIR .. "src/emu/machine/pci.c", + MAME_DIR .. "src/emu/machine/pci.h", MAME_DIR .. "src/emu/machine/pci-usb.c", + MAME_DIR .. "src/emu/machine/pci-usb.h", MAME_DIR .. "src/emu/machine/pci-sata.c", + MAME_DIR .. "src/emu/machine/pci-sata.h", MAME_DIR .. "src/emu/machine/pci-apic.c", + MAME_DIR .. "src/emu/machine/pci-apic.h", MAME_DIR .. "src/emu/machine/pci-smbus.c", + MAME_DIR .. "src/emu/machine/pci-smbus.h", MAME_DIR .. "src/emu/machine/i82541.c", + MAME_DIR .. "src/emu/machine/i82541.h", MAME_DIR .. "src/emu/machine/i82875p.c", + MAME_DIR .. "src/emu/machine/i82875p.h", MAME_DIR .. "src/emu/machine/i6300esb.c", + MAME_DIR .. "src/emu/machine/i6300esb.h", MAME_DIR .. "src/emu/machine/lpc.c", + MAME_DIR .. "src/emu/machine/lpc.h", MAME_DIR .. "src/emu/machine/lpc-acpi.c", + MAME_DIR .. "src/emu/machine/lpc-acpi.h", MAME_DIR .. "src/emu/machine/lpc-rtc.c", + MAME_DIR .. "src/emu/machine/lpc-rtc.h", MAME_DIR .. "src/emu/machine/lpc-pit.c", + MAME_DIR .. "src/emu/machine/lpc-pit.h", MAME_DIR .. "src/emu/machine/vrc4373.c", + MAME_DIR .. "src/emu/machine/vrc4373.h", } end @@ -1528,6 +1696,7 @@ end if (MACHINES["PCKEYBRD"]~=null) then files { MAME_DIR .. "src/emu/machine/pckeybrd.c", + MAME_DIR .. "src/emu/machine/pckeybrd.h", } end @@ -1539,6 +1708,7 @@ end if (MACHINES["PIC8259"]~=null) then files { MAME_DIR .. "src/emu/machine/pic8259.c", + MAME_DIR .. "src/emu/machine/pic8259.h", } end @@ -1550,6 +1720,7 @@ end if (MACHINES["PIT8253"]~=null) then files { MAME_DIR .. "src/emu/machine/pit8253.c", + MAME_DIR .. "src/emu/machine/pit8253.h", } end @@ -1561,6 +1732,7 @@ end if (MACHINES["PLA"]~=null) then files { MAME_DIR .. "src/emu/machine/pla.c", + MAME_DIR .. "src/emu/machine/pla.h", } end @@ -1572,6 +1744,7 @@ end if (MACHINES["R10696"]~=null) then files { MAME_DIR .. "src/emu/machine/r10696.c", + MAME_DIR .. "src/emu/machine/r10696.h", } end @@ -1583,6 +1756,7 @@ end if (MACHINES["R10788"]~=null) then files { MAME_DIR .. "src/emu/machine/r10788.c", + MAME_DIR .. "src/emu/machine/r10788.h", } end @@ -1594,6 +1768,7 @@ end if (MACHINES["RA17XX"]~=null) then files { MAME_DIR .. "src/emu/machine/ra17xx.c", + MAME_DIR .. "src/emu/machine/ra17xx.h", } end @@ -1606,6 +1781,7 @@ if (MACHINES["RF5C296"]~=null) then MACHINES["PCCARD"] = true files { MAME_DIR .. "src/emu/machine/rf5c296.c", + MAME_DIR .. "src/emu/machine/rf5c296.h", } end @@ -1617,6 +1793,7 @@ end if (MACHINES["ROC10937"]~=null) then files { MAME_DIR .. "src/emu/machine/roc10937.c", + MAME_DIR .. "src/emu/machine/roc10937.h", } end @@ -1628,6 +1805,7 @@ end if (MACHINES["RP5C01"]~=null) then files { MAME_DIR .. "src/emu/machine/rp5c01.c", + MAME_DIR .. "src/emu/machine/rp5c01.h", } end @@ -1639,6 +1817,7 @@ end if (MACHINES["RP5C15"]~=null) then files { MAME_DIR .. "src/emu/machine/rp5c15.c", + MAME_DIR .. "src/emu/machine/rp5c15.h", } end @@ -1650,6 +1829,7 @@ end if (MACHINES["RP5H01"]~=null) then files { MAME_DIR .. "src/emu/machine/rp5h01.c", + MAME_DIR .. "src/emu/machine/rp5h01.h", } end @@ -1661,6 +1841,7 @@ end if (MACHINES["R64H156"]~=null) then files { MAME_DIR .. "src/emu/machine/64h156.c", + MAME_DIR .. "src/emu/machine/64h156.h", } end @@ -1672,6 +1853,7 @@ end if (MACHINES["RTC4543"]~=null) then files { MAME_DIR .. "src/emu/machine/rtc4543.c", + MAME_DIR .. "src/emu/machine/rtc4543.h", } end @@ -1683,6 +1865,7 @@ end if (MACHINES["RTC65271"]~=null) then files { MAME_DIR .. "src/emu/machine/rtc65271.c", + MAME_DIR .. "src/emu/machine/rtc65271.h", } end @@ -1694,6 +1877,7 @@ end if (MACHINES["RTC9701"]~=null) then files { MAME_DIR .. "src/emu/machine/rtc9701.c", + MAME_DIR .. "src/emu/machine/rtc9701.h", } end @@ -1705,6 +1889,7 @@ end if (MACHINES["S2636"]~=null) then files { MAME_DIR .. "src/emu/machine/s2636.c", + MAME_DIR .. "src/emu/machine/s2636.h", } end @@ -1716,6 +1901,7 @@ end if (MACHINES["S3520CF"]~=null) then files { MAME_DIR .. "src/emu/machine/s3520cf.c", + MAME_DIR .. "src/emu/machine/s3520cf.h", } end @@ -1727,6 +1913,8 @@ end if (MACHINES["S3C2400"]~=null) then files { MAME_DIR .. "src/emu/machine/s3c2400.c", + MAME_DIR .. "src/emu/machine/s3c2400.h", + MAME_DIR .. "src/emu/machine/s3c24xx.inc", } end @@ -1738,6 +1926,8 @@ end if (MACHINES["S3C2410"]~=null) then files { MAME_DIR .. "src/emu/machine/s3c2410.c", + MAME_DIR .. "src/emu/machine/s3c2410.h", + MAME_DIR .. "src/emu/machine/s3c24xx.inc", } end @@ -1749,6 +1939,7 @@ end if (MACHINES["S3C44B0"]~=null) then files { MAME_DIR .. "src/emu/machine/s3c44b0.c", + MAME_DIR .. "src/emu/machine/s3c44b0.h", } end @@ -1760,6 +1951,8 @@ end if (MACHINES["S3C2440"]~=null) then files { MAME_DIR .. "src/emu/machine/s3c2440.c", + MAME_DIR .. "src/emu/machine/s3c2440.h", + MAME_DIR .. "src/emu/machine/s3c24xx.inc", } end @@ -1782,6 +1975,7 @@ end if (MACHINES["SERFLASH"]~=null) then files { MAME_DIR .. "src/emu/machine/serflash.c", + MAME_DIR .. "src/emu/machine/serflash.h", } end @@ -1793,6 +1987,7 @@ end if (MACHINES["SMC91C9X"]~=null) then files { MAME_DIR .. "src/emu/machine/smc91c9x.c", + MAME_DIR .. "src/emu/machine/smc91c9x.h", } end @@ -1804,6 +1999,7 @@ end if (MACHINES["SMPC"]~=null) then files { MAME_DIR .. "src/emu/machine/smpc.c", + MAME_DIR .. "src/emu/machine/smpc.h", } end @@ -1830,8 +2026,11 @@ end if (MACHINES["T10"]~=null) then files { MAME_DIR .. "src/emu/machine/t10mmc.c", + MAME_DIR .. "src/emu/machine/t10mmc.h", MAME_DIR .. "src/emu/machine/t10sbc.c", + MAME_DIR .. "src/emu/machine/t10sbc.h", MAME_DIR .. "src/emu/machine/t10spc.c", + MAME_DIR .. "src/emu/machine/t10spc.h", } end @@ -1843,6 +2042,7 @@ end if (MACHINES["TC0091LVC"]~=null) then files { MAME_DIR .. "src/emu/machine/tc009xlvc.c", + MAME_DIR .. "src/emu/machine/tc009xlvc.h", } end @@ -1854,6 +2054,7 @@ end if (MACHINES["TIMEKPR"]~=null) then files { MAME_DIR .. "src/emu/machine/timekpr.c", + MAME_DIR .. "src/emu/machine/timekpr.h", } end @@ -1865,6 +2066,7 @@ end if (MACHINES["TMP68301"]~=null) then files { MAME_DIR .. "src/emu/machine/tmp68301.c", + MAME_DIR .. "src/emu/machine/tmp68301.h", } end @@ -1876,6 +2078,7 @@ end if (MACHINES["TMS5501"]~=null) then files { MAME_DIR .. "src/emu/machine/tms5501.c", + MAME_DIR .. "src/emu/machine/tms5501.h", } end @@ -1887,6 +2090,7 @@ end if (MACHINES["TMS6100"]~=null) then files { MAME_DIR .. "src/emu/machine/tms6100.c", + MAME_DIR .. "src/emu/machine/tms6100.h", } end @@ -1898,6 +2102,7 @@ end if (MACHINES["TMS9901"]~=null) then files { MAME_DIR .. "src/emu/machine/tms9901.c", + MAME_DIR .. "src/emu/machine/tms9901.h", } end @@ -1909,6 +2114,7 @@ end if (MACHINES["TMS9902"]~=null) then files { MAME_DIR .. "src/emu/machine/tms9902.c", + MAME_DIR .. "src/emu/machine/tms9902.h", } end @@ -1920,6 +2126,7 @@ end if (MACHINES["UPD1990A"]~=null) then files { MAME_DIR .. "src/emu/machine/upd1990a.c", + MAME_DIR .. "src/emu/machine/upd1990a.h", } end @@ -1931,6 +2138,7 @@ end if (MACHINES["UPD4992"]~=null) then files { MAME_DIR .. "src/emu/machine/upd4992.c", + MAME_DIR .. "src/emu/machine/upd4992.h", } end @@ -1943,6 +2151,7 @@ end if (MACHINES["UPD4701"]~=null) then files { MAME_DIR .. "src/emu/machine/upd4701.c", + MAME_DIR .. "src/emu/machine/upd4701.h", } end @@ -1954,6 +2163,7 @@ end if (MACHINES["UPD7002"]~=null) then files { MAME_DIR .. "src/emu/machine/upd7002.c", + MAME_DIR .. "src/emu/machine/upd7002.h", } end @@ -1965,6 +2175,7 @@ end if (MACHINES["UPD71071"]~=null) then files { MAME_DIR .. "src/emu/machine/upd71071.c", + MAME_DIR .. "src/emu/machine/upd71071.h", } end @@ -1976,6 +2187,7 @@ end if (MACHINES["UPD765"]~=null) then files { MAME_DIR .. "src/emu/machine/upd765.c", + MAME_DIR .. "src/emu/machine/upd765.h", } end @@ -1987,6 +2199,7 @@ end if (MACHINES["V3021"]~=null) then files { MAME_DIR .. "src/emu/machine/v3021.c", + MAME_DIR .. "src/emu/machine/v3021.h", } end @@ -1998,7 +2211,9 @@ end if (MACHINES["WD_FDC"]~=null) then files { MAME_DIR .. "src/emu/machine/wd_fdc.c", + MAME_DIR .. "src/emu/machine/wd_fdc.h", MAME_DIR .. "src/emu/machine/fdc_pll.c", + MAME_DIR .. "src/emu/machine/fdc_pll.h", } end @@ -2010,6 +2225,7 @@ end if (MACHINES["WD11C00_17"]~=null) then files { MAME_DIR .. "src/emu/machine/wd11c00_17.c", + MAME_DIR .. "src/emu/machine/wd11c00_17.h", } end @@ -2021,6 +2237,7 @@ end if (MACHINES["WD17XX"]~=null) then files { MAME_DIR .. "src/emu/machine/wd17xx.c", + MAME_DIR .. "src/emu/machine/wd17xx.h", } end @@ -2032,6 +2249,7 @@ end if (MACHINES["WD2010"]~=null) then files { MAME_DIR .. "src/emu/machine/wd2010.c", + MAME_DIR .. "src/emu/machine/wd2010.h", } end @@ -2044,6 +2262,7 @@ if (MACHINES["WD33C93"]~=null) then MACHINES["SCSI"] = true files { MAME_DIR .. "src/emu/machine/wd33c93.c", + MAME_DIR .. "src/emu/machine/wd33c93.h", } end @@ -2055,6 +2274,7 @@ end if (MACHINES["WD7600"]~=null) then files { MAME_DIR .. "src/emu/machine/wd7600.c", + MAME_DIR .. "src/emu/machine/wd7600.h", } end @@ -2066,6 +2286,7 @@ end if (MACHINES["X2212"]~=null) then files { MAME_DIR .. "src/emu/machine/x2212.c", + MAME_DIR .. "src/emu/machine/x2212.h", } end @@ -2077,6 +2298,7 @@ end if (MACHINES["X76F041"]~=null) then files { MAME_DIR .. "src/emu/machine/x76f041.c", + MAME_DIR .. "src/emu/machine/x76f041.h", } end @@ -2088,6 +2310,7 @@ end if (MACHINES["X76F100"]~=null) then files { MAME_DIR .. "src/emu/machine/x76f100.c", + MAME_DIR .. "src/emu/machine/x76f100.h", } end @@ -2099,6 +2322,7 @@ end if (MACHINES["YM2148"]~=null) then files { MAME_DIR .. "src/emu/machine/ym2148.c", + MAME_DIR .. "src/emu/machine/ym2148.h", } end @@ -2110,6 +2334,7 @@ end if (MACHINES["Z80CTC"]~=null) then files { MAME_DIR .. "src/emu/machine/z80ctc.c", + MAME_DIR .. "src/emu/machine/z80ctc.h", } end @@ -2121,6 +2346,7 @@ end if (MACHINES["Z80DART"]~=null) then files { MAME_DIR .. "src/emu/machine/z80dart.c", + MAME_DIR .. "src/emu/machine/z80dart.h", } end @@ -2132,6 +2358,7 @@ end if (MACHINES["Z80DMA"]~=null) then files { MAME_DIR .. "src/emu/machine/z80dma.c", + MAME_DIR .. "src/emu/machine/z80dma.h", } end @@ -2143,6 +2370,7 @@ end if (MACHINES["Z80PIO"]~=null) then files { MAME_DIR .. "src/emu/machine/z80pio.c", + MAME_DIR .. "src/emu/machine/z80pio.h", } end @@ -2154,6 +2382,7 @@ end if (MACHINES["Z80STI"]~=null) then files { MAME_DIR .. "src/emu/machine/z80sti.c", + MAME_DIR .. "src/emu/machine/z80sti.h", } end @@ -2165,6 +2394,7 @@ end if (MACHINES["Z8536"]~=null) then files { MAME_DIR .. "src/emu/machine/z8536.c", + MAME_DIR .. "src/emu/machine/z8536.h", } end @@ -2176,6 +2406,7 @@ end if (MACHINES["PCCARD"]~=null) then files { MAME_DIR .. "src/emu/machine/pccard.c", + MAME_DIR .. "src/emu/machine/pccard.h", } end @@ -2187,7 +2418,9 @@ end if (MACHINES["I8255"]~=null) then files { MAME_DIR .. "src/emu/machine/i8255.c", + MAME_DIR .. "src/emu/machine/i8255.h", MAME_DIR .. "src/emu/machine/mb89363b.c", + MAME_DIR .. "src/emu/machine/mb89363b.h", } end @@ -2199,6 +2432,7 @@ end if (MACHINES["NCR5380"]~=null) then files { MAME_DIR .. "src/emu/machine/ncr5380.c", + MAME_DIR .. "src/emu/machine/ncr5380.h", } end @@ -2210,6 +2444,7 @@ end if (MACHINES["NCR5380N"]~=null) then files { MAME_DIR .. "src/emu/machine/ncr5380n.c", + MAME_DIR .. "src/emu/machine/ncr5380n.h", } end @@ -2221,6 +2456,7 @@ end if (MACHINES["NCR5390"]~=null) then files { MAME_DIR .. "src/emu/machine/ncr5390.c", + MAME_DIR .. "src/emu/machine/ncr5390.h", } end @@ -2232,6 +2468,7 @@ end if (MACHINES["MM58167"]~=null) then files { MAME_DIR .. "src/emu/machine/mm58167.c", + MAME_DIR .. "src/emu/machine/mm58167.h", } end @@ -2244,6 +2481,7 @@ end if (MACHINES["DP8390"]~=null) then files { MAME_DIR .. "src/emu/machine/dp8390.c", + MAME_DIR .. "src/emu/machine/dp8390.h", } end @@ -2255,6 +2493,7 @@ end if (MACHINES["PC_LPT"]~=null) then files { MAME_DIR .. "src/emu/machine/pc_lpt.c", + MAME_DIR .. "src/emu/machine/pc_lpt.h", } end @@ -2266,6 +2505,7 @@ end if (MACHINES["PC_FDC"]~=null) then files { MAME_DIR .. "src/emu/machine/pc_fdc.c", + MAME_DIR .. "src/emu/machine/pc_fdc.h", } end @@ -2277,6 +2517,7 @@ end if (MACHINES["MPU401"]~=null) then files { MAME_DIR .. "src/emu/machine/mpu401.c", + MAME_DIR .. "src/emu/machine/mpu401.h", } end @@ -2288,6 +2529,7 @@ end if (MACHINES["AT_KEYBC"]~=null) then files { MAME_DIR .. "src/emu/machine/at_keybc.c", + MAME_DIR .. "src/emu/machine/at_keybc.h", } end @@ -2299,6 +2541,7 @@ end if (MACHINES["SMC92X4"]~=null) then files { MAME_DIR .. "src/emu/machine/smc92x4.c", + MAME_DIR .. "src/emu/machine/smc92x4.h", } end @@ -2310,6 +2553,7 @@ end if (MACHINES["HDC9234"]~=null) then files { MAME_DIR .. "src/emu/machine/hdc9234.c", + MAME_DIR .. "src/emu/machine/hdc9234.h", } end @@ -2321,6 +2565,7 @@ end if (MACHINES["TI99_HD"]~=null) then files { MAME_DIR .. "src/emu/machine/ti99_hd.c", + MAME_DIR .. "src/emu/machine/ti99_hd.h", } end @@ -2332,6 +2577,7 @@ end if (MACHINES["STRATA"]~=null) then files { MAME_DIR .. "src/emu/machine/strata.c", + MAME_DIR .. "src/emu/machine/strata.h", } end @@ -2343,6 +2589,7 @@ end if (MACHINES["STEPPERS"]~=null) then files { MAME_DIR .. "src/emu/machine/steppers.c", + MAME_DIR .. "src/emu/machine/steppers.h", } end @@ -2353,6 +2600,7 @@ end if (MACHINES["CORVUSHD"]~=null) then files { MAME_DIR .. "src/emu/machine/corvushd.c", + MAME_DIR .. "src/emu/machine/corvushd.h", } end @@ -2363,6 +2611,7 @@ end if (MACHINES["WOZFDC"]~=null) then files { MAME_DIR .. "src/emu/machine/wozfdc.c", + MAME_DIR .. "src/emu/machine/wozfdc.h", } end @@ -2373,6 +2622,7 @@ end if (MACHINES["DIABLO_HD"]~=null) then files { MAME_DIR .. "src/emu/machine/diablo_hd.c", + MAME_DIR .. "src/emu/machine/diablo_hd.h", } end @@ -2384,5 +2634,6 @@ end if (MACHINES["FDC37C665GT"]~=null) then files { MAME_DIR .. "src/emu/machine/fdc37c665gt.c", + MAME_DIR .. "src/emu/machine/fdc37c665gt.h", } end |