Note: GitHub retired the SVN interface on January 8, 2024.
Previous 50 | 199869 Revisions | Next 50 |
r177101 Saturday 3rd April, 2021 at 19:20:04 UTC by Vasantha Crabb |
---|
bus/a2bus: Fix clang build (no idea how GCC didn't fail to compile that). |
[/branches/time-experiments/src/devices/bus/a2bus] | grapplerplus.cpp |
r177100 Saturday 3rd April, 2021 at 19:10:59 UTC by Vasantha Crabb |
---|
bus/a2bus: Made Buffered Grappler+ DRAM size configurable, fixed a bad bit in the MCU ROM dump, and marked the MCU ROM as bad. |
[/branches/time-experiments/src/devices/bus/a2bus] | grapplerplus.cpp grapplerplus.h |
r177099 Saturday 3rd April, 2021 at 18:03:56 UTC by Robbbert |
---|
shtngmst: Dumping Union has confirmed that the other missing PLDs are not PLDs. |
[/branches/time-experiments/src/mame/drivers] | system1.cpp |
r177098 Saturday 3rd April, 2021 at 17:50:19 UTC by Robbbert |
---|
shtngmst: Added a prom [Dumping Union] |
[/branches/time-experiments/src/mame/drivers] | system1.cpp |
r177097 Saturday 3rd April, 2021 at 17:25:53 UTC by Vasantha Crabb |
---|
bus/a2bus: Also synchronise data and asserting strobe for Apple II Parallel Interface Card. |
[/branches/time-experiments/src/devices/bus/a2bus] | a2pic.cpp a2pic.h |
r177096 Saturday 3rd April, 2021 at 17:00:56 UTC by Robbbert |
---|
trs80m3: model 4 can boot some floppies |
[/branches/time-experiments/src/mame/drivers] | trs80m3.cpp |
[/branches/time-experiments/src/mame/includes] | trs80m3.h |
[/branches/time-experiments/src/mame/machine] | trs80m3.cpp |
r177095 Saturday 3rd April, 2021 at 14:18:11 UTC by Vasantha Crabb |
---|
bus/a2bus updates: [Vas Crabb, Golden Child] * Added Orange Micro Buffered Grappler+ printer interface card. * Synchronise all I/O for Apple Parallel Interface Card. |
[/branches/time-experiments/src/devices/bus/a2bus] | a2pic.cpp a2pic.h grapplerplus.cpp grapplerplus.h |
[/branches/time-experiments/src/mame/drivers] | apple2.cpp apple2e.cpp apple2gs.cpp |
r177094 Saturday 3rd April, 2021 at 11:59:28 UTC by fergus.leen |
---|
Added floppy sounds (#7912) |
[/branches/time-experiments/src/mame/drivers] | amstrad.cpp |
r177093 Saturday 3rd April, 2021 at 11:58:58 UTC by r09 |
---|
fmtowns: fix off-by-1 calculation in CDDA length (#7921) |
[/branches/time-experiments/src/mame/drivers] | fmtowns.cpp |
r177092 Saturday 3rd April, 2021 at 11:38:33 UTC by R. Belmont |
---|
a2mockingboard.cpp: fix two off-by-ones on the Phasor address decoding [TomCh] |
[/branches/time-experiments/src/devices/bus/a2bus] | a2mockingboard.cpp |
r177091 Saturday 3rd April, 2021 at 04:06:59 UTC by Aaron Giles |
---|
ymfm: Fix OPL3 output channels and waveform mask in compatibility mode. |
[/branches/time-experiments/src/devices/sound] | ymfm.h |
r177090 Friday 2nd April, 2021 at 22:04:39 UTC by Aaron Giles |
---|
More friendly behavior when OPLL writes are performed out of range. |
[/branches/time-experiments/src/devices/sound] | ymfm.cpp |
r177089 Friday 2nd April, 2021 at 17:58:04 UTC by Aaron Giles |
---|
New BSD-licensed OPL/OPLL (YM3526, YM3812, YM2413, Y8950, YMF262, etc) cores (#7869) * OPL prep. Define FAMILY constant in register classes, and use that instead of template specialization for family-specific behaviors. Expand channel masks to 32 bits. Add is_keyon() helper. * Made FM channel and operator mapping more flexible. Operators are now owned by the engine and can be dynamically assigned to channels. Register classes now provide a mapping between a linear set of operators and channels. The register data array is now a regular array instead of a vector. * Minor change for consistency. * Introduce OPL registers and create a ymopl_engine. Add support for sustain-less notes and the OPL envelope clocks (which does not divide by 3). * Moved keycode calculations into register class. Removed unnecessary recalc in phase generator. Lined up OPL frequency, feedback, algorithm, and total level. * Implement key scale level and OPL-specific LFO and phase handling. * Create new YM3526 device based on new OPL. Fix keyon and sustain behaviors. * Fix weird OPL multiple values. Clean up and further document OPL LFO. * No busy flag on OPL, so no need to do the work. Add a right shift of 1 to the output stage to line up volume with old implementation. * More compact way of representing key scale level values. * Move the KSL bitswap into the registers since it's apparently fixed in OPLL and perhaps others. * Add support for ryhthm generation in OPL. Change compute_volume to take a phase value directly, and expose operator phase. * Fix OPL timers. * Start LFSR with a non-zero value to ensure it actually starts generating for OPL. * Fix silly bug in sustain logic for OPL. Fixes a lot of previously missing sounds. * Create OPL2 engine. Add waveform support for OPL2/3 waveforms. * Wire up YM3812 to the new OPL2 engine. * Reset OPL timers when the mask is written as well. * Manage rhythm key ons separately. Fixes Wardner awfulness. * Explicitly make channel logic handle 0, 2, or 4 operators rather than checking each one for null. Also simplify the combining logic for the 2 operator case. * Reverse bit order of LFSRs to make things a little simpler. Fix OPL LFSR so that it has its full 23-bit period. * Change outputs along the path to arrays rather than stereo items. This allows for four channel output. Also add a constant for the number of outputs to the register class. * Move status register bit definitions to the registers class. Generically support the IRQ bit. * Create shared helpers for FP encode/decode/roundtrip and use them throughout. Also update TMNT to use the FP decoder. * No need to clamp when using the roundtrip. * Clear the EOS flag when execute is turned off on ADPCM-B. Fix combine_status in YM2608 to ignore previously set flags. * Add missing note_select in base class. Don't add 1 to the OPL release rate. * Move Y8950 over to new OPL engine. * Remove old y8950, along with fmopl and ymdeltat * Add updates prior to status reads for ADPCM systems. * Add status_mask and irq_reset logic into the core. Clean up documentation on family-specific registers. Includes some temporary gross debugging stuff. * Made debugging less gross by giving operators and channels a reference back to their owner. * Fix status port address in OPL chips. Reduce ADPCM volume to match previous implementation. * Fix Y8950 ADPCM start. Return masked status properly. * Initial cut at OPLL mapping. * Add YM2413 support based on ymfm; renamed vrc7snd to ds1001; added YM2423 amd YMF281 variants as well. Instrument data is now loaded via external ROMs. Added 'depress' envelope support to the core engine. Fixed a number of issues in the ymopll_engine. Documented hard-coded values. Moved register clear into register-specific reset. * Add missing identifier. * Y8950 is OPL not OPL2. * Some documentation cleanup. Consistency fixes in the register classes. * Consolidate large comments. Add support for delayed modulators for OPL. Broke out 2-op and 4-op cases to help simplify logic. Fixed overflow handling in fp encoding. * Fix silly bug. * Changed operator assignment mechanism to be more readable. Added prepare method to be called at the start of sound update. Added ALL_CHANNELS constant to register files. Updated all consumers to call prepare and use constants where applicable. * Move YMF262 and YMF278B to use new FM engine for OPL3/4. Fix several issues in OPL3 logic, which now seems to work ok. * Minor fixes. More documentation. * Fix MSVC build. * Add caching of data to prepare methods to improve performance. Moved non-register decoding logic out of the .h file and into .cpp file. Move phase_step calculation into register class. * More notes. Removed keycode from cache. Split 2/4-operator outputs into separate functions. Changed OPN/OPL to use templates for variants. Added channel/operator_offset helpers. * Fairly substantial overhaul of register interface. Register interface is now stateless and contains family-specific state. Channel and operator accessors are prefixed by ch_/op_ now and require an offset to the specific channel or operator. Moved LFO/noise generation into register class, along with keyon logging. * Add noise back to OPL/OPLL * Added early-out for low envelope. Moved waveform logic out into family-specific code. General clean up of ordering. Reduced family base class to minimal needed. * More aggressively track active channels to help performance. * Use only summing outputs for consideration of active channels. Centralize the logic of determined 4-op vs 2-op. * More conservative channel deactivation. * Add helper to compute the sample rate and use it in all implementations. Remove unneeded chnum/opnum members. * Fix error in YM2612 that caused crashes. * Switching parameters and locals to 32-bit values gives a noticeable performance boost. Checkpoint 1. * More moving to 32-bit values. Checkpoint 2. * Last of the 32-bit promotions. * Ensure SSG inverted flag is only tested on systems with SSG support in the innermost loops. * Make most constants 32-bit as well. Expose some constants via the engine class. * Expand waveforms ahead of time. Optimize the attenuation lookup a bit. * If volume is low, don't erase output, just leave it alone. Fixes missing sound in raimais. * Replace a couple of magic numbers with constants. * Normalization of FM engine usage across consumers. * Removed explicit external prepare() call; this logic is now automatically done after writes and periodically. Changed OPL/OPLL to use native formats for block/fnum. Fixed waveform generation. Fixed PM and AM depth on OPL/OPLL. * Cache multiple value. Clean up output handling a bit. * Move multiple caching ahead of phase step caching. * Fully split OPLL from OPL. Remove many hacks now that OPLL registers can have state. Created shared helpers between OPL/OPLL. Removed more aggressive channel disables since it was not rhythm friendly and didn't really buy much. * Remove old comment * Remove bad write in OPL mode case. Fixes fsoccer intro. Only call set_reset_status() once per mode call. * Remove FM output boost in YM2608/2610. Not sure why I did that. Better matches previous volume now. * Make AM/PM logging less confusing. * Let's actually set DYNAMIC_OPS properly, eh? * Improved logging. * Comment cleanups. Add constant for dynamic phase. Pre-shift sustain level. Srcclean. * Fix memory regions on YM2608 games. * Clean up ymadpcm to line up with recent ymfm changes. * y8950: Reshuffle read/write handlers. Rename them to less confusing names. * ym2413: Reshuffle read/write handlers. Rename them to less confusing names. * ym3526/ym3812: Reshuffle read/write handlers. Rename them to less confusing names. * ymf262: Match read/write details to datasheet and previous tests. * Use a constexpr function instead of macro for packing operator numbers. Pre-compute OPM LFO waveforms. * Generate OPL4 engine to support the proper clock divider and new flags. Update YMF278B to use FM timers and status rather than replicating the logic. * Fix 4-operator enable on new OPL4 instance. * Fix FM downsampling and adjust balance in YM278B. |
[/branches/time-experiments/scripts/src] | sound.lua |
[/branches/time-experiments/src/devices/bus/bbc/1mhzbus] | beebopl.h |
[/branches/time-experiments/src/devices/bus/c64] | sfx_sound_expander.h |
[/branches/time-experiments/src/devices/bus/isa] | adlib.cpp adlib.h sb16.h sblaster.cpp sblaster.h stereo_fx.h |
[/branches/time-experiments/src/devices/bus/msx_cart] | msx_audio.cpp msx_audio.h |
[/branches/time-experiments/src/devices/bus/nes] | konami.cpp konami.h |
[/branches/time-experiments/src/devices/sound] | |
[/branches/time-experiments/src/mame/audio] | nichisnd.h |
[/branches/time-experiments/src/mame/drivers] | actfancr.cpp aerofgt.cpp alpha68k_i.cpp amaticmg.cpp armedf.cpp battlane.cpp battlnts.cpp bebox.cpp bigkarnk_ms.cpp brkthru.cpp bublbobl.cpp cop01.cpp crospang.cpp cybertnk.cpp dcon.cpp dec0.cpp dec8.cpp deniam.cpp discoboy.cpp dunhuang.cpp dynax.cpp dynduke.cpp esd16.cpp exprraid.cpp fantland.cpp firetrap.cpp fresh.cpp fuukifg2.cpp gaelco.cpp galivan.cpp galspnbl.cpp ginganin.cpp goodejan.cpp hcastle.cpp igs011.cpp itech8.cpp jackpot.cpp karnov.cpp legionna.cpp lordgun.cpp matmania.cpp mephistp.cpp metlclsh.cpp missb2.cpp mitchell.cpp nbmj8688.cpp nbmj8891.cpp nbmj8900.cpp nbmj8991.cpp nbmj9195.cpp nemesis.cpp nmg5.cpp nmk16.cpp oneshot.cpp onetwo.cpp pcktgal.cpp pokechmp.cpp prehisle.cpp r2dx_v33.cpp raiden.cpp raiden2.cpp renegade.cpp rollerg.cpp sauro.cpp sengokmj.cpp seta.cpp sidepckt.cpp sigmab31.cpp sigmab52.cpp snk.cpp snk68.cpp snowbros.cpp spbactn.cpp spdodgeb.cpp speedbal.cpp splash.cpp splash_ms.cpp spy.cpp stadhero.cpp subsino.cpp subsino2.cpp suna16.cpp suna8.cpp tbowl.cpp tecmo.cpp tecmosys.cpp terracre.cpp tmnt.cpp toaplan1.cpp toaplan2.cpp toki.cpp tumbleb.cpp twincobr.cpp umipoker.cpp unico.cpp vgmplay.cpp vis.cpp wardner.cpp yunsun16.cpp yunsung8.cpp |
[/branches/time-experiments/src/mame/includes] | alpha68k.h bloodbro.h bublbobl.h toaplan1.h |
[/branches/time-experiments/src/mame/machine] | toaplan1.cpp |
r177088 Friday 2nd April, 2021 at 15:03:54 UTC by hap |
---|
rf5c68: update stream before writing to wave ram |
[/branches/time-experiments/src/devices/sound] | multipcm.cpp rf5c68.cpp |
r177087 Friday 2nd April, 2021 at 12:36:35 UTC by Osso |
---|
New clones marked as NOT_WORKING -------------------------------- Sonic Blast Man 2 Special Turbo (SNES bootleg, set 2) [ShouTime] |
[/branches/time-experiments/src/mame] | mame.lst |
[/branches/time-experiments/src/mame/drivers] | snesb.cpp |
r177086 Friday 2nd April, 2021 at 06:53:28 UTC by patrick.mackinlay |
---|
r4000: simplify branch state |
[/branches/time-experiments/src/devices/cpu/mips] | r4000.cpp r4000.h |
r177085 Friday 2nd April, 2021 at 06:17:31 UTC by Robbbert |
---|
meritum: upgraded quickload to latest; added speaker. |
[/branches/time-experiments/src/mame/drivers] | lnw80.cpp meritum.cpp |
r177084 Friday 2nd April, 2021 at 05:25:34 UTC by Robbbert |
---|
trs80: validate the cas file |
[/branches/time-experiments/src/lib/formats] | trs_cas.cpp |
r177083 Friday 2nd April, 2021 at 02:16:08 UTC by R. Belmont |
---|
a2mockingboard.cpp: Updates [R. Belmont, TomCh] - Mirror the VIAs correctly across the whole CnXX range - Actually write the inflection bits for the SC-01 |
[/branches/time-experiments/src/devices/bus/a2bus] | a2mockingboard.cpp |
r177082 Thursday 1st April, 2021 at 20:23:29 UTC by hap |
---|
multipcm: retrigger after writing to sample register if key is on (YMF278 also does this) [dink, hap] |
[/branches/time-experiments/src/devices/sound] | multipcm.cpp multipcm.h ymf278b.cpp ymf278b.h |
r177081 Thursday 1st April, 2021 at 19:01:36 UTC by hap |
---|
namcos2/c355 sprites: color 0xfe is for a palette offset instead of shadow [dink, hap] |
[/branches/time-experiments/scripts/target/mame] | arcade.lua |
[/branches/time-experiments/src/mame/drivers] | namconb1.cpp namcos2.cpp tceptor.cpp |
[/branches/time-experiments/src/mame/includes] | namcos2.h tceptor.h |
[/branches/time-experiments/src/mame/video] |
r177080 Thursday 1st April, 2021 at 15:11:37 UTC by hap |
---|
battlane: fix a problem with double height sprites at last boss [dink] |
[/branches/time-experiments/src/emu] | memarray.cpp |
[/branches/time-experiments/src/mame/includes] | battlane.h |
[/branches/time-experiments/src/mame/video] | battlane.cpp |
r177079 Thursday 1st April, 2021 at 14:08:04 UTC by Robbbert |
---|
gameboy: Fixed crash with momocol2 and varpack |
[/branches/time-experiments/src/devices/bus/gameboy] | gb_slot.cpp |
r177078 Thursday 1st April, 2021 at 13:56:38 UTC by etabeta |
---|
plugins/cheat: removed spurious print |
[/branches/time-experiments/plugins/cheat] | init.lua |
r177077 Thursday 1st April, 2021 at 13:33:39 UTC by priuli |
---|
plugins/cheat: fix XML cheat loading when emulation is launched with an image option specified (e.g. mame nes -cart smb) or by loading directly one part of the software (e.g. mame a600 amigaocs_flop:lslarry2:flop1) |
[/branches/time-experiments/plugins/cheat] | init.lua |
r177076 Thursday 1st April, 2021 at 13:19:11 UTC by Robbbert |
---|
Added some swlist warnings for Tafoid's tests. |
[/branches/time-experiments/src/emu] | diimage.cpp |
r177075 Thursday 1st April, 2021 at 12:12:10 UTC by 987123879113 |
---|
Changed audio_latency valid range from 1-5 to 0-5 (#7916) |
[/branches/time-experiments/src/osd/modules/lib] | osdobj_common.cpp |
[/branches/time-experiments/src/osd/modules/sound] | direct_sound.cpp xaudio2_sound.cpp |
r177074 Thursday 1st April, 2021 at 12:10:50 UTC by Dirk Best |
---|
Use llvm-ar for GitHub Actions Windows CI build (#7917) |
[/branches/time-experiments/.github/workflows] | ci-windows.yml |
r177073 Thursday 1st April, 2021 at 11:06:31 UTC by patrick.mackinlay |
---|
r4000: physical address space is 36 bits |
[/branches/time-experiments/src/devices/cpu/mips] | r4000.h |
[/branches/time-experiments/src/mame/drivers] | jazz.cpp |
r177072 Thursday 1st April, 2021 at 09:34:23 UTC by Robbbert |
---|
Moved lnw80 to its own driver. |
[/branches/time-experiments/scripts/target/mame] | mess.lua |
[/branches/time-experiments/src/mame] | mame.lst |
[/branches/time-experiments/src/mame/drivers] | lnw80.cpp* trs80.cpp |
[/branches/time-experiments/src/mame/includes] | trs80.h |
[/branches/time-experiments/src/mame/machine] | trs80.cpp |
[/branches/time-experiments/src/mame/video] | trs80.cpp |
r177071 Thursday 1st April, 2021 at 04:06:14 UTC by patrick.mackinlay |
---|
r4000: timing improvements * external clock is doubled internally * consume additional cycles for integer multiply/divide * streamline memory access |
[/branches/time-experiments/src/devices/cpu/mips] | r4000.cpp r4000.h |
[/branches/time-experiments/src/mame/drivers] | indigo.cpp indy_indigo2.cpp |
r177070 Thursday 1st April, 2021 at 02:32:53 UTC by Carl |
---|
vis: partially try to fix MT7912 |
[/branches/time-experiments/src/mame/drivers] | vis.cpp |
r177069 Thursday 1st April, 2021 at 01:07:12 UTC by R. Belmont |
---|
apple2e: turn off INTCXROM on Control-Reset (GitHub issue #7909) [R. Belmont] |
[/branches/time-experiments/src/mame/drivers] | apple2e.cpp |
r177068 Thursday 1st April, 2021 at 00:08:28 UTC by Aaron Giles |
---|
Disable sleep when using -bench. |
[/branches/time-experiments/src/osd/mac] | macmain.cpp |
[/branches/time-experiments/src/osd/sdl] | sdlmain.cpp |
[/branches/time-experiments/src/osd/windows] | winmain.cpp |
r177067 Thursday 1st April, 2021 at 00:01:00 UTC by AJR |
---|
asma2k: Correct size of undumped spellcheck ROM; add PCB notes [AJR, Lord Nightmare] |
[/branches/time-experiments/src/mame/drivers] | alphasma.cpp |
r177066 Wednesday 31st March, 2021 at 21:31:03 UTC by AJR |
---|
mac128.cpp: Remove bogus SCSI XTAL * mac.cpp: Remove now-unnecessary #include |
[/branches/time-experiments/src/mame/drivers] | mac.cpp mac128.cpp |
r177065 Wednesday 31st March, 2021 at 19:19:55 UTC by cam900 |
---|
seibuspi.cpp: Fix document based from hardware manual (#7901) * seibuspi.cpp: Fix document in SXX2D, JP121 is for mono/stereo sound output select, there's no jumper for cartridge change/flashing. reference: japanese SPI motherboard manual from http://ikotsu.blogspot.com/2010/01/raiden-fighter-jet-seibu-spi-jet.html * seibuspi.cpp: Fix notes related to hardware |
[/branches/time-experiments/src/mame/drivers] | seibuspi.cpp |
r177064 Wednesday 31st March, 2021 at 18:58:51 UTC by James Wallace |
---|
Games promoted to working ------------------------------ Give Us A Break Club (JPM) (IMPACT) (GB 8 GB12) (set 1) Impulse (JPM) (IMPACT) (IP 5 C13) (set 1) Clones promoted to working ---------------------------- Give Us A Break Club (JPM) (IMPACT) (GB 8 GB12P) (set 2, Protocol) Impulse (JPM) (IMPACT) (IP 6 C14) (set 2) Impulse (JPM) (IMPACT) (IP 6 AC14) (set 3) Impulse (JPM) (IMPACT) (IP 7 C15) (set 4) Impulse (JPM) (IMPACT) (IP 7 AC13) (set 5) Impulse (JPM) (IMPACT) (IP 7P C15) (set 6) Impulse (JPM) (IMPACT) (IP 7P C15) (set 7, Whitbread) |
[/branches/time-experiments/src/mame/drivers] | jpmimpctsw.cpp |
[/branches/time-experiments/src/mame/layout] | j6guabcl.lay j6impuls.lay* j6impuls15.lay* |
r177063 Wednesday 31st March, 2021 at 17:51:45 UTC by Robbbert |
---|
trs80m3: removed non-TRS80 formats. |
[/branches/time-experiments/src/mame/drivers] | trs80m3.cpp |
r177062 Wednesday 31st March, 2021 at 17:43:38 UTC by Robbbert |
---|
trs80: used the correct FDC. Removed non-TRS80 formats. |
[/branches/time-experiments/src/mame/drivers] | trs80.cpp |
[/branches/time-experiments/src/mame/includes] | trs80.h |
[/branches/time-experiments/src/mame/machine] | trs80.cpp |
r177061 Wednesday 31st March, 2021 at 16:33:05 UTC by Osso |
---|
magreel.cpp: redumped ic24 [Team Europe] |
[/branches/time-experiments/src/mame/drivers] | magreel.cpp |
r177060 Wednesday 31st March, 2021 at 15:23:45 UTC by Olivier Galibert |
---|
floppy: What wd177x_dsk has become should be taken out and shot |
[/branches/time-experiments/src/lib/formats] | acorn_dsk.cpp acorn_dsk.h afs_dsk.cpp flex_dsk.cpp flex_dsk.h ibmxdf_dsk.cpp ibmxdf_dsk.h mdos_dsk.cpp mdos_dsk.h opd_dsk.cpp os9_dsk.cpp os9_dsk.h trd_dsk.cpp trd_dsk.h uniflex_dsk.cpp uniflex_dsk.h |
r177059 Wednesday 31st March, 2021 at 14:49:29 UTC by Olivier Galibert |
---|
wd,upd: filter unsupported image formats |
[/branches/time-experiments/src/lib/formats] | upd765_dsk.cpp upd765_dsk.h wd177x_dsk.cpp wd177x_dsk.h |
r177058 Wednesday 31st March, 2021 at 14:28:17 UTC by Olivier Galibert |
---|
jv1-dsk: SSDD can not do 80 tracks |
[/branches/time-experiments/src/lib/formats] | trs80_dsk.cpp |
r177057 Wednesday 31st March, 2021 at 14:08:57 UTC by Olivier Galibert |
---|
imd: Don't crash when trying to put a 80-track image in a 40-track drive |
[/branches/time-experiments/src/lib/formats] | imd_dsk.cpp |
r177056 Wednesday 31st March, 2021 at 11:53:36 UTC by Robbbert |
---|
trs80: updated notes. |
[/branches/time-experiments/src/mame/drivers] | trs80.cpp trs80m3.cpp |
r177055 Wednesday 31st March, 2021 at 11:41:24 UTC by Robbbert |
---|
trs80m3: fallout from IMD change. |
[/branches/time-experiments/src/mame/drivers] | trs80m3.cpp |
r177054 Wednesday 31st March, 2021 at 01:05:54 UTC by Vasantha Crabb |
---|
Merge tag 'mame0230' into mainline-master MAME 0.230 |
[/branches/time-experiments] | makefile |
[/branches/time-experiments/hash] | a2600_cass.xml amiga_flop.xml ibmpcjr_cart.xml pet_rom.xml sms.xml |
[/branches/time-experiments/scripts] | genie.lua toolchain.lua |
[/branches/time-experiments/scripts/target/mame] | arcade.lua |
[/branches/time-experiments/scripts/xslt] | list-bios.xslt |
[/branches/time-experiments/src/devices/bus/coco] | coco_fdc.cpp cococart.cpp |
[/branches/time-experiments/src/lib/formats] | d64_dsk.cpp trs_cas.cpp |
[/branches/time-experiments/src/lib/util] | cdrom.cpp cdrom.h |
[/branches/time-experiments/src/mame] | arcade.flt mame.lst |
[/branches/time-experiments/src/mame/audio] | nl_kidniki.cpp |
[/branches/time-experiments/src/mame/drivers] | a2600.cpp bbusters.cpp chihiro.cpp coco3.cpp cps2.cpp dragon.cpp fmtowns.cpp hh_cops1.cpp mechatt.cpp* megadriv_acbl.cpp megaplay.cpp namcos12.cpp nes_clone.cpp nmk16.cpp novag_diablo.cpp novag_sexpert.cpp pockchal.cpp rabbit.cpp toaplan2.cpp trs80.cpp |
[/branches/time-experiments/src/mame/includes] | |
[/branches/time-experiments/src/mame/machine] | gaelco3d.cpp megacdcd.cpp pce_cd.cpp psxcd.cpp trs80.cpp |
[/branches/time-experiments/src/mame/video] |
r177053 Tuesday 30th March, 2021 at 11:19:45 UTC by Vasantha Crabb |
---|
version bump |
[/branches/time-experiments] | makefile |
[/branches/time-experiments/android-project/app/src/main] | AndroidManifest.xml |
r177052 Tuesday 30th March, 2021 at 02:50:26 UTC by AJR |
---|
Restore legacy pc_dsk floppy support for imgtool only |
[/branches/time-experiments/scripts/src] | tools.lua |
[/branches/time-experiments/src/tools/imgtool/formats] | pc_dsk_legacy.cpp* pc_dsk_legacy.h* |
[/branches/time-experiments/src/tools/imgtool/modules] | pc_flop.cpp |
Previous 50 | 199869 Revisions | Next 50 |