summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
Commit message (Collapse)AuthorAgeFilesLines
* added Philips PCF2100 LCD Driver (nw) hap2020-04-101-0/+12
|
* ti99: Add PGRAM card; fixed IDE adapter card. Michael Zapf2020-04-101-0/+4
|
* m3002: New device AJR2020-04-071-0/+12
|
* pasopia, pasopia2: PAC2 overhaul AJR2020-04-061-0/+19
| | | | | | | - PAC2 is now a separate bus with slot devices - Kanji ROM and RAM PAC2 expansions are no longer built into pasopia7, but may be configured as slot options - RAM PAC2 expansion made nonvolatile and provided in multiple sizes - Two PAC2 slots added to pasopia
* 6800ops: unneeded workaround? (nw) hap2020-04-061-1/+0
|
* Add octal registered transceiver 74543 Michael Zapf2020-04-061-0/+12
|
* H8: added support for H8T tapes. Robbbert2020-04-061-0/+12
|
* Add H8/500 disassembler and skeleton CPU device family AJR2020-04-041-0/+25
| | | | | | alesis_qs.cpp: Document XTALs; replace legacy MCFG in comments (nw) picno.cpp: Replace legacy MCFG in comments (nw)
* Split S-SMP and S-DSP implement in snes_snd.cpp (#6417) cam9002020-04-042-0/+24
| | | | | | | | * Split S-SMP and S-DSP implement in snes_snd.cpp both convert memory handler into device_memory_interface, Internalize ROM region of S-SMP s_smp.cpp : Use callback for S-DSP interface, Split internal and external memory space snes.cpp : Convert WRAM into shared_ptr * s_dsp.cpp : Reduce #define macros
* upd177x disassembler [O. Galibert] Olivier Galibert2020-04-041-0/+10
|
* cpu/alph8201 can be removed now (nw) hap2020-04-031-17/+0
|
* cxd1185: new device Patrick Mackinlay2020-03-291-0/+12
|
* unidasm: Add pic16 generic disassembler with extended instructions [O. Galibert] Olivier Galibert2020-03-281-0/+10
|
* upd7001: New device AJR2020-03-281-0/+12
| | | | ssv.cpp: Split state class up a bit (nw)
* Added ICM7170 real-time clock device. [R. Belmont] arbee2020-03-221-0/+12
|
* bus/bbc/1mhzbus: Added PEDL Multiform Z80. Nigel Barnes2020-03-221-0/+2
|
* compile in the contents of the COPYING file for the about box - safer than ↵ Vas Crabb2020-03-222-2/+10
| | | | assuming it will be in the working directory. no attempt at compressing it for now (nw)
* bus/coco: Added CoCo PSG cartridge device. [Roberto Fernandez, Nigel Barnes, ↵ Nigel Barnes2020-03-211-0/+2
| | | | Ed Snider]
* bus/bbc/userport: Added the Clwyd Technics Colour Palette and Chameleon devices. Nigel Barnes2020-03-211-0/+2
|
* Roll back no longer needed /ZI workaround Julian Sikorski2020-03-191-18/+0
| | | | It has been fixed as of Visual Studio 2019 16.5
* ti99: Added FORTi sound card. Michael Zapf2020-03-171-0/+2
|
* mac: Initial support for the Sigma Designs LaserView monochrome NuBus video ↵ arbee2020-03-151-0/+2
| | | | card [Al Kossow, R. Belmont]
* Plug & Play / sh6578 work (#6447) David Haywood2020-03-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PPU refactoring (nw) * PPU refactoring (nw) * start making a new device (nw) * PPU device refinements (nw) * tear things down (nw) * refactoring (nw) * more refactor and teardown (nw) * (nw) * rebuilding (nw) * (nw) * (nw) * (nw) * (nw) * checkpoint (nw)
* Merge pull request #6448 from ValleyBell/cm32p ajrhacker2020-03-151-0/+12
|\ | | | | add CM-32P PCM emulation
| * add Roland PCM sound emulation for CM-32P Valley Bell2020-03-151-0/+12
| |
* | bus/bbc/1mhzbus: Added the RetroClinic DataCentre. [Nigel Barnes, RetroClinic] Nigel Barnes2020-03-151-0/+2
|/
* ti99: Added Myarc DDCC-1 disk controller card. Michael Zapf2020-03-151-0/+2
|
* ks0164: Turn it into a device (nw) Olivier Galibert2020-03-141-0/+12
|
* ti99: Added CorComp disk controller cards. Michael Zapf2020-03-141-0/+2
|
* -frontend: Added an About menu option to display the contents of COPYING in ↵ MooglyGuy2020-03-111-0/+2
| | | | order to be more license-compliant. [Ryan Holtz]
* Clean up odds and ends (nw) AJR2020-03-061-12/+0
| | | | | | - com8116: Delete SY2661-1/-2 tables (these are just second sources of SCN2661A/B) - mc2661: Remove obsolete device - rs232: Remove 7200 baud setting formerly required by one driver to work around incorrect table
* (nw) It helps if you're using the same data types in both places (VGM Vas Crabb2020-03-071-1/+1
| | | | | | | | | | visualiser device and WDL FFT libarary). I changed the VGM visualiser to use single-precision float which is the default for WDL FFT. GCC's loop vectoriser can make better use of SSE with single-precision maths, and the extra precision shouldn't be needed for the visualisation. If this is a problem, let me know and I'll revert this and flip the WDL FFT library over the other way.
* New and completely rewritten emulation of SCN2651 PCI, SCN2661 EPCI & ↵ AJR2020-03-061-0/+12
| | | | | | SCN2641 ACI This is far more thorough and accurate than the preexisting MC2661 device emulation. Synchronous modes have been implemented but not tested.
* Removed winpcap and cleaned up network module selection. Vas Crabb2020-03-056-17/+66
| | | | | | | | (nw) The pcap.h header itself has the problematic original BSD license, including the obnoxious advertising clause. Using tap/tun networking on Windows provides a much better experience, so the extra setup is worth it. This patch also allows you to enable pcap on platforms where it's disabled by default with USE_PCAP=1 if you really want to use it.
* Merge pull request #6388 from fulivi/hp80_dev07 R. Belmont2020-03-041-0/+2
|\ | | | | HP82900 CP/M module
| * hp80: added HP82900 CP/M module fulivi2020-03-031-0/+2
| |
* | Maintenance: Vas Crabb2020-03-043-5/+43
| | | | | | | | | | | | | | * Removed empty nl_examples from dist.mak * Added copyright acknowledgements and full text of licenses to binary distribution * Fixed up the list of third-party libraries * Moved WDL fft.c to 3rdparty
* | Added Microlog Baby Blue II CPU Plus ISA card. [Barry Rodewald] mahlemiut2020-03-041-0/+2
| |
* | bus/bbc/1mhzbus: Added Pull Down RAM and Colour Card 500 devices. Nigel Barnes2020-03-031-0/+4
| |
* | cms6502: Cleanups and promoted to working. Nigel Barnes2020-03-031-0/+2
|/ | | | | - Corrected M4 ROM ordering. - Added IEEE controller card.
* ibmxdf_dsk: IBM Extended Disk Format support (nw) Sergey Svishchev2020-03-021-0/+12
|
* hp80: HP82939 serial I/O module added (#6366) fulivi2020-03-011-0/+2
| | | | | | | | * hp80: added HP82939 serial I/O module. Fixed a small bug in INS8250 that prevented module self-test to pass. Improved the interrupt handling of hp80 systems. * hp80: changed scheduling to use "set_perfect_quantum"
* -vgmplay: Added a visualizer. [Ryan Holtz, Justin Frankel] MooglyGuy2020-03-011-0/+14
|
* -ex1280: Added skeleton device for Vectrix EX1280 ISA card. [Ryan Holtz, ↵ mooglyguy2020-03-011-0/+2
| | | | Bitsavers]
* z80dart: Replace old device with new variant of modern SIO emulation AJR2020-02-291-12/+0
| | | | | | z80sio: Make LOGBIT less spammy; booleanize a few members (nw) machine/mtx.cpp: Remove unnecessary includes (nw)
* clean up crud (nw) Vas Crabb2020-02-291-1/+3
|
* Remove src2html tool (nw) Vas Crabb2020-02-291-40/+0
| | | | | | | | | | This tool was previously used to generate HTML-formatted source for the website from releases. It hasn't been used in years, since we rely on the repository browsing features of GitHub/GitLab/SourceForge. It also hasn't been updated to handle C++14, Lua, and other changes to the source. If we do want to publish source code on our own web site in the future, we'd be better off using an off-the-shelf library to handle parsing the source.
* New skeleton device: Am79C30A DSC AJR2020-02-271-0/+12
| | | | eurit30: LCDC writes identified, but exact type remains unknown (nw)
* rtpc keyboard: new device (nw) Patrick Mackinlay2020-02-251-0/+14
| | | | The host is a long way from being done, but the keyboard seems to be working well enough already.
* ks0164: First try at a disassembler [David Carne, O. Galibert] Olivier Galibert2020-02-221-0/+17
|