kaypro fix (nw)

This commit is contained in:
Miodrag Milanovic 2016-05-01 14:36:26 +02:00
parent 6a730f5c07
commit 41885e4203
4 changed files with 6 additions and 2 deletions

View File

@ -1901,6 +1901,7 @@ files {
MAME_DIR .. "src/mame/includes/kaypro.h", MAME_DIR .. "src/mame/includes/kaypro.h",
MAME_DIR .. "src/mame/machine/kaypro.cpp", MAME_DIR .. "src/mame/machine/kaypro.cpp",
MAME_DIR .. "src/mame/machine/kay_kbd.cpp", MAME_DIR .. "src/mame/machine/kay_kbd.cpp",
MAME_DIR .. "src/mame/machine/kay_kbd.h",
MAME_DIR .. "src/mame/video/kaypro.cpp", MAME_DIR .. "src/mame/video/kaypro.cpp",
} }

View File

@ -42,6 +42,7 @@
**************************************************************************************************/ **************************************************************************************************/
#include "includes/kaypro.h" #include "includes/kaypro.h"
#include "machine/kay_kbd.h"
#include "formats/kaypro_dsk.h" #include "formats/kaypro_dsk.h"
#include "softlist.h" #include "softlist.h"

View File

@ -106,5 +106,3 @@ private:
optional_device<mc6845_device> m_crtc; optional_device<mc6845_device> m_crtc;
required_device<beep_device> m_beep; required_device<beep_device> m_beep;
}; };
INPUT_PORTS_EXTERN( kay_kbd );

View File

@ -0,0 +1,4 @@
// license:BSD-3-Clause
// copyright-holders:Robbbert
INPUT_PORTS_EXTERN( kay_kbd );