Note Feed

Note: GitHub retired the SVN interface on January 8, 2024.

Previous 50 199869 Revisions Next 50

r190707 Sunday 4th December, 2022 at 16:30:31 UTC by Angelo Salese
Refine notes, also batmanmv EGA mode thru VGA is a btanb
[/branches/ibm5150_qa/hash]ibm5150.xml
[/branches/ibm5150_qa/src/devices/video]pc_vga.cpp

r190706 Sunday 4th December, 2022 at 16:21:59 UTC by hap
highvdeo: make blit_ram writeonly
[src/mame/misc]highvdeo.cpp

r190705 Sunday 4th December, 2022 at 15:19:15 UTC by hap
combatscb: fix spriteram oob access
[src/mame/konami]combatsc.h combatsc_v.cpp

r190704 Sunday 4th December, 2022 at 14:53:19 UTC by hap
aerfboot: remove possible spriteram oob access
[src/mame/vsystem]aerofgt_v.cpp

r190703 Sunday 4th December, 2022 at 14:41:27 UTC by hap
exidy440_a: zerofill more class variables
[src/devices/cpu/m6502]rp2a03.cpp
[src/mame/exidy]exidy440.cpp exidy440_a.cpp exidy440_a.h

r190702 Sunday 4th December, 2022 at 14:12:47 UTC by wilbertpol
msx/slot/cartridge.cpp: Stop copying software memory region contents. (#10629)

* bus/msx/cart: Replaced fatal errors with image_init_result and a descriptive message.
[src/devices/bus/msx/beecard]beecard.cpp
[src/devices/bus/msx/cart]arc.cpp arc.h ascii.cpp ascii.h beepack.cpp beepack.h bm_012.h cartridge.cpp cartridge.h crossblaim.cpp crossblaim.h disk.cpp dooly.cpp dooly.h easi_speech.cpp easi_speech.h fmpac.cpp fmpac.h fs_sr022.cpp fs_sr022.h halnote.cpp halnote.h hfox.cpp hfox.h holy_quran.cpp holy_quran.h ink.cpp ink.h kanji.cpp kanji.h konami.cpp konami.h korean.cpp korean.h majutsushi.cpp majutsushi.h moonsound.h msx_audio.cpp msx_audio.h msxdos2.cpp msxdos2.h nomapper.cpp nomapper.h rtype.cpp rtype.h softcard.cpp softcard.h super_swangi.cpp super_swangi.h superloderunner.cpp superloderunner.h yamaha.h
[src/devices/bus/msx/slot]cartridge.cpp cartridge.h
[src/devices/bus/msx/softcard]softcard.cpp
[src/mame/msx]msx.cpp

r190701 Sunday 4th December, 2022 at 13:57:15 UTC by hap
dkong3: add soundcpu bus conflict
[src/mame/nintendo]dkong.cpp dkong.h dkong_a.cpp punchout.cpp

r190700 Sunday 4th December, 2022 at 13:24:51 UTC by eientei95
megadriv.xml: Added zero offset back for multi-ROM load commands, and corrected rockman1 cartridge type. (#10636)

Software list items promoted to working
----------------------------
megadriv.xml: Rockman Mega World (Japan, EEPROM) [eientei]
[hash]megadriv.xml

r190699 Sunday 4th December, 2022 at 13:20:24 UTC by 987123879113
konami/hornet: Fixed regression causing Teraburst's gun I/O to fail boot test. (#10637)
[src/mame/konami]hornet.cpp

r190698 Sunday 4th December, 2022 at 13:19:04 UTC by arcadeshadow
pcecd.xml: Don't abbreviate "Japan" in descriptions. (#10639)
[hash]pcecd.xml

r190697 Sunday 4th December, 2022 at 12:29:05 UTC by hap
rp2a03: don't read from unmapped apu regs
[src/devices/cpu/m6502]rp2a03.cpp rp2a03.h

r190696 Sunday 4th December, 2022 at 12:29:05 UTC by hap
zaccaria: small cleanup on prev commit
[src/mame/zaccaria]zaccaria.h zaccaria_v.cpp

r190695 Sunday 4th December, 2022 at 03:34:06 UTC by Angelo Salese
hash/ibm5150.xml: finalize QA for this round
[/branches/ibm5150_qa/hash]ibm5150.xml

r190694 Sunday 4th December, 2022 at 01:46:03 UTC by Angelo Salese
Merge branch 'master' into ibm5150_qa
[/branches/ibm5150_qa/hash]ibm5150.xml

r190693 Sunday 4th December, 2022 at 01:45:48 UTC by Angelo Salese
video/pc_vga.cpp: preliminary implemention for line_compare in vga_vh_ega mode
[/branches/ibm5150_qa/hash]ibm5150.xml
[/branches/ibm5150_qa/src/devices/video]pc_vga.cpp

r190692 Sunday 4th December, 2022 at 01:44:31 UTC by Angelo Salese
hash/ibm5150.xml: updates over bleeding edge
[/branches/ibm5150_qa/hash]ibm5150.xml

r190691 Sunday 4th December, 2022 at 01:45:48 UTC by Angelo Salese
video/pc_vga.cpp: preliminary implemention for line_compare in vga_vh_ega mode
[src/devices/video]pc_vga.cpp

r190690 Saturday 3rd December, 2022 at 21:39:08 UTC by Angelo Salese
Merge branch 'master' into ibm5150_qa
[/branches/ibm5150_qa/hash]ibm5150.xml

r190689 Saturday 3rd December, 2022 at 21:37:48 UTC by Angelo Salese
video/pc_vga.cpp: fix Read Mode 1 target color for comparison
* fixes at least transparent pen sprite-like in ibm5150:lombrall & ibm5150:intsocch and missing text in ibm5150:pcglobe sets
[/branches/ibm5150_qa/src/devices/video]pc_vga.cpp

r190688 Saturday 3rd December, 2022 at 21:29:17 UTC by AJR
mpu4vid.cpp: Fix bad logging format string
[/branches/ibm5150_qa/src/mame/barcrest]mpu4vid.cpp

r190687 Saturday 3rd December, 2022 at 18:12:00 UTC by tim.lindner
6x09 TFR / EXG Improvement (#10572)

Remove tuple implementation used by the EXG and TFR instructions of the 6809, 6309 and Konami CPUs. It was unnecessary because fundamentally these are implemented with a single, 16 bit wide temporary register.

Changed how the 6809 CPU processes the invalid 8 to/from 16 bit register combinations. Their behavior now matches actual hardware. I used page 66 and 138 of Darren Atkinson's 6x09 manual [1] for reference. I also double checked with my own hardware [2].

Checked for regressions using NitrOS-9 (6809 and 6309) on the CoCo, And Aliens and 88Games (Konami).
[/branches/ibm5150_qa/src/devices/cpu/m6809]hd6309.cpp hd6309.h hd6309.ops konami.cpp konami.h konami.ops m6809.cpp m6809.h m6809.ops

r190686 Saturday 3rd December, 2022 at 17:25:38 UTC by 987123879113
konami/hornet.cpp: Improvements for Silent Scope and Teraburst: (#10627)

* Implemented scope board ADC.
* Made the GN680 return gun controls for Teraburst.
* Added note about IRQ0 and IRQ1 bits in sysreg_w.
[/branches/ibm5150_qa/src/mame/konami]hornet.cpp

r190685 Saturday 3rd December, 2022 at 16:23:50 UTC by Vasantha Crabb
Fixed some errors in Brazilian Portuguese translation. [cd4053b, Wellington Uemura]
[/branches/ibm5150_qa/language/Portuguese_Brazil]strings.po

r190684 Saturday 3rd December, 2022 at 16:10:26 UTC by hap
zaccaria: fix cocktail mode [iq_132]
[/branches/ibm5150_qa/src/emu]tilemap.cpp
[/branches/ibm5150_qa/src/mame/namco]namcos22_v.cpp
[/branches/ibm5150_qa/src/mame/zaccaria]zaccaria.h zaccaria_v.cpp

r190683 Saturday 3rd December, 2022 at 15:02:35 UTC by michael.sanborn
dataeast/deco_mlc.cpp - Add Japanese subtitle to Skull Fang clones. (#10630)

This subtitle is found on both Asian and Japanese rom sets.
[/branches/ibm5150_qa/src/mame/dataeast]deco_mlc.cpp

r190682 Saturday 3rd December, 2022 at 12:08:25 UTC by hap
namcos22: apply prelim lighting to more games
[/branches/ibm5150_qa/src/mame/namco]namcos22.cpp namcos22_v.cpp

r190681 Saturday 3rd December, 2022 at 11:28:08 UTC by hap
hkittymp: add steering wheel [dink]
hkittymp: correct game title

Machine promoted to working
-------
Magical Pumpkin: Puroland de Daibouken (Japan 960712) [dink]
[/branches/ibm5150_qa/src/mame]mame.lst
[/branches/ibm5150_qa/src/mame/capcom]cps1.cpp cps1_v.cpp

r190680 Saturday 3rd December, 2022 at 09:40:58 UTC by Osso
New working clones
------------------
Slots (Belgian Token, Game Card 95-750-452) [Gerald (COY)]
[/branches/ibm5150_qa/src/mame]mame.lst
[/branches/ibm5150_qa/src/mame/bfm]bfm_sc2.cpp

r190679 Saturday 3rd December, 2022 at 09:24:39 UTC by Osso
New machines marked as NOT_WORKING
----------------------------------
Name Club Disney (J 980614 V1.000) [Darksoft, TeamEurope]

New NOT_WORKING software list additions
---------------------------------------
Name Club Disney (J 980614 V1.000) [Darksoft, TeamEurope]
[/branches/ibm5150_qa/hash]stv.xml
[/branches/ibm5150_qa/src/mame]mame.lst
[/branches/ibm5150_qa/src/mame/sega]stv.cpp

r190678 Saturday 3rd December, 2022 at 02:52:57 UTC by AJR
unidasm: Add IBM 1800, IBM 1130 and (DG) Nova disassemblers
[/branches/ibm5150_qa/scripts/src]cpu.lua
[/branches/ibm5150_qa/src/devices/cpu/ibm1800]ibm1800d.cpp* ibm1800d.h*
[/branches/ibm5150_qa/src/devices/cpu/nova]novadasm.cpp* novadasm.h*
[/branches/ibm5150_qa/src/tools]unidasm.cpp

r190677 Friday 2nd December, 2022 at 20:39:08 UTC by b0x.cub3d
konmedal.cpp: correct the K051649 audio clocks (#10625)
[/branches/ibm5150_qa/src/mame/konami]konmedal.cpp

r190676 Friday 2nd December, 2022 at 15:46:39 UTC by wilbertpol
bus/msx: Added support for Hudson Soft Bee Card and Electric Software Astron Softcard media. (#10610)

* Copied or moved Bee Cards entries from msx1_cart.xml to msx1_bee_card.xml.
* Copied or moved SoftCard entries from msx1_cart.xml to msx_softcard.xml.
[/branches/ibm5150_qa/hash]msx1_bee_card.xml* msx1_cart.xml msx_softcard.xml*
[/branches/ibm5150_qa/scripts/src]bus.lua
[/branches/ibm5150_qa/src/devices/bus/msx/beecard]beecard.cpp* beecard.h*
[/branches/ibm5150_qa/src/devices/bus/msx/cart]beepack.cpp* beepack.h* cartridge.cpp softcard.cpp* softcard.h*
[/branches/ibm5150_qa/src/devices/bus/msx/slot]cartridge.cpp
[/branches/ibm5150_qa/src/devices/bus/msx/softcard]softcard.cpp* softcard.h*

r190675 Friday 2nd December, 2022 at 15:33:40 UTC by arcadeshadow
sega_beena_cart.xml: Use lowercase for things that aren't proper nouns in name. (#10527)
[/branches/ibm5150_qa/hash]sega_beena_cart.xml

r190674 Friday 2nd December, 2022 at 15:31:27 UTC by r09
x68k_flop.xml: Added twelve dumps from original disks, and removed load offsets. (#10621)

* Renamed existing dumps to "cracked".
* Changed some part_ids to reflect the actual disk labels.
* Added usage notes for Death Bringer.

New working software list additions (x68k_flop.xml)
-----------------------------------
Casablanca ni Ai o - Satsujin-sha wa Jikuu o Koete [krugman]
Death Bringer [krugman]
Dome [krugman]
Emerald Dragon [krugman]
Genocide 2 - Master of the Dark Communion [krugman]
Signatory - Chouinsha [krugman]
The Hot File Express (1991-12-24) [krugman]
The Hot File Express (1993-10-28) [krugman]
Tritorn Final [krugman]
Warning Type 68 [krugman]

New not working software list additions (x68k_flop.xml)
---------------------------------------
38 Man Kilo no Kokuu [krugman]
Soft de Hard na Monogatari II [krugman]
[/branches/ibm5150_qa/hash]x68k_flop.xml

r190673 Friday 2nd December, 2022 at 13:52:00 UTC by 0kmg
snes.xml: Put a couple holiday homebrews in your SNES stocking. (#10611)

New working software list additions (snes.xml)
-----------------------------------
16 Bit Xmas 2011 - Christmas Craze (USA) [retroUSB]
16 Bit Xmas 2012 - Snowball Fight (USA) [retroUSB]
[/branches/ibm5150_qa/hash]snes.xml

r190672 Friday 2nd December, 2022 at 13:42:44 UTC by Vasantha Crabb
ekara_japan_a.xml: Added the final known un-dumped A series cartridge.

Also added "Mermaid Melody" to titles for first three cartridges as it's
on the title screen and cartridge label in gold text (it may be there
for the others as well, but I haven't checked).

New NOT_WORKING software list items
-----------------------------------
ekara_japan_a: A-2 Mermaid Melody Pichi Pichi Pitch vol.2 [WingedPikPik, TeamEurope]
[/branches/ibm5150_qa/hash]ekara_japan_a.xml

r190671 Friday 2nd December, 2022 at 13:29:19 UTC by wilbertpol
video/v9938.cpp: Implemented V9958 registers 26 and 27 for graphic23 and graphic4 modes. (#10619)

Fixes MT08466.
[/branches/ibm5150_qa/src/devices/video]v9938.cpp

r190670 Friday 2nd December, 2022 at 13:09:56 UTC by 0kmg
Fixed some misspelling occurrences here and there. (#10605)
[/branches/ibm5150_qa/hash]apple2gs_flop_clcracked.xml msx1_cass.xml
[/branches/ibm5150_qa/src/devices/machine]mc68901.cpp
[/branches/ibm5150_qa/src/lib/formats]hxchfe_dsk.cpp ti99_dsk.cpp
[/branches/ibm5150_qa/src/mame/stern]cliffhgr.cpp

r190669 Friday 2nd December, 2022 at 12:50:30 UTC by arcadeshadow
apple2_flop_orig.xml: Use title case for company names (proper nouns). (#10622)
[/branches/ibm5150_qa/hash]apple2_flop_orig.xml

r190668 Friday 2nd December, 2022 at 12:47:32 UTC by arcadeshadow
a800.xml: Metadata cleanups. (#10624)

- Replaced countries' abbreviations by their full name.
- Lowercase on some descriptive words like "Rev", "Alt", "Prototype", "Pirate".
[/branches/ibm5150_qa/hash]a800.xml

r190667 Friday 2nd December, 2022 at 12:45:07 UTC by arcadeshadow
rz1_cass.xml: Lowercase on descriptive words. (#10623)

Lowercase on descriptive "samples" word.
[/branches/ibm5150_qa/hash]rz1_cass.xml

r190666 Friday 2nd December, 2022 at 12:43:35 UTC by Olivier Galibert
Fix f726eee (mumdump broken)
[/branches/ibm5150_qa/src/emu]emumem_hedr.ipp emumem_hedw.ipp

r190665 Thursday 1st December, 2022 at 19:49:44 UTC by Angelo Salese
upd765.cpp: return a command_end with data_completion = false for failed commands (#10615)

* upd765.cpp: return a command_end with data_completion = false for failed commands

* upd765.cpp: add for format_track_continue too
[/branches/ibm5150_qa/src/devices/machine]upd765.cpp

r190664 Thursday 1st December, 2022 at 17:57:35 UTC by Vasantha Crabb
debugger: Add missing override qualifiers in Qt debugger.
[/branches/ibm5150_qa/src/osd/modules/debugger]debugqt.cpp
[/branches/ibm5150_qa/src/osd/modules/debugger/qt]debuggerview.h

r190663 Thursday 1st December, 2022 at 17:17:41 UTC by Osso
unico/silkroad.cpp:  consolidated driver in single file
[/branches/ibm5150_qa/src/mame/unico]silkroad.cpp silkroad.h silkroad_v.cpp

r190662 Thursday 1st December, 2022 at 15:55:28 UTC by Vasantha Crabb
debugger: Hopefully fix undefined names in Cocoa debugger.
[/branches/ibm5150_qa/src/osd/modules/debugger/osx]debugcommandhistory.h debugcommandhistory.mm

r190661 Thursday 1st December, 2022 at 15:25:57 UTC by Vasantha Crabb
-debugger: Improved session save/restore.

* Qt: Save expression for memory and disassembly views.
* Qt: Made command history behave more like Cocoa.
* Qt: Added expression history and made behaviour more like Cocoa.
* Qt: Refactored global notifications to use signals.
* Win32: Increased command/expression history size to 100 items.
* Cocoa: Save state of device info viewer windows.
* Qt/Win32/Cocoa: Save command/expression history.

-util/xmlfile.cpp: Fixed bug where copyInto failed to copy nodes.
[/branches/ibm5150_qa/scripts/src/osd]modules.lua
[/branches/ibm5150_qa/src/lib/util]xmlfile.cpp
[/branches/ibm5150_qa/src/osd/modules/debugger]debugqt.cpp xmlconfig.cpp xmlconfig.h
[/branches/ibm5150_qa/src/osd/modules/debugger/osx]debugcommandhistory.h debugcommandhistory.mm debugconsole.mm debugwindowhandler.mm deviceinfoviewer.mm
[/branches/ibm5150_qa/src/osd/modules/debugger/qt]breakpointswindow.cpp breakpointswindow.h dasmwindow.cpp dasmwindow.h debuggerview.cpp debuggerview.h deviceinformationwindow.cpp deviceinformationwindow.h deviceswindow.cpp deviceswindow.h logwindow.cpp logwindow.h mainwindow.cpp mainwindow.h memorywindow.cpp memorywindow.h windowqt.cpp windowqt.h
[/branches/ibm5150_qa/src/osd/modules/debugger/win]debugwininfo.h editwininfo.cpp editwininfo.h

r190660 Thursday 1st December, 2022 at 14:07:22 UTC by AJR
bgt.cpp: Remove skeleton driver and fold sets into neptunp2.cpp
[/branches/ibm5150_qa/src/mame]arcade.flt mame.lst
[/branches/ibm5150_qa/src/mame/cirsa]neptunp2.cpp
[/branches/ibm5150_qa/src/mame/misc]bgt.cpp

r190659 Wednesday 30th November, 2022 at 19:50:26 UTC by hap
nes_apu: update stream before reading statusreg
[/branches/ibm5150_qa/hash]ibm5150.xml
[/branches/ibm5150_qa/src/devices/sound]nes_apu.cpp
[/branches/ibm5150_qa/src/mame/handheld]hh_hmcs40.cpp

r190658 Saturday 3rd December, 2022 at 21:34:40 UTC by Angelo Salese
hash/ibm5150.xml: checkpoint
[/branches/ibm5150_qa/hash]ibm5150.xml

Previous 50 199869 Revisions Next 50


© 1997-2024 The MAME Team