Note: GitHub retired the SVN interface on January 8, 2024.
Previous 50 | 199869 Revisions | Next 50 |
r188784 Tuesday 2nd August, 2022 at 21:04:12 UTC by AJR |
---|
Mac debugging overhaul - Split out the disassembler override to a new file and use it in all 68K Mac drivers - Add several more names to the list of A-line Toolbox traps - Remove the long-disused mac_tracetrap routine |
[/branches/barcrest/src/mame/apple] | mac.cpp mac.h mac128.cpp mac_m.cpp maciivx.cpp maclc.cpp maclc3.cpp macprtb.cpp macpwrbk030.cpp macquadra700.cpp mactoolbox.cpp* mactoolbox.h* |
r188783 Tuesday 2nd August, 2022 at 20:18:19 UTC by Peter Ferrie |
---|
mfi_dsk: fix logic error (nw) |
[/branches/barcrest/src/lib/formats] | mfi_dsk.cpp |
r188782 Tuesday 2nd August, 2022 at 16:27:49 UTC by Vasantha Crabb |
---|
ui/icorender.cpp: Revert initialisations that can hide real bugs. MSVC isn't smart enough to detect that these can only be used after being assigned while clang and GCC can work it out fine. Initialising them to zero at declaration has the potential to mask real bugs if some code path tries to use them without assigning them. Code flow analysis (e.g. Coverity) or memory analysers (e.g. valgrind or Purify) won't pick up on the buggy path because the variable will technically be initialised. MSVC is problematic when it comes to warnings about uninitialised variables in general. Unfortunately MSVC has no option to selectively treat warnings as errors, unlike clang/GCC which have -Wno-error= which we use extensively. Until Microsoft addresses these issues, you'll have to use NOWERROR=1 when building with MSVC. Also, some cleanup. |
[/branches/barcrest/src/emu/debug] | debugcmd.cpp |
[/branches/barcrest/src/frontend/mame/ui] | icorender.cpp |
[/branches/barcrest/src/osd/modules/debugger] | debuggdbstub.cpp |
r188781 Tuesday 2nd August, 2022 at 16:11:43 UTC by 0kmg |
---|
bus/snes: Log checksums and addresses consistently when loading cartridges. (#10156) |
[/branches/barcrest/src/devices/bus/snes] | snes_slot.cpp |
r188780 Tuesday 2nd August, 2022 at 14:24:17 UTC by Nathan Woods |
---|
Changed gdbstub to no longer expect a CPU named ':maincpu' (#10170) The logic was changed to find the first CPU, without any particular expectation about naming. This should address issue #10141 |
[/branches/barcrest/src/osd/modules/debugger] | debuggdbstub.cpp |
r188779 Tuesday 2nd August, 2022 at 12:34:29 UTC by hap |
---|
New machines marked as NOT_WORKING ---------------------------------- The Dracula (Tsukuda) [hap, Sean Riddle, Parotaku] |
[/branches/barcrest/hash] | entex_sag.xml |
[/branches/barcrest/src/devices/cpu/tms1000] | tms1100.cpp |
[/branches/barcrest/src/mame] | mame.lst |
[/branches/barcrest/src/mame/handheld] | hh_tms1k.cpp tispeak.cpp |
r188778 Tuesday 2nd August, 2022 at 12:21:59 UTC by AJR |
---|
Change debugger command handler parameter vector element type from std::string to std::string_view |
[/branches/barcrest/src/devices/cpu/arm7] | arm7.cpp arm7.h |
[/branches/barcrest/src/devices/machine] | acorn_memc.cpp acorn_memc.h sun4c_mmu.cpp sun4c_mmu.h |
[/branches/barcrest/src/emu] | natkeyboard.cpp natkeyboard.h |
[/branches/barcrest/src/emu/debug] | debugcmd.cpp debugcmd.h debugcon.cpp debugcon.h |
[/branches/barcrest/src/lib/util] | corestr.cpp corestr.h |
[/branches/barcrest/src/mame/konami] | konamim2.cpp |
[/branches/barcrest/src/mame/midway] | midtunit_v.cpp midtunit_v.h |
[/branches/barcrest/src/mame/rm] | rmnimbus.h rmnimbus_m.cpp rmnimbus_v.cpp |
[/branches/barcrest/src/mame/sega] | chihiro.cpp model2.h model2_m.cpp |
[/branches/barcrest/src/mame/shared] | xbox.cpp xbox.h |
[/branches/barcrest/src/mame/sun] | sun4.cpp |
[/branches/barcrest/src/mame/trs] | dgn_beta.h dgn_beta_m.cpp |
r188777 Tuesday 2nd August, 2022 at 12:02:20 UTC by AJR |
---|
mbc55x, saturn: Remove some residual debugging stuff |
[/branches/barcrest/src/mame/sanyo] | mbc55x.h mbc55x_v.cpp |
[/branches/barcrest/src/mame/sega] | saturn.h |
r188776 Tuesday 2nd August, 2022 at 10:41:30 UTC by clawgrip |
---|
mastboy.cpp: Dumped and added a newer Italian set (#10135) * mastboy.cpp: Dumped and added a newer Italian set Also added comments and reformatted existing single line ones. Added placeholders for PLDs. The Italian sets are not hacks. Gaelco licensed the game to Playmark for the Italian market, so changed the manufacturer accordingly on the Italian sets. Finally, the Rev A on the piggyback PCB refers to the game revision, not the PCB revision, so, changed the games names removing the "PCB" reference. * Add 'mastboyib' * mastboy.cpp: Add more comments * Fixed typos |
[/branches/barcrest/src/mame] | mame.lst |
[/branches/barcrest/src/mame/gaelco] | mastboy.cpp |
r188775 Tuesday 2nd August, 2022 at 10:38:59 UTC by 0kmg |
---|
snes.xml: Added five prototypes. (#10145) New working software list additions ----------------------------------- International Superstar Soccer Deluxe (Euro, prototype) [Forest of Illusion] Jigsaw Party (Japan, prototype) [Forest of Illusion] Joe & Mac 2 - Lost in the Tropics (USA, prototype, alt) [Forest of Illusion] Jurassic Park (USA, prototype) [Forest of Illusion] Unirally (Euro, prototype) [Zoda-Y13, Forest of Illusion] |
[/branches/barcrest/hash] | snes.xml |
r188774 Tuesday 2nd August, 2022 at 02:03:33 UTC by patrick.mackinlay |
---|
am9516: don't initialise variables in header |
[/branches/barcrest/src/devices/machine] | am9516.cpp am9516.h |
r188773 Tuesday 2nd August, 2022 at 01:56:55 UTC by Peter Ferrie |
---|
cpu16h, icorender.cpp: fix MSVC compile (nw) |
[/branches/barcrest/src/devices/cpu/m68hc16] | cpu16.h |
[/branches/barcrest/src/frontend/mame/ui] | icorender.cpp |
r188772 Monday 1st August, 2022 at 23:44:25 UTC by hap |
---|
tms1000: added tms1475 |
[/branches/barcrest/src/devices/cpu/tms1000] | tms0270.cpp tms0970.cpp tms0980.cpp tms1000.cpp tms1000c.cpp tms1100.cpp tms1400.cpp tms1400.h tms1k_base.cpp tp0320.cpp |
r188771 Monday 1st August, 2022 at 23:08:42 UTC by hap |
---|
tms1000: increase R port to 32bit |
[/branches/barcrest/src/devices/cpu/tms1000] | tms0270.h tms1k_base.cpp tms1k_base.h |
[/branches/barcrest/src/mame/entex] | sag.cpp |
[/branches/barcrest/src/mame/handheld] | hh_tms1k.cpp hh_tms1k.h tispeak.cpp tispellb.cpp |
[/branches/barcrest/src/mame/miltonbradley] | microvsn.cpp |
[/branches/barcrest/src/mame/misc] | eva.cpp |
r188770 Monday 1st August, 2022 at 22:16:14 UTC by hap |
---|
spellba: do the tms0270 ctl fix in the driver |
[/branches/barcrest/src/devices/cpu/tms1000] | tms0270.cpp |
[/branches/barcrest/src/mame/chess] | compuchess.cpp |
[/branches/barcrest/src/mame/handheld] | hh_tms1k.cpp tispeak.cpp tispellb.cpp |
[/branches/barcrest/src/mame/tiger] | k28.cpp |
r188769 Monday 1st August, 2022 at 22:16:14 UTC by hap |
---|
misc hap devices: move variables init to device_start |
[/branches/barcrest/src/devices/machine] | ds8874.cpp ds8874.h smartboard.cpp smartboard.h tmc0999.cpp tmc0999.h |
[/branches/barcrest/src/devices/video] | ef9340_1.cpp ef9340_1.h hd61603.cpp hd61603.h hlcd0438.cpp hlcd0438.h hlcd0488.cpp hlcd0538.cpp hlcd0538.h i8244.cpp i8244.h lc7582.cpp lc7582.h pcf2100.cpp pcf2100.h sed1500.cpp sed1500.h |
r188768 Monday 1st August, 2022 at 17:33:46 UTC by 0kmg |
---|
vboy.xml: Added a homebrew pirate release. (#10152) * Added alt_title and developer info tags. * Changed data sizes to hexadecimal. * Replaced some names with known ROM labels. * Corrected SRAM on several cartridges. * Various cleanups. New NOT_WORKING software list additions --------------------------------------- vboy.xml: Hyper Fighting (pirate) [Planet Virtual Boy] |
[/branches/barcrest/hash] | vboy.xml |
r188767 Monday 1st August, 2022 at 17:07:26 UTC by arcadeshadow |
---|
to7_qd.xml: Use lowercase for descriptive text in descriptions. (#10162) |
[/branches/barcrest/hash] | to7_qd.xml |
r188766 Monday 1st August, 2022 at 17:03:29 UTC by Vasantha Crabb |
---|
technos/renegade.cpp: Corrected sprite RAM size (GitHub #10163). [jotego] Also combined source files and cleaned up a little. |
[/branches/barcrest/src/mame/konami] | k054000.cpp |
[/branches/barcrest/src/mame/technos] | renegade.cpp |
r188765 Monday 1st August, 2022 at 16:55:57 UTC by furrtek |
---|
konami/k051960.cpp: Implemented shadow configuration bits (fixes shadows in Devastators). (#9353) Added descriptions for the other previously undocumented register bits, even if they shouldn't affect any game. Attempted to get chqflag shadow/highlights working properly with no k051960 hack. konami/k054000.cpp: Updated implementation to better match how the chip works. |
[/branches/barcrest/src/mame/konami] | chqflag.cpp chqflag.h k051960.cpp k051960.h k054000.cpp k054000.h mainevt.cpp mainevt_v.cpp tmnt.cpp tmnt.h |
r188764 Monday 1st August, 2022 at 16:20:07 UTC by arcadeshadow |
---|
to7_cart.xml: Use lowercase for descriptive text in descriptions, and use unabbreviated country names. (#10161) |
[/branches/barcrest/hash] | to7_cart.xml |
r188763 Monday 1st August, 2022 at 16:18:27 UTC by arcadeshadow |
---|
to7_cass.xml: Use lowercase for descriptive text in descriptions and unabbreviated country names. (#10160) |
[/branches/barcrest/hash] | to7_cass.xml |
r188762 Monday 1st August, 2022 at 12:52:41 UTC by Curt Coder |
---|
abc1600: Update todo list. |
[/branches/barcrest/src/mame/luxor] | abc1600.cpp |
r188761 Monday 1st August, 2022 at 04:33:12 UTC by patrick.mackinlay |
---|
am9516: general improvements |
[/branches/barcrest/src/devices/machine] | am9516.cpp am9516.h |
r188760 Sunday 31st July, 2022 at 23:24:52 UTC by R. Belmont |
---|
macquadra700.cpp: Hook up EASC IRQ. [R. Belmont] |
[/branches/barcrest/src/mame/apple] | macquadra700.cpp |
r188759 Sunday 31st July, 2022 at 19:54:39 UTC by 0kmg |
---|
nes.xml: Added a prototype. (#10157) New working software list additions ----------------------------------- Fighting Simulator - World Champ (USA, prototype) [rjtiger] |
[/branches/barcrest/hash] | nes.xml |
r188758 Sunday 31st July, 2022 at 18:12:11 UTC by brice.onken |
---|
dmac3.cpp, cxd8442q.cpp: Implement DMAC3 and WSC-FIFOQ DMA controllers (#10136) |
[/branches/barcrest/src/mame/sony_news] | cxd8442q.cpp* cxd8442q.h* dmac3.cpp* dmac3.h* |
r188757 Sunday 31st July, 2022 at 18:01:29 UTC by R. Belmont |
---|
mac: Hook up ASC IRQs in system ASICs. (GitHub #10159) [R. Belmont] |
[/branches/barcrest/src/mame/apple] | sonora.cpp sonora.h v8.cpp v8.h vasp.cpp vasp.h |
r188756 Sunday 31st July, 2022 at 11:55:29 UTC by michael.sanborn |
---|
toaplan/toaplan2.cpp: Add subtitle for Japanese FixEight sets. (#10153) |
[/branches/barcrest/src/mame/toaplan] | toaplan2.cpp |
r188755 Sunday 31st July, 2022 at 06:50:50 UTC by fulivi |
---|
intel/imds2: correct dump for PIO microcontroller [fulivi] |
[/branches/barcrest/src/devices/bus/multibus] | isbc202.cpp isbc202.h multibus.cpp multibus.h |
[/branches/barcrest/src/devices/machine] | i3001.cpp i3001.h i3002.cpp i3002.h |
[/branches/barcrest/src/mame/intel] | imds2.cpp imds2ioc.cpp imds2ioc.h |
r188754 Sunday 31st July, 2022 at 04:29:51 UTC by Vasantha Crabb |
---|
Merge tag 'mame0246' into mainline-master MAME 0.246 |
[/branches/barcrest/hash] | a2600.xml c64_cass.xml gameboy.xml gamecom.xml gbcolor.xml k28m2.xml lantrans.xml* |
[/branches/barcrest/plugins/layout] | init.lua |
[/branches/barcrest/scripts/src] | bus.lua cpu.lua |
[/branches/barcrest/src/devices/bus/a800] | a800_carts.h rtime8.cpp* rtime8.h* |
[/branches/barcrest/src/devices/bus/cbmiec] | c1541.cpp |
[/branches/barcrest/src/devices/bus/vme] | vme_fcisio.cpp vme_fcscsi.cpp |
[/branches/barcrest/src/devices/cpu/axc51] | axc51.cpp* axc51.h* axc51dasm.cpp* axc51dasm.h* axc51ops.hxx* |
[/branches/barcrest/src/devices/cpu/h8] | h8.cpp h8.h h8.lst h8s2600.cpp |
[/branches/barcrest/src/devices/cpu/i86] | i186.cpp i186.h |
[/branches/barcrest/src/devices/cpu/mcs51] | |
[/branches/barcrest/src/devices/cpu/nuon] | nuon.h |
[/branches/barcrest/src/devices/cpu/tms1000] | tms0270.cpp tms0970.cpp tms0980.cpp tms1k_base.cpp tms1k_base.h |
[/branches/barcrest/src/devices/machine] | nvram.h sensorboard.cpp |
[/branches/barcrest/src/emu] | machine.cpp |
[/branches/barcrest/src/lib/formats] | ap2_dsk.cpp fs_cbmdos.cpp fs_coco_os9.cpp fs_coco_rsdos.cpp |
[/branches/barcrest/src/lib/util] | corestr.cpp corestr.h |
[/branches/barcrest/src/mame] | mame.lst mess.flt |
[/branches/barcrest/src/mame/amiga] | arsystems.cpp |
[/branches/barcrest/src/mame/apple] | mac.cpp mac.h mac_m.cpp mac_v.cpp maciivx.cpp maclc.cpp* macprtb.cpp v8.cpp* v8.h* |
[/branches/barcrest/src/mame/atari] | atari400.cpp |
[/branches/barcrest/src/mame/capcom] | cps1_v.cpp |
[/branches/barcrest/src/mame/chess] | ave_arb.cpp |
[/branches/barcrest/src/mame/cinematronics] | leland.cpp leland_v.cpp |
[/branches/barcrest/src/mame/dataeast] | darkseal.cpp |
[/branches/barcrest/src/mame/ddr] | chessmst.cpp chessmstdm.cpp |
[/branches/barcrest/src/mame/dgrm] | pokechmp.cpp |
[/branches/barcrest/src/mame/dooyong] | dooyong.cpp gundealr.cpp |
[/branches/barcrest/src/mame/excellent] | gcpinbal.cpp |
[/branches/barcrest/src/mame/fairlight] | cmi.cpp |
[/branches/barcrest/src/mame/fuuki] | fuukifg2.cpp |
[/branches/barcrest/src/mame/handheld] | hh_tms1k.cpp hh_tms1k.h tispeak.cpp tispellb.cpp |
[/branches/barcrest/src/mame/hegenerglaser] | academy.cpp amsterdam.cpp berlin.cpp milano.cpp mm2.cpp modena.cpp mondial68k.cpp polgar.cpp risc.cpp |
[/branches/barcrest/src/mame/igs] | goldstar.cpp goldstar.h |
[/branches/barcrest/src/mame/jaleco] | ginganin.cpp ms1_tmap.cpp |
[/branches/barcrest/src/mame/konami] | hornet.cpp mogura.cpp plygonet.cpp |
[/branches/barcrest/src/mame/layout] | ave_arb.lay chessmst.lay chessmstdm.lay mdndclab.lay mephisto_3.lay mephisto_academy.lay mephisto_amsterdam.lay mephisto_berlin.lay mephisto_bup.lay mephisto_glasgow.lay mephisto_milano.lay mephisto_mirage.lay mephisto_mm1.lay mephisto_mm2.lay mephisto_mm5.lay* mephisto_modena.lay mephisto_mondial68k.lay mephisto_polgar.lay mephisto_risc.lay mephisto_smondial.lay mephisto_smondial2.lay v4dbltak.lay |
[/branches/barcrest/src/mame/midway] | mcr3.cpp mcr3.h |
[/branches/barcrest/src/mame/misc] | quizpun2.cpp usgames.cpp |
[/branches/barcrest/src/mame/namco] | namcofl.cpp |
[/branches/barcrest/src/mame/nichibutsu] | cclimber.cpp |
[/branches/barcrest/src/mame/nokia] | dbox.cpp |
[/branches/barcrest/src/mame/novag] | micro2.cpp |
[/branches/barcrest/src/mame/pinball] | newcanasta.cpp |
[/branches/barcrest/src/mame/playmark] | playmark.cpp |
[/branches/barcrest/src/mame/saitek] | mark5.cpp |
[/branches/barcrest/src/mame/samsung] | dvd-n5xx.cpp* |
[/branches/barcrest/src/mame/sharp] | x68k.h x68k_v.cpp |
[/branches/barcrest/src/mame/skeleton] | monon_color.cpp |
[/branches/barcrest/src/mame/snk] | bbusters.cpp mechatt.cpp prehisle.cpp |
[/branches/barcrest/src/mame/subsino] | subsino2.cpp |
[/branches/barcrest/src/mame/universal] | docastle.cpp |
[/branches/barcrest/src/mame/upl] | nova2001.cpp |
[/branches/barcrest/src/mame/ussr] | debut.cpp |
[/branches/barcrest/src/mame/vsystem] | fromanc2.cpp |
[/branches/barcrest/src/tools] | unidasm.cpp |
r188753 Saturday 30th July, 2022 at 10:51:14 UTC by Vasantha Crabb |
---|
Bump version to 0.246 |
[/branches/barcrest] | makefile |
[/branches/barcrest/android-project/app/src/main] | AndroidManifest.xml |
r188752 Wednesday 27th July, 2022 at 16:01:00 UTC by 0kmg |
---|
Fixed miscellaneous software list issues: (#10133) * casloopy.xml: Fixed a ROM size and kanji reading. * casloopy.xml: Fixed a ROM size and kanji reading. * x1_flop.xml: Fixed a kanji reading. * coco_cart.xml: Fixed a ROM size. |
[/branches/barcrest/hash] | casloopy.xml coco_cart.xml x1_flop.xml |
r188751 Monday 25th July, 2022 at 09:16:51 UTC by 0kmg |
---|
nes.xml: More cleanups. (#10128) * Cleaned up more titles and alt_titles. * Converted remaining Jpn to Japan, Tw to Taiwan and Chi to China in descriptions. |
[/branches/barcrest/hash] | nes.xml |
r188750 Monday 25th July, 2022 at 09:16:50 UTC by 0kmg |
---|
bbc_rom.xml: Fixed a ROM size error. (#10129) |
[/branches/barcrest/hash] | bbc_rom.xml |
r188749 Monday 25th July, 2022 at 09:16:49 UTC by 0kmg |
---|
nes.xml: Demoted some Enix games. Cleaned up some titles and alt_titles. (#10127) |
[/branches/barcrest/hash] | a2600.xml bbc_rom.xml c64_cass.xml casloopy.xml coco_cart.xml gameboy.xml gamecom.xml gbcolor.xml k28m2.xml |
[/branches/barcrest/plugins/layout] | init.lua |
[/branches/barcrest/scripts/src] | bus.lua cpu.lua |
[/branches/barcrest/src/devices/bus/a800] | a800_carts.h |
[/branches/barcrest/src/devices/bus/cbmiec] | c1541.cpp |
[/branches/barcrest/src/devices/bus/vme] | vme_fcisio.cpp vme_fcscsi.cpp |
[/branches/barcrest/src/devices/cpu/axc51] | |
[/branches/barcrest/src/devices/cpu/h8] | h8.cpp h8.h h8.lst h8s2600.cpp |
[/branches/barcrest/src/devices/cpu/i86] | i186.cpp i186.h |
[/branches/barcrest/src/devices/cpu/mcs51] | axc51-core.cpp* axc51-core.h* axc51-core_dasm.cpp* axc51-core_dasm.h* mcs51.cpp mcs51.h |
[/branches/barcrest/src/devices/cpu/nuon] | nuon.h |
[/branches/barcrest/src/devices/cpu/tms1000] | tms0270.cpp tms0970.cpp tms0980.cpp tms1k_base.cpp tms1k_base.h |
[/branches/barcrest/src/devices/machine] | nvram.h sensorboard.cpp |
[/branches/barcrest/src/emu] | machine.cpp |
[/branches/barcrest/src/lib/formats] | ap2_dsk.cpp fs_cbmdos.cpp fs_coco_os9.cpp fs_coco_rsdos.cpp |
[/branches/barcrest/src/lib/util] | corestr.cpp corestr.h |
[/branches/barcrest/src/mame] | mame.lst mess.flt |
[/branches/barcrest/src/mame/amiga] | arsystems.cpp |
[/branches/barcrest/src/mame/apple] | mac.cpp mac.h mac_m.cpp mac_v.cpp maciivx.cpp |
[/branches/barcrest/src/mame/atari] | atari400.cpp |
[/branches/barcrest/src/mame/capcom] | cps1_v.cpp |
[/branches/barcrest/src/mame/chess] | ave_arb.cpp |
[/branches/barcrest/src/mame/cinematronics] | leland.cpp leland_v.cpp |
[/branches/barcrest/src/mame/dataeast] | darkseal.cpp darkseal.h* darkseal_v.cpp* pktgaldx.cpp pktgaldx.h* pktgaldx_v.cpp* sidepckt.cpp sidepckt.h* sidepckt_v.cpp* vaportra.cpp vaportra.h* vaportra_v.cpp* |
[/branches/barcrest/src/mame/ddr] | chessmst.cpp chessmstdm.cpp |
[/branches/barcrest/src/mame/dgrm] | pokechmp.cpp pokechmp.h* pokechmp_v.cpp* |
[/branches/barcrest/src/mame/dooyong] | dooyong.cpp gundealr.cpp |
[/branches/barcrest/src/mame/excellent] | gcpinbal.cpp |
[/branches/barcrest/src/mame/fairlight] | cmi.cpp |
[/branches/barcrest/src/mame/fuuki] | fuukifg2.cpp |
[/branches/barcrest/src/mame/handheld] | hh_tms1k.cpp hh_tms1k.h tispeak.cpp tispellb.cpp |
[/branches/barcrest/src/mame/hegenerglaser] | academy.cpp amsterdam.cpp berlin.cpp milano.cpp mm2.cpp modena.cpp mondial68k.cpp polgar.cpp risc.cpp |
[/branches/barcrest/src/mame/igs] | goldstar.cpp goldstar.h |
[/branches/barcrest/src/mame/jaleco] | ginganin.cpp ms1_tmap.cpp |
[/branches/barcrest/src/mame/konami] | hornet.cpp mogura.cpp plygonet.cpp |
[/branches/barcrest/src/mame/layout] | ave_arb.lay chessmst.lay chessmstdm.lay mdndclab.lay mephisto_3.lay mephisto_academy.lay mephisto_amsterdam.lay mephisto_berlin.lay mephisto_bup.lay mephisto_glasgow.lay mephisto_milano.lay mephisto_mirage.lay mephisto_mm1.lay mephisto_mm2.lay |
[/branches/barcrest/src/mame/midway] | mcr3.cpp mcr3.h |
[/branches/barcrest/src/mame/misc] | quizpun2.cpp usgames.cpp |
[/branches/barcrest/src/mame/namco] | namcofl.cpp namcofl.h* namcofl_v.cpp* |
[/branches/barcrest/src/mame/nichibutsu] | cclimber.cpp |
[/branches/barcrest/src/mame/nokia] | dbox.cpp |
[/branches/barcrest/src/mame/novag] | micro2.cpp |
[/branches/barcrest/src/mame/pinball] | newcanasta.cpp |
[/branches/barcrest/src/mame/playmark] | playmark.cpp |
[/branches/barcrest/src/mame/saitek] | mark5.cpp |
[/branches/barcrest/src/mame/samsung] | |
[/branches/barcrest/src/mame/sharp] | x68k.h x68k_v.cpp |
[/branches/barcrest/src/mame/skeleton] | monon_color.cpp |
[/branches/barcrest/src/mame/snk] | bbusters.cpp mechatt.cpp prehisle.cpp |
[/branches/barcrest/src/mame/subsino] | subsino2.cpp |
[/branches/barcrest/src/mame/universal] | docastle.cpp |
[/branches/barcrest/src/mame/upl] | nova2001.cpp |
[/branches/barcrest/src/mame/ussr] | debut.cpp |
[/branches/barcrest/src/mame/vsystem] | fromanc2.cpp |
[/branches/barcrest/src/tools] | unidasm.cpp |
r188748 Saturday 30th July, 2022 at 23:50:26 UTC by AJR |
---|
spyhunt, turbotag: Add ADC |
[/branches/barcrest/src/mame/midway] | mcr3.cpp mcr3.h |
r188747 Saturday 30th July, 2022 at 20:52:58 UTC by arcadeshadow |
---|
spectrum_cass.xml: 6 new software additions (#10155) New working software list additions ----------------------------------- Astérix y el Caldero Magico (Erbe) [spectrumcomputing.co.uk] Break Thru (Erbe, medium case) [spectrumcomputing.co.uk] Ganeymede [Steven Brown, Planeta Sinclair] Ghost Rider [spectrumcomputing.co.uk] Street Hawk (1986) (set 4, IBSA) [spectrumcomputing.co.uk] Wonderworm [spectrumcomputing.co.uk] Cleaning metadata (year, publisher, cloneof/parent relationships) |
[/branches/barcrest/hash] | spectrum_cass.xml |
r188746 Saturday 30th July, 2022 at 19:36:04 UTC by AJR |
---|
a800: Add support for the ICD R-Time 8 cartridge |
[/branches/barcrest/scripts/src] | bus.lua |
[/branches/barcrest/src/devices/bus/a800] | a800_carts.h rtime8.cpp* rtime8.h* |
[/branches/barcrest/src/mame/atari] | atari400.cpp |
r188745 Saturday 30th July, 2022 at 19:13:00 UTC by hap |
---|
tms0270: fix problem with power off and ctl direction |
[/branches/barcrest/src/devices/cpu/tms1000] | tms0270.cpp tms0970.cpp tms0980.cpp tms1k_base.cpp tms1k_base.h |
[/branches/barcrest/src/mame] | mame.lst |
[/branches/barcrest/src/mame/handheld] | hh_tms1k.cpp hh_tms1k.h tispeak.cpp tispellb.cpp |
r188744 Saturday 30th July, 2022 at 16:31:40 UTC by Vasantha Crabb |
---|
Various minor cleanups. There's something wrong when derived classes need to be friends... |
[/branches/barcrest/src/devices/bus/cbmiec] | c1541.cpp |
[/branches/barcrest/src/lib/formats] | fs_cbmdos.cpp fs_coco_os9.cpp fs_coco_rsdos.cpp |
[/branches/barcrest/src/lib/util] | corestr.cpp corestr.h |
[/branches/barcrest/src/mame/apple] | maclc.cpp v8.cpp v8.h |
[/branches/barcrest/src/mame/pinball] | newcanasta.cpp |
r188743 Saturday 30th July, 2022 at 13:28:17 UTC by 0kmg |
---|
gbcolor.xml: Added four Taiwanese dumps. (#10146) New working software list additions ----------------------------------- Chāorén Tègōngduì (Taiwan) [taizou] Fēngkuáng Āgěi Ⅲ - Chāojí Zhàdànrén (Taiwan) [taizou] Wángzú Tiāntáng (Taiwan) [taizou] Xiándàn Chāorén - Ultraman (Taiwan) [taizou] |
[/branches/barcrest/hash] | gbcolor.xml |
r188742 Saturday 30th July, 2022 at 10:48:59 UTC by Vasantha Crabb |
---|
igs/goldstar.cpp: Marked Tetris + Cherry master clones as clones. |
[/branches/barcrest/src/mame] | mame.lst |
[/branches/barcrest/src/mame/igs] | goldstar.cpp goldstar.h |
r188741 Friday 29th July, 2022 at 12:13:15 UTC by Osso |
---|
darkseal.cpp, sidepckt.cpp: consolidated drivers in single files, other small cleanups |
[/branches/barcrest/src/mame/dataeast] | darkseal.cpp |
[/branches/barcrest/src/mame/samsung] | dvd-n5xx.cpp |
r188740 Friday 29th July, 2022 at 12:12:12 UTC by Osso |
---|
New working clones ------------------ Games V21.1C [Brian Troha, The Dumping Union] |
[/branches/barcrest/src/mame] | mame.lst |
[/branches/barcrest/src/mame/misc] | usgames.cpp |
r188739 Friday 29th July, 2022 at 03:13:22 UTC by arcadeshadow |
---|
mo5_flop: Use lowercase for descriptive text in descriptions. (#10125) |
[/branches/barcrest/hash] | mo5_flop.xml |
r188738 Friday 29th July, 2022 at 02:53:59 UTC by R. Belmont |
---|
apple2: don't force ProDOS 2.5a8 to ProDOS sector order. (Github #7707) [R. Belmont] |
[/branches/barcrest/src/lib/formats] | ap2_dsk.cpp |
r188737 Thursday 28th July, 2022 at 19:54:03 UTC by AJR |
---|
nvram: Fix regression related to 6d6ecf46b15cd32599d0d6760178fed0563bc5a2 |
[/branches/barcrest/src/devices/machine] | nvram.h |
r188736 Thursday 28th July, 2022 at 19:33:58 UTC by AJR |
---|
axc51: Prune some other bits that don't exist or don't work similarly here |
[/branches/barcrest/src/devices/cpu/axc51] | axc51.cpp axc51.h |
r188735 Thursday 28th July, 2022 at 18:53:34 UTC by David Haywood |
---|
cloned the mcs51 core as axc51, stripped it back, will allow monon work to continue without making a mess of the original mcs51 core. (#10140) * cloned the mcs51 core as axc51, stripped it back, will allow monon work to continue without making a mess of the original mcs51 core. * remove some redundant bits * replace SFR table with AXC51 / AX208 one, removing some other functionality which is not the same on this series * remove some other bits that are redundant now we're not trying to support other mcs51 models in the axc core |
[/branches/barcrest/scripts/src] | cpu.lua |
[/branches/barcrest/src/devices/cpu/axc51] | axc51.cpp* axc51.h* axc51dasm.cpp* axc51dasm.h* axc51ops.hxx* |
[/branches/barcrest/src/devices/cpu/mcs51] | |
[/branches/barcrest/src/mame/skeleton] | monon_color.cpp |
[/branches/barcrest/src/tools] | unidasm.cpp |
Previous 50 | 199869 Revisions | Next 50 |