mirror of
https://github.com/holub/mame
synced 2025-07-01 08:18:59 +03:00
Merge branch 'master' of https://github.com/mamedev/mame
This commit is contained in:
commit
da9f165d4d
1
makefile
1
makefile
@ -341,7 +341,6 @@ endif
|
|||||||
ifdef PROFILE
|
ifdef PROFILE
|
||||||
PROFILER =
|
PROFILER =
|
||||||
SYMBOLS = 1
|
SYMBOLS = 1
|
||||||
OPTIMIZE = 3
|
|
||||||
ifndef SYMLEVEL
|
ifndef SYMLEVEL
|
||||||
SYMLEVEL = 1
|
SYMLEVEL = 1
|
||||||
endif
|
endif
|
||||||
|
@ -359,6 +359,22 @@ if (CPUS["ESRIP"]~=null or _OPTIONS["with-tools"]) then
|
|||||||
table.insert(disasm_files , MAME_DIR .. "src/emu/cpu/esrip/esripdsm.c")
|
table.insert(disasm_files , MAME_DIR .. "src/emu/cpu/esrip/esripdsm.c")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--------------------------------------------------
|
||||||
|
-- Seiko Epson E0C6200 series
|
||||||
|
---@src/emu/cpu/e0c6200/e0c6200.h,CPUS += E0C6200
|
||||||
|
--------------------------------------------------
|
||||||
|
|
||||||
|
if (CPUS["E0C6200"]~=null) then
|
||||||
|
files {
|
||||||
|
MAME_DIR .. "src/emu/cpu/e0c6200/e0c6200.c",
|
||||||
|
MAME_DIR .. "src/emu/cpu/e0c6200/e0c6200.h",
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
if (CPUS["E0C6200"]~=null or _OPTIONS["with-tools"]) then
|
||||||
|
table.insert(disasm_files , MAME_DIR .. "src/emu/cpu/e0c6200/e0c6200d.c")
|
||||||
|
end
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- RCA COSMAC
|
-- RCA COSMAC
|
||||||
---@src/emu/cpu/cosmac/cosmac.h,CPUS += COSMAC
|
---@src/emu/cpu/cosmac/cosmac.h,CPUS += COSMAC
|
||||||
|
@ -100,7 +100,7 @@ CPUS["SM8500"] = true
|
|||||||
CPUS["MINX"] = true
|
CPUS["MINX"] = true
|
||||||
CPUS["SSEM"] = true
|
CPUS["SSEM"] = true
|
||||||
CPUS["AVR8"] = true
|
CPUS["AVR8"] = true
|
||||||
CPUS["TMS0980"] = true
|
--CPUS["TMS0980"] = true
|
||||||
CPUS["I4004"] = true
|
CPUS["I4004"] = true
|
||||||
CPUS["SUPERFX"] = true
|
CPUS["SUPERFX"] = true
|
||||||
CPUS["Z8"] = true
|
CPUS["Z8"] = true
|
||||||
@ -123,9 +123,10 @@ CPUS["ALTO2"] = true
|
|||||||
--CPUS["W65816"] = true
|
--CPUS["W65816"] = true
|
||||||
CPUS["ARC"] = true
|
CPUS["ARC"] = true
|
||||||
CPUS["ARCOMPACT"] = true
|
CPUS["ARCOMPACT"] = true
|
||||||
CPUS["AMIS2000"] = true
|
--CPUS["AMIS2000"] = true
|
||||||
CPUS["UCOM4"] = true
|
--CPUS["UCOM4"] = true
|
||||||
CPUS["HMCS40"] = true
|
CPUS["HMCS40"] = true
|
||||||
|
--CPUS["E0C6200"] = true
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- specify available sound cores
|
-- specify available sound cores
|
||||||
|
@ -103,7 +103,7 @@ CPUS["SUPERFX"] = true
|
|||||||
CPUS["Z8"] = true
|
CPUS["Z8"] = true
|
||||||
CPUS["I8008"] = true
|
CPUS["I8008"] = true
|
||||||
CPUS["SCMP"] = true
|
CPUS["SCMP"] = true
|
||||||
CPUS["MN10200"] = true
|
--CPUS["MN10200"] = true
|
||||||
CPUS["COSMAC"] = true
|
CPUS["COSMAC"] = true
|
||||||
CPUS["UNSP"] = true
|
CPUS["UNSP"] = true
|
||||||
CPUS["HCD62121"] = true
|
CPUS["HCD62121"] = true
|
||||||
@ -123,6 +123,7 @@ CPUS["ARCOMPACT"] = true
|
|||||||
CPUS["AMIS2000"] = true
|
CPUS["AMIS2000"] = true
|
||||||
CPUS["UCOM4"] = true
|
CPUS["UCOM4"] = true
|
||||||
CPUS["HMCS40"] = true
|
CPUS["HMCS40"] = true
|
||||||
|
CPUS["E0C6200"] = true
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- specify available sound cores; some of these are
|
-- specify available sound cores; some of these are
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
##
|
||||||
|
## license:BSD-3-Clause
|
||||||
|
## copyright-holders:Aaron Giles, Andrew Gardner
|
||||||
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
|
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
##
|
||||||
|
## license:BSD-3-Clause
|
||||||
|
## copyright-holders:Aaron Giles, Andrew Gardner
|
||||||
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
|
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
##
|
||||||
|
## license:BSD-3-Clause
|
||||||
|
## copyright-holders:Aaron Giles, Andrew Gardner
|
||||||
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
a1bus.c - Apple I slot bus and card emulation
|
a1bus.c - Apple I slot bus and card emulation
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
a1bus.h - Apple I expansion slot and card emulation
|
a1bus.h - Apple I expansion slot and card emulation
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2alfsm2.c
|
a2alfsm2.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2alfam2.h
|
a2alfam2.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2applicard.c
|
a2applicard.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2applicard.h
|
a2applicard.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2arcadeboard.c
|
a2arcadeboard.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2arcadebd.h
|
a2arcadebd.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2cffa.c
|
a2cffa.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2cffa.h
|
a2cffa.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2corvus.c
|
a2corvus.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2corvus.h
|
a2corvus.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2diskii.c
|
a2diskii.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2diskii.h
|
a2diskii.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2diskii.c
|
a2diskii.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2diskiing.h
|
a2diskiing.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
a2eauxslot.c - Apple IIe auxiliary slot and card emulation
|
a2eauxslot.c - Apple IIe auxiliary slot and card emulation
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
a2eauxslot.h - Apple IIe auxiliary slot and card emulation
|
a2eauxslot.h - Apple IIe auxiliary slot and card emulation
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2echoii.c
|
a2echoii.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2echoii.h
|
a2echoii.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2eext80col.c
|
a2eext80col.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2eext80col.c
|
a2eext80col.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2eramworks3.c
|
a2eramworks3.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2eramworks3.c
|
a2eramworks3.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2estd80col.c
|
a2estd80col.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2estd80col.c
|
a2estd80col.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2hsscsi.c
|
a2hsscsi.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2hsscsi.h
|
a2hsscsi.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2lang.c
|
a2lang.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2lang.h
|
a2lang.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2memexp.c
|
a2memexp.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2memexp.h
|
a2memexp.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2midi.c
|
a2midi.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2midi.h
|
a2midi.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2mockingboard.c
|
a2mockingboard.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2mockingboard.h
|
a2mockingboard.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2pic.c
|
a2pic.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2pic.h
|
a2pic.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2sam.c
|
a2sam.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2sam.h
|
a2sam.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2scsi.c
|
a2scsi.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2scsi.h
|
a2scsi.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2softcard.c
|
a2softcard.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2softcard.h
|
a2softcard.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2ssc.c
|
a2ssc.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2ssc.h
|
a2ssc.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2swyft.c
|
a2swyft.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2swyft.h
|
a2swyft.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2themill.c
|
a2themill.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2themill.h
|
a2themill.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2thunderclock.c
|
a2thunderclock.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2thunderclock.h
|
a2thunderclock.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2ultraterm.c
|
a2ultraterm.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2ultraterm.h
|
a2ultraterm.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2videoterm.c
|
a2videoterm.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2videoterm.h
|
a2videoterm.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2vulcan.c
|
a2vulcan.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2vulcan.h
|
a2vulcan.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2zipdrive.c
|
a2zipdrive.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a2zipdrive.h
|
a2zipdrive.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
corvfdc01.c
|
corvfdc01.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
corvfdc01.h
|
corvfdc01.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
corvfdc02.c
|
corvfdc02.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
corvfdc02.h
|
corvfdc02.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
ezcgi.c
|
ezcgi.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
ezcgi.h
|
ezcgi.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
laser128.c
|
laser128.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
laser128.h
|
laser128.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
mouse.c
|
mouse.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
mouse.h
|
mouse.h
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
timemasterho.c
|
timemasterho.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:???
|
||||||
|
// copyright-holders:???
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
timemasterho.h
|
timemasterho.h
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor ABC 890 bus expander emulation
|
Luxor ABC 890 bus expander emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#include "abc890.h"
|
#include "abc890.h"
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor ABC 890 bus expander emulation
|
Luxor ABC 890 bus expander emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor ABC (Databoard 4680) Bus emulation
|
Luxor ABC (Databoard 4680) Bus emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
|
||||||
#include "abcbus.h"
|
#include "abcbus.h"
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor ABC (Databoard 4680) Bus emulation
|
Luxor ABC (Databoard 4680) Bus emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
**********************************************************************
|
**********************************************************************
|
||||||
|
|
||||||
ABC 80
|
ABC 80
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Scandia Metric ABC FD2 floppy controller emulation
|
Scandia Metric ABC FD2 floppy controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Scandia Metric ABC FD2 floppy controller emulation
|
Scandia Metric ABC FD2 floppy controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor XEBEC Winchester controller card emulation
|
Luxor XEBEC Winchester controller card emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#include "hdc.h"
|
#include "hdc.h"
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor XEBEC Winchester controller card emulation
|
Luxor XEBEC Winchester controller card emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 55-10828 "slow" floppy disk controller emulation
|
Luxor 55-10828 "slow" floppy disk controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 55-10828 "slow" floppy disk controller emulation
|
Luxor 55-10828 "slow" floppy disk controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 55 21046-11/-21/-41 5.25"/8" Controller Card emulation
|
Luxor 55 21046-11/-21/-41 5.25"/8" Controller Card emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 55 21046-11/-21/-41 5.25"/8" Controller Card emulation
|
Luxor 55 21046-11/-21/-41 5.25"/8" Controller Card emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 55 21056-00 Xebec Interface Host Adapter emulation
|
Luxor 55 21056-00 Xebec Interface Host Adapter emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 55 21056-00 Xebec Interface Host Adapter emulation
|
Luxor 55 21056-00 Xebec Interface Host Adapter emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 4105 SASI hard disk controller emulation
|
Luxor 4105 SASI hard disk controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#include "lux4105.h"
|
#include "lux4105.h"
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor 4105 SASI hard disk controller emulation
|
Luxor 4105 SASI hard disk controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor ABC Memory Card 55 10762-01 emulation
|
Luxor ABC Memory Card 55 10762-01 emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
Luxor ABC Memory Card 55 10762-01 emulation
|
Luxor ABC Memory Card 55 10762-01 emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
ABC 80 16 KB RAM expansion card emulation
|
ABC 80 16 KB RAM expansion card emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#include "ram.h"
|
#include "ram.h"
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
ABC 80 16 KB RAM expansion card emulation
|
ABC 80 16 KB RAM expansion card emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
|
|
||||||
MyAB Turbo-Kontroller disk controller emulation
|
MyAB Turbo-Kontroller disk controller emulation
|
||||||
|
|
||||||
Copyright MESS Team.
|
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#include "turbo.h"
|
#include "turbo.h"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user