mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Merge remote-tracking branch 'mainline/release0237' into master
This commit is contained in:
commit
3026bb4bba
@ -45727,7 +45727,7 @@ license:CC0
|
||||
</part>
|
||||
</software>
|
||||
|
||||
<software name="wntgames">
|
||||
<software name="tgwinter">
|
||||
<description>The Games: Winter Edition (cleanly cracked)</description>
|
||||
<year>1985</year>
|
||||
<publisher>Epyx</publisher>
|
||||
|
@ -1586,13 +1586,13 @@ license:CC0
|
||||
|
||||
<part name="flop1" interface="floppy_3_5">
|
||||
<feature name="part_id" value="Disk 1"/>
|
||||
<dataarea name="flop" size="1296282">
|
||||
<dataarea name="flop" size="819264">
|
||||
<rom name="space quest ii - vohual's revenge iigs - disk 1 (trex crack).2mg" size="819264" crc="4d463103" sha1="50df27602f17af84e2a2e4e3b221bd87aa98dad0"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
<part name="flop2" interface="floppy_3_5">
|
||||
<feature name="part_id" value="Disk 2"/>
|
||||
<dataarea name="flop" size="1296282">
|
||||
<dataarea name="flop" size="819264">
|
||||
<rom name="space quest ii - vohual's revenge iigs - disk 2 (trex crack).2mg" size="819264" crc="809875fc" sha1="d90165d8c51d7d54d8a17c4082e8688048950389"/>
|
||||
</dataarea>
|
||||
</part>
|
||||
|
5
makefile
5
makefile
@ -1712,8 +1712,9 @@ genieclean:
|
||||
|
||||
clean: genieclean
|
||||
@echo Cleaning...
|
||||
-@rm -rf $(BUILDDIR)
|
||||
-@rm -rf 3rdparty/bgfx/.build
|
||||
-$(SILENT)rm -f language/*/*.mo
|
||||
-$(SILENT)rm -rf $(BUILDDIR)
|
||||
-$(SILENT)rm -rf 3rdparty/bgfx/.build
|
||||
|
||||
GEN_FOLDERS := $(GENDIR)/$(TARGET)/layout/ $(GENDIR)/$(TARGET)/$(SUBTARGET_FULL)/ $(GENDIR)/mame/drivers/ $(GENDIR)/mame/machine/
|
||||
|
||||
|
@ -4,7 +4,7 @@ local exports = {
|
||||
name = 'autofire',
|
||||
version = '0.0.4',
|
||||
description = 'Autofire plugin',
|
||||
license = 'The BSD 3-Clause License',
|
||||
license = 'BSD-3-Clause',
|
||||
author = { name = 'Jack Li' } }
|
||||
|
||||
local autofire = exports
|
||||
|
@ -68,7 +68,7 @@ local exports = {}
|
||||
exports.name = "cheat"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "Cheat plugin"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local cheat = exports
|
||||
|
@ -5,7 +5,7 @@ local exports = {}
|
||||
exports.name = "cheatfind"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "Cheat finder helper library"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local cheatfind = exports
|
||||
|
@ -5,7 +5,7 @@ local exports = {}
|
||||
exports.name = "console"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "Console plugin"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local console = exports
|
||||
|
@ -8,7 +8,7 @@ local exports = {}
|
||||
exports.name = "data"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "Data plugin"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local data = exports
|
||||
|
@ -4,7 +4,7 @@ local exports = {}
|
||||
exports.name = "discord"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "Discord presence"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local discord = exports
|
||||
|
@ -4,7 +4,7 @@ local exports = {
|
||||
name = "dummy",
|
||||
version = "0.0.1",
|
||||
description = "A dummy example",
|
||||
license = "The BSD 3-Clause License",
|
||||
license = "BSD-3-Clause",
|
||||
author = { name = "Miodrag Milanovic" }}
|
||||
|
||||
local dummy = exports
|
||||
|
@ -4,7 +4,7 @@ local exports = {}
|
||||
exports.name = "gdbstub"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "GDB stub plugin"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local gdbstub = exports
|
||||
|
@ -1,5 +1,5 @@
|
||||
-- hiscore.lua
|
||||
-- by borgar@borgar.net, WTFPL license
|
||||
-- by borgar@borgar.net, CC0 license
|
||||
--
|
||||
-- This uses MAME's built-in Lua scripting to implement
|
||||
-- high-score saving with hiscore.dat infom just as older
|
||||
@ -9,7 +9,7 @@ local exports = {
|
||||
name = 'hiscore',
|
||||
version = '1.0.0',
|
||||
description = 'Hiscore',
|
||||
license = 'WTFPL license',
|
||||
license = 'CC0',
|
||||
author = { name = 'borgar@borgar.net' } }
|
||||
|
||||
local hiscore = exports
|
||||
|
@ -4,7 +4,7 @@ local exports = {
|
||||
name = 'inputmacro',
|
||||
version = '0.0.1',
|
||||
description = 'Input macro plugin',
|
||||
license = 'The BSD 3-Clause License',
|
||||
license = 'BSD-3-Clause',
|
||||
author = { name = 'Vas Crabb' } }
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:Vas Crabb
|
||||
|
||||
|
||||
-- Constants
|
||||
|
||||
local MENU_TYPES = { MACROS = 0, ADD = 1, EDIT = 2, INPUT = 3 }
|
||||
|
@ -1,3 +1,7 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:Vas Crabb
|
||||
|
||||
|
||||
-- Helpers
|
||||
|
||||
local function settings_path()
|
||||
|
@ -6,7 +6,7 @@ local exports = {}
|
||||
exports.name = "layout"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "Layout helper plugin"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local layout = exports
|
||||
|
@ -21,7 +21,7 @@ local exports = {}
|
||||
exports.name = "portname"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "IOPort name/translation plugin"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local portname = exports
|
||||
|
@ -6,7 +6,7 @@ local exports = {}
|
||||
exports.name = "timer"
|
||||
exports.version = "0.0.2"
|
||||
exports.description = "Game play timer"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.license = "BSD-3-Clause"
|
||||
exports.author = { name = "Carl" }
|
||||
|
||||
local timer = exports
|
||||
|
Loading…
Reference in New Issue
Block a user