* Added decryption setups for Puzz Ball, Tsukkomi Yousei Gips Nice Tsukkomi, and Taiko no Tatsujin 2, 4, and 6. [Samuel Neves, Peter Wilhelmsen]
* Added some notes about the MEM(P3) board.
* Re-dumped Point Blank 3. [Guru]
* machine/t10mmc.cpp: Added preliminary implementation of “read CD” (0xBE) command.
* cpu/psx/rcnt.cpp: Implemented reached 0xFFFF and reached target bits in counter mode register.
New systems marked not working
---------------------------------
Seishun-Quiz Colorful High School (CHS1 Ver.A) [Guru]
* video/huc6272.cpp: modernize handler interface
* machine/t10mmc.cpp: avoid a stack overflow if device can't read CD data, allows PC-FX menu to be useable (with CD in ...)
* video/huc6272.cpp: fix m_bg save state registration, add stub logmacro.h, misc cleanups
-sound/discrete, okim6295: Removed MCFG macros. [Ryan Holtz]
-norautp, osi, audio/mario: Removed MACHINE_CONFIG macros. [Ryan Holtz]
-vsmile: Split into its own driver from vii.cpp. [Ryan Holtz]
-vii: Fixed broken controller inputs. [Ryan Holtz]
-konamim2: Massive update. Most games work, but are still marked non-working due to rare MAME crashes in the PPC DRC. [Phil Bennett, Ryan Holtz]
(kokoroj2 needs mods in the MB89352 core that won't break x68k as well.
kokoroj2 requires the printer interface: a command to stop current track is sent with CD & printer disabled in dip-switches.
As for x68k, installing HumanOS on HDD fails with current too so there's a lot of fun factor here)
Per Vas' request. If the compile fails for you (i'm thinking osx and
windows native debuggers here in particular), add '#include "emu.h"'
as first include of the cpp files that fail.
Due to our use of precompilation and forced inclusion, emu.h must be
included as the very first non-comment thing we do if we want to be
sure msvc compiles are identical to gcc/clang ones. Doing it directly
instead of through an include increases the correctness probability by
a magnitude.
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8