summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/exidy/starfire.cpp
Commit message (Collapse)AuthorAgeFilesLines
* New sound infrastructure.sound Olivier Galibert6 days1-4/+3
| | | | | | | | | | | | | | | | | | Should be added soon: - mute - lua hookup (with documentation) - speaker/microphone resampling To be added a little later: - compression - reverb Needs to be added by someone else: - coreaudio - direct - portaudio - xaudio2 - js
* crash: small tweak to color overlay, hap2023-08-071-6/+8
| | | | carpolo: take characters from exidy circus instead of atari night driver
* emu/device.h: Removed device (READ|WRITE)_LINE_MEMBER in favor of explicit ↵ MooglyGuy2023-06-011-3/+3
| | | | function signatures. (#11283) [Ryan Holtz]
* Eliminated cross dependencies between driver projects. Vas Crabb2022-06-271-1/+1
| | | | | | | | | | | | | | | | | | | | | Driver projects now use globs to search for files. There's less effort editing the Lua files when things are moved around. Remember it won't automatically pick up a change, so if you add/remove/change files, you should touch makefile to get it to find the change. Driver projects no longer get the top-level MAME directory as an include path. This means you need to think about how you structure things and not introduce nasty circular dependencies. Subtarget projects can now be generated entirely from .flt files without the need for separate Lua scripts and .lst files. This has been done for the arcade, mess and virtual targets. It effectively works like a SOURCES= build on a large scale. This means you need to organise things so the dependency genrators can find them. There's an issue with the mess subtarget right now. For some reason, decmate2.cpp isn't picking up the dependency on the PDP8 CPU core for the HD6120 device. I'll debug it later
* Rearrange source to match project structure (done using the script in ↵ Vas Crabb2022-06-271-0/+583
src/tools).