From 338fe35dd7df45e7ac04bb8deb0bc30cbb4850a5 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 25 Jun 2017 19:54:19 +1000 Subject: pch.h isn't always implicit (nw) --- src/devices/bus/hp_dio/hp98544.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/bus/hp_dio/hp98544.cpp b/src/devices/bus/hp_dio/hp98544.cpp index 976ecd0f6b3..e2b4df56350 100644 --- a/src/devices/bus/hp_dio/hp98544.cpp +++ b/src/devices/bus/hp_dio/hp98544.cpp @@ -8,6 +8,7 @@ ***************************************************************************/ +#include "emu.h" #include "hp98544.h" #include "screen.h" -- cgit v1.2.3 From 563a90c6e619f9cc2c08b37832f50f6da65b6b02 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 25 Jun 2017 20:15:11 +1000 Subject: another one --- src/mame/drivers/socrates.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/socrates.cpp b/src/mame/drivers/socrates.cpp index 96894ef401a..7e5f5b97f55 100644 --- a/src/mame/drivers/socrates.cpp +++ b/src/mame/drivers/socrates.cpp @@ -80,8 +80,9 @@ TODO: ******************************************************************************/ -/* Core includes */ +#include "emu.h" #include "audio/socrates.h" + #include "cpu/z80/z80.h" #include "bus/generic/carts.h" -- cgit v1.2.3 From 838c8c8c51933f19c81649f8f5c203ffc07c3124 Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 25 Jun 2017 13:46:59 -0400 Subject: unidasm: Fix MC68HC11 disassembly --- src/tools/unidasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp index 6a53776ab17..72f4cc68856 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -273,7 +273,7 @@ static const dasm_table_entry dasm_table[] = // { "h8", _16be, 0, CPU_DISASSEMBLE_NAME(h8) }, // { "h8_24", _16be, 0, CPU_DISASSEMBLE_NAME(h8_24) }, // { "h8_32", _16be, 0, CPU_DISASSEMBLE_NAME(h8_32) }, - { "hc11", _8bit, 0, CPU_DISASSEMBLE_NAME(mb88) }, + { "hc11", _8bit, 0, CPU_DISASSEMBLE_NAME(hc11) }, { "hcd62121", _8bit, 0, CPU_DISASSEMBLE_NAME(hcd62121) }, { "hd61700", _8bit, 0, CPU_DISASSEMBLE_NAME(hd61700) }, { "hd6301", _8bit, 0, CPU_DISASSEMBLE_NAME(hd6301) }, -- cgit v1.2.3 From 1d9648b01c840b65622b5bfd1fdc16297f95d424 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Wed, 28 Jun 2017 09:19:31 +1000 Subject: version bump (nw) --- android-project/app/src/main/AndroidManifest.xml | 4 ++-- makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml index e01d3befbf9..694ee65c052 100644 --- a/android-project/app/src/main/AndroidManifest.xml +++ b/android-project/app/src/main/AndroidManifest.xml @@ -4,8 +4,8 @@ --> diff --git a/makefile b/makefile index b9d4a249824..9a3356a83bc 100644 --- a/makefile +++ b/makefile @@ -1546,14 +1546,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.186"' > $@ + @echo '#define BARE_BUILD_VERSION "0.187"' > $@ @echo 'extern const char bare_build_version[];' >> $@ @echo 'extern const char build_version[];' >> $@ @echo 'const char bare_build_version[] = BARE_BUILD_VERSION;' >> $@ @echo 'const char build_version[] = BARE_BUILD_VERSION " ($(NEW_GIT_VERSION))";' >> $@ else $(GENDIR)/version.cpp: $(GENDIR)/git_desc - @echo #define BARE_BUILD_VERSION "0.186" > $@ + @echo #define BARE_BUILD_VERSION "0.187" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ -- cgit v1.2.3