mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
dec: reorganize and rename some device files
This commit is contained in:
parent
31f9807f4f
commit
c398cf3073
@ -4839,18 +4839,6 @@ if (MACHINES["AIC6250"]~=null) then
|
||||
}
|
||||
end
|
||||
|
||||
---------------------------------------------------
|
||||
--
|
||||
--@src/devices/machine/dc7085.h,MACHINES["DC7085"] = true
|
||||
---------------------------------------------------
|
||||
|
||||
if (MACHINES["DC7085"]~=null) then
|
||||
files {
|
||||
MAME_DIR .. "src/devices/machine/dc7085.cpp",
|
||||
MAME_DIR .. "src/devices/machine/dc7085.h",
|
||||
}
|
||||
end
|
||||
|
||||
---------------------------------------------------
|
||||
--
|
||||
--@src/devices/machine/i82357.h,MACHINES["I82357"] = true
|
||||
|
@ -1661,17 +1661,6 @@ if (VIDEOS["PS2GS"]~=null) then
|
||||
}
|
||||
end
|
||||
|
||||
--------------------------------------------------
|
||||
--
|
||||
--@src/devices/video/decsfb.h,VIDEOS["DECSFB"] = true
|
||||
--------------------------------------------------
|
||||
if (VIDEOS["DECSFB"]~=null) then
|
||||
files {
|
||||
MAME_DIR .. "src/devices/video/decsfb.cpp",
|
||||
MAME_DIR .. "src/devices/video/decsfb.h",
|
||||
}
|
||||
end
|
||||
|
||||
--------------------------------------------------
|
||||
--
|
||||
--@src/devices/video/bt47x.h,VIDEOS["BT47X"] = true
|
||||
|
@ -1,8 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:R. Belmont
|
||||
|
||||
#ifndef MAME_MACHINE_DC7085_H
|
||||
#define MAME_MACHINE_DC7085_H
|
||||
#ifndef MAME_DEC_DC7085_H
|
||||
#define MAME_DEC_DC7085_H
|
||||
|
||||
#pragma once
|
||||
|
||||
@ -110,4 +110,4 @@ private:
|
||||
DECLARE_DEVICE_TYPE(DC7085, dc7085_device)
|
||||
DECLARE_DEVICE_TYPE(DC7085_CHANNEL, dc7085_channel)
|
||||
|
||||
#endif // MAME_MACHINE_DC7085_H
|
||||
#endif // MAME_DEC_DC7085_H
|
@ -56,7 +56,7 @@
|
||||
#include "machine/ay31015.h"
|
||||
#include "machine/clock.h"
|
||||
#include "machine/com8116.h"
|
||||
#include "dec_lk201.h"
|
||||
#include "lk201.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
#include "machine/z80sio.h"
|
||||
#include "video/crt9007.h"
|
||||
|
@ -65,18 +65,19 @@
|
||||
#include "machine/mc146818.h"
|
||||
#include "machine/z80scc.h"
|
||||
#include "machine/ncr53c90.h"
|
||||
//#include "machine/dc7061.h"
|
||||
#include "machine/nscsi_bus.h"
|
||||
#include "bus/nscsi/cd.h"
|
||||
#include "bus/nscsi/hd.h"
|
||||
#include "dec_lk201.h"
|
||||
#include "machine/am79c90.h"
|
||||
#include "machine/dc7085.h"
|
||||
#include "bus/rs232/rs232.h"
|
||||
#include "screen.h"
|
||||
#include "video/bt47x.h"
|
||||
#include "video/bt459.h"
|
||||
#include "video/decsfb.h"
|
||||
|
||||
//#include "dc7061.h"
|
||||
#include "dc7085.h"
|
||||
#include "lk201.h"
|
||||
#include "sfb.h"
|
||||
|
||||
#include "kn01.lh"
|
||||
|
||||
|
@ -105,7 +105,7 @@ ________|D7 |D6 |D5 |D4 |D3 |D2 |D1 |D0
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
#include "dec_lk201.h"
|
||||
#include "lk201.h"
|
||||
#include "cpu/m6805/m6805.h"
|
||||
#include "speaker.h"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:R. Belmont, M. Burke
|
||||
#ifndef MAME_DEC_DEC_LK201_H
|
||||
#define MAME_DEC_DEC_LK201_H
|
||||
#ifndef MAME_DEC_LK201_H
|
||||
#define MAME_DEC_LK201_H
|
||||
|
||||
#pragma once
|
||||
|
||||
@ -129,4 +129,4 @@ private:
|
||||
// device type definition
|
||||
DECLARE_DEVICE_TYPE(LK201, lk201_device)
|
||||
|
||||
#endif // MAME_DEC_DEC_LK201_H
|
||||
#endif // MAME_DEC_LK201_H
|
@ -345,7 +345,7 @@ W17 pulls J1 serial port pin 1 to GND when set (chassis to logical GND).
|
||||
#include "bus/rs232/terminal.h"
|
||||
|
||||
#include "machine/i8251.h"
|
||||
#include "dec_lk201.h"
|
||||
#include "lk201.h"
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/ripple_counter.h"
|
||||
#include "machine/timer.h"
|
||||
@ -1267,7 +1267,7 @@ void rainbow_base_state::machine_reset()
|
||||
m_leds[5] = 1;
|
||||
m_leds[6] = 1;
|
||||
|
||||
// GREEN KEYBOARD LEDs (see machine/dec_lk201.cpp)
|
||||
// GREEN KEYBOARD LEDs (see dec/lk201.cpp)
|
||||
}
|
||||
|
||||
void rainbow_modela_state::machine_reset()
|
||||
|
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
#include "decsfb.h"
|
||||
#include "sfb.h"
|
||||
|
||||
#define MODE_SIMPLE 0
|
||||
#define MODE_OPAQUESTIPPLE 1
|
@ -1,8 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:R. Belmont
|
||||
|
||||
#ifndef MAME_VIDEO_DECSFB_H
|
||||
#define MAME_VIDEO_DECSFB_H
|
||||
#ifndef MAME_DEC_SFB_H
|
||||
#define MAME_DEC_SFB_H
|
||||
|
||||
#pragma once
|
||||
|
||||
@ -35,4 +35,4 @@ private:
|
||||
|
||||
DECLARE_DEVICE_TYPE(DECSFB, decsfb_device)
|
||||
|
||||
#endif // MAME_VIDEO_DECSFB_H
|
||||
#endif // MAME_DEC_SFB_H
|
@ -7,7 +7,7 @@
|
||||
****************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
#include "dec_lk201.h"
|
||||
#include "lk201.h"
|
||||
|
||||
#include "ms7004.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user