summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* meters, ticket: Move these generic devices into src/devices (nw) AJR2018-01-091-0/+24
|
* machine.lua: compile myb3k_kbd only when needed (nw) Ivan Vangelista2018-01-091-2/+12
|
* Add ER1400 serial EAROM device AJR2017-12-311-0/+12
|
* i386: x87 bug fixes and FERR support [Andrey Merkulov] cracyc2017-12-161-0/+12
| | | | i8087: separate 8087 device [Carl]
* myb3k: preliminary keyboard support for Ericsson step/one brand [Fredrik ↵ Joakim Larsson Edstrom2017-12-151-0/+2
| | | | Ohrstrom]
* New generic ripple counter device AJR2017-12-101-0/+12
|
* split pgm2 up into drivers/video, correct main ram size, make some notes etc. David Haywood2017-11-171-0/+12
|
* 28fxxx: initial commit for new flash memory device (#2805) Patrick Mackinlay2017-11-161-0/+12
| | | Implementation of 28F010 and family flash memory devices. These are not compatible with the JEDEC-standard flash command protocol implemented in intelfsh.
* z80sio updates: Vas Crabb2017-11-161-0/+2
| | | | | | | | | | | * Don't use device_serial_interface for transmit - it can't support sync modes, on-the-fly register updates, and other weirdness. * Better modelling of 1-deep transmit queue. * Better RTS/CTS behaviour. * Completely overhauled interrupt logic - vectors should be correct for most async modes. * Implemented different auto-reset receive errors in MPSC vs SIO. * Implemented SDLC transmission including bit stuffing, transmit CRC, abort, and underrun/end-of-message behaviour. Added an SDLC consumer device that logs SNA frame headers and data.
* einstein: Major cleanup, add a ADC0844 device Dirk Best2017-11-061-0/+12
| | | | | | | | The analogue joystick is now emulated. Also fixed a few minor issues with the memory map. This also adds a generic Z80 dasisy chain device, for use in drivers with non-Z80 peripherals.
* hp85: support for I/O slots added. Emulation of HP82937 module added. fulivi2017-10-251-0/+12
|
* saturn.cpp: Moved SCU related functions inside a device [Angelo Salese] angelosa2017-10-091-0/+12
|
* Remove timer_device from emu.h and move it out of src/emu (nw) AJR2017-10-011-0/+2
|
* am9513: New device AJR2017-09-221-0/+12
|
* tube: New TUBE device. Acorn Tube ULA for use in Acorn 2nd Processors Nigel Barnes2017-08-251-0/+12
|
* hp85: implemented tape drive fulivi2017-08-161-0/+12
|
* New 74LS259/9334/CD4099 devices AJR2017-07-251-14/+12
| | | | | | | | These humble 16-pin logic devices were commonly used in 8-bit arcade games to control coin counters/lockouts, IRQ flipflops, graphics banking, slave CPU reset lines, discrete audio triggers, screen flipping, serial EEPROMs and much else. Over 100 drivers and a few bus devices have been updated to use the new implementation, and a great deal of research has gone into documenting the physical location of these devices on actual PCBs in the source. Write handlers have been provided for both orthodox and somewhat less conventional memory mappings. Incidental to this update, coin counters and/or lockouts have been added to Atari System 1 games, Basketball, Gauntlet, Gyruss, Hana Yayoi, Hole Land, Jr. Pac-Man, Mahjong Sisters, Pooyan, Roc'n Rope, Squash, Thunder Hoop, Time Limit, Time Pilot '84 and many others. This also cleans up coin counter behavior in Sauro and Rally Bike. (nw) The purpose of committing this change, which has been several months in the making, early in the 0.189GIT cycle will be to allow time for fixing potential regressions; I've fixed a number of drivers that lost sound from this for various reasons (hnayayoi.cpp having missing or garbage ADPCM was particularly painful, since the three games in that driver all work slightly differently), but I can't test all affected drivers exhaustively. @Tafoid, don't bother running automated screen capture comparison tests on this, as many drivers are now expected to have the screen flipped for the first few seconds after reset.
* i82586: intel 82586/82596 ethernet controllers, skeleton only (nw) (#2456) Patrick Mackinlay2017-07-101-0/+12
| | | | | | | | | | * i82586: initial commit, skeleton only * oops (nw) * i82586: added databook references * use address space for memory access
* mc14411: NEW DEVICE Motorola MC14411 Bit Rate Generator Joakim Larsson Edstrom2017-07-081-0/+12
|
* r9751: Add initial SMIOC device (#2423) Brandon Munger2017-06-301-0/+12
|
* - Add preliminary Yamaha YM3802 MIDI controller mahlemiut2017-06-211-0/+12
| | | | - Add X68000 expansion device using the YM3802
* New device: TE7750 Super I/O Expander AJR2017-06-151-0/+12
|
* New skeleton: GRiD Compass series Sergey Svishchev2017-06-061-0/+12
|
* Initial support for SiS85c496/497 PCI chipset. [R. Belmont] arbee2017-06-051-0/+2
|
* New device: SN54/74166 8-Bit Parallel-In/Serial-Out Shift Register Dirk Best2017-05-161-0/+12
|
* Move static data out of devices into the device types. This is a ↵ Vas Crabb2017-05-141-27/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | significant change, so please pay attention. The core changes are: * Short name, full name and source file are no longer members of device_t, they are part of the device type * MACHINE_COFIG_START no longer needs a driver class * MACHINE_CONFIG_DERIVED_CLASS is no longer necessary * Specify the state class you want in the GAME/COMP/CONS line * The compiler will work out the base class where the driver init member is declared * There is one static device type object per driver rather than one per machine configuration Use DECLARE_DEVICE_TYPE or DECLARE_DEVICE_TYPE_NS to declare device type. * DECLARE_DEVICE_TYPE forward-declares teh device type and class, and declares extern object finders. * DECLARE_DEVICE_TYPE_NS is for devices classes in namespaces - it doesn't forward-declare the device type. Use DEFINE_DEVICE_TYPE or DEFINE_DEVICE_TYPE_NS to define device types. * These macros declare storage for the static data, and instantiate the device type and device finder templates. The rest of the changes are mostly just moving stuff out of headers that shouldn't be there, renaming stuff for consistency, and scoping stuff down where appropriate. Things I've actually messed with substantially: * More descriptive names for a lot of devices * Untangled the fantasy sound from the driver state, which necessitates breaking up sound/flip writes * Changed DECO BSMT2000 ready callback into a device delegate * Untangled Microprose 3D noise from driver state * Used object finders for CoCo multipak, KC85 D002, and Irem sound subdevices * Started to get TI-99 stuff out of the TI-990 directory and arrange bus devices properly * Started to break out common parts of Samsung ARM SoC devices * Turned some of FM, SID, SCSP DSP, EPIC12 and Voodoo cores into something resmbling C++ * Tried to make Z180 table allocation/setup a bit safer * Converted generic keyboard/terminal to not use WRITE8 - space/offset aren't relevant * Dynamically allocate generic terminal buffer so derived devices (e.g. teleprinter) can specify size * Imporved encapsulation of Z80DART channels * Refactored the SPC7110 bit table generator loop to make it more readable * Added wrappers for SNES PPU operations so members can be made protected * Factored out some boilerplate for YM chips with PSG * toaplan2 gfx * stic/intv resolution * Video System video * Out Run/Y-board sprite alignment * GIC video hookup * Amstrad CPC ROM box members * IQ151 ROM cart region * MSX cart IRQ callback resolution time * SMS passthrough control devices starting subslots I've smoke-tested several drivers, but I've probably missed something. Things I've missed will likely blow up spectacularly with failure to bind errors and the like. Let me know if there's more subtle breakage (could have happened in FM or Voodoo). And can everyone please, please try to keep stuff clean. In particular, please stop polluting the global namespace. Keep things out of headers that don't need to be there, and use things that can be scoped down rather than macros. It feels like an uphill battle trying to get this stuff under control while more of it's added.
* vrc5074: Added new Nile 4 System Controller device Ted Green2017-05-131-0/+2
|
* k054321: Implement as a device [O. Galibert, Phil Bennett] Olivier Galibert2017-04-251-0/+11
|
* segaybd.cpp, srallyc: Add OKI MSM6253 device AJR2017-04-121-0/+12
|
* ds1205: Add Dallas DS1205 Multikey [Carl] cracyc2017-04-121-0/+12
|
* segaxbd.cpp: Rewrite CXD1095 as a device and also add it to megatech.cpp AJR2017-04-101-0/+12
|
* fix compile (nw) hap2017-03-151-0/+8
|
* ie15: convert to a device with frontends (standalone driver and rs232 slot ↵ Sergey Svishchev2017-03-131-0/+14
| | | | device) (take 2)
* Fix Heath H19 keyboard (#2066) Mark Garlanger2017-02-251-0/+12
| | | | | * Fix Heath H19 keyboard * Fix how enable/disable of 25th line is handled. * Updated to use internal ROM in MM5740.
* - WIP: Refactored device: MPCC 68561 (nw) Joakim Larsson Edstrom2017-01-161-2/+2
| | | | | - 68230 PIT: Added support for the PSR register, H1-H4 sense and direct pin levels - WIP: fccpu20: added mpcc device and serial interface (nw)
* New device: BIM 68153 Joakim Larsson Edstrom2017-01-121-0/+12
|
* hp9845: draft of HP9895 floppy drive. PHI passes POST. fulivi2017-01-051-0/+12
|
* Merge pull request #1788 from ajrhacker/ls157 R. Belmont2016-12-021-0/+12
|\ | | | | Create new 74LS157 device and hook it up to MSM5205 on Rastan
| * Create new 74LS157 device and hook it up to MSM5205 on Rastan AJR2016-12-021-0/+12
| |
* | new not working cracyc2016-12-021-0/+13
|/ | | | | | | ---------------- Dulmont Magnum [Carl, Dave Jones] isbc: new isbc8630 sct set [Al Kossow]
* Fix some single driver builds (nw) Miodrag Milanovic2016-11-081-1/+1
|
* added non-legacy i82439tx and created a driver using it in pcipc (nw) Miodrag Milanovic2016-10-301-0/+2
| | | | | added vga hack to be able to test pcipc.cpp pcipc -bios 3 and pcipctx can initialize more if 0xAA is written at 0x4f0
* New devices added therealmogminer@gmail.com2016-10-281-0/+36
| | | | | | | ----------------- 7400 Quad 2-Input NAND Gate [Ryan Holtz] 7404 Hex Inverter [Ryan Holtz] 82S126/82S129 256x4-bit PROM [Ryan Holtz]
* New devices added therealmogminer@gmail.com2016-10-281-0/+24
| | | | | | ----------------- 54/7416x Hex/Quad D Flip-Flops with Clear [Ryan Holtz] 9334/DM9334 8-Bit Addressable Latch [Ryan Holtz]
* -core: Added 54/74160,161,162,163 device emulation. [Ryan Holtz] therealmogminer@gmail.com2016-10-281-0/+12
|
* -hazeltin: Added preliminary video, still broken due to timing issues. [Ryan ↵ therealmogminer@gmail.com2016-10-271-0/+12
| | | | Holtz]
* Cleanup, TIMER_CALLBACK was only in unused parts (nw) Miodrag Milanovic2016-10-211-12/+0
|
* -Added: Dallas DS1386-8K and DS1386-32K timekeepers (largely untested). ↵ therealmogminer@gmail.com2016-10-161-0/+12
| | | | [Ryan Holtz]
* pcipc: sandbox for emulating a modern-ish pc (nw) Olivier Galibert2016-09-121-0/+4
|
* Separation of the LDP-1450 laserdisc player to its own device. James Wallace2016-08-041-0/+12
|