fixed apple2 compile (nw)

This commit is contained in:
Miodrag Milanovic 2016-05-01 14:02:26 +02:00
parent da4b415228
commit 77b6c7e3c5
11 changed files with 53 additions and 7 deletions

View File

@ -2841,4 +2841,36 @@ if (MACHINES["SMARTMEDIA"]~=null) then
MAME_DIR .. "src/devices/machine/smartmed.cpp",
MAME_DIR .. "src/devices/machine/smartmed.h",
}
end
end
---------------------------------------------------
--
--@src/devices/machine/appldriv.h,MACHINES["APPLE_DRIVE"] = true
---------------------------------------------------
if (MACHINES["APPLE_DRIVE"]~=null) then
files {
MAME_DIR .. "src/devices/machine/appldriv.cpp",
MAME_DIR .. "src/devices/machine/appldriv.h",
}
end
---------------------------------------------------
--
--@src/devices/machine/applefdc.h,MACHINES["APPLE_FDC"] = true
---------------------------------------------------
if (MACHINES["APPLE_FDC"]~=null) then
files {
MAME_DIR .. "src/devices/machine/applefdc.cpp",
MAME_DIR .. "src/devices/machine/applefdc.h",
}
end
---------------------------------------------------
--
--@src/devices/machine/sonydriv.h,MACHINES["SONY_DRIVE"] = true
---------------------------------------------------
if (MACHINES["SONY_DRIVE"]~=null) then
files {
MAME_DIR .. "src/devices/machine/sonydriv.cpp",
MAME_DIR .. "src/devices/machine/sonydriv.h",
}
end

View File

@ -3024,6 +3024,7 @@ files {
MAME_DIR .. "src/mame/machine/megadriv.cpp",
MAME_DIR .. "src/mame/includes/megadriv.h",
MAME_DIR .. "src/mame/drivers/megadrvb.cpp",
MAME_DIR .. "src/mame/includes/megadrvb.h",
MAME_DIR .. "src/mame/drivers/megaplay.cpp",
MAME_DIR .. "src/mame/drivers/megatech.cpp",
MAME_DIR .. "src/mame/drivers/model1.cpp",

View File

@ -579,6 +579,9 @@ MACHINES["GENPC"] = true
MACHINES["GEN_LATCH"] = true
MACHINES["WATCHDOG"] = true
MACHINES["SMARTMEDIA"] = true
MACHINES["APPLE_DRIVE"] = true
MACHINES["APPLE_FDC"] = true
MACHINES["SONY_DRIVE"] = true
--------------------------------------------------
-- specify available bus cores
@ -1071,14 +1074,8 @@ createMESSProjects(_target, _subtarget, "messshared")
files {
MAME_DIR .. "src/mame/audio/mea8000.cpp",
MAME_DIR .. "src/mame/audio/mea8000.h",
MAME_DIR .. "src/mame/machine/appldriv.cpp",
MAME_DIR .. "src/mame/machine/appldriv.h",
MAME_DIR .. "src/mame/machine/applefdc.cpp",
MAME_DIR .. "src/mame/machine/applefdc.h",
MAME_DIR .. "src/mame/machine/microdrv.cpp",
MAME_DIR .. "src/mame/machine/microdrv.h",
MAME_DIR .. "src/mame/machine/sonydriv.cpp",
MAME_DIR .. "src/mame/machine/sonydriv.h",
MAME_DIR .. "src/mame/machine/teleprinter.cpp",
MAME_DIR .. "src/mame/machine/teleprinter.h",
MAME_DIR .. "src/mame/machine/z80bin.cpp",
@ -1205,6 +1202,7 @@ files {
MAME_DIR .. "src/mame/drivers/apple2.cpp",
MAME_DIR .. "src/mame/includes/apple2.h",
MAME_DIR .. "src/mame/drivers/apple2e.cpp",
MAME_DIR .. "src/mame/includes/apple2e.h",
MAME_DIR .. "src/mame/machine/apple2.cpp",
MAME_DIR .. "src/mame/video/apple2.cpp",
MAME_DIR .. "src/mame/video/apple2.h",

View File

@ -46,6 +46,7 @@
#include "emu.h"
#include "cpu/g65816/g65816.h"
#include "includes/apple2.h"
#include "includes/apple2e.h"
#include "imagedev/flopdrv.h"
#include "formats/ap2_dsk.h"
#include "formats/ap_dsk35.h"

View File

@ -0,0 +1,14 @@
// license:BSD-3-Clause
// copyright-holders:R. Belmont
/***************************************************************************
includes/apple2e.h
***************************************************************************/
#ifndef APPLE2E_H_
#define APPLE2E_H_
INPUT_PORTS_EXTERN( apple2ep );
#endif /* APPLE2E_H_ */