summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/ssem/ssem.h
Commit message (Collapse)AuthorAgeFilesLines
* Move all devices into separate part of src tree (nw) Miodrag Milanovic2015-09-131-86/+0
|
* blame balrog for this :) (NW) Cowering2015-07-081-1/+1
|
* Updated licenses on Ryan Holtz request (nw) Miodrag Milanovic2015-05-091-2/+2
|
* Added dummy license headers for EMU section (nw) Miodrag Milanovic2015-05-071-0/+2
|
* moved all to std::string (nw) Miodrag Milanovic2015-04-221-1/+1
|
* string -> str rename due to future conflicts (nw) Miodrag Milanovic2015-04-121-1/+1
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-9/+9
|
* - h6280.c: Modernized the H6280 core. Ryan Holtz2012-12-231-3/+1
| | | | | - c6280.c: Modernized the C2680 sound core. (nw) fixed ssem compile issue
* - ssem.c: Modernized the SSEM core. [MooglyGuy] Ryan Holtz2012-12-231-3/+66
|
* Created CPU-specific device types for all CPUs, using new macros Aaron Giles2010-07-031-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | DECLARE_LEGACY_CPU_DEVICE and DEFINE_LEGACY_CPU_DEVICE. Changed CPUs to be their own device types, rather than all of type CPU with a special internal subtype. Note that as part of this process I removed the CPU_ prefix from the ALL-CAPS device name, so CPU_Z80 is just plain old Z80 now. This required changing a couple of names like 8080 to I8080 so that there was an alphabetic first character. Added memory interfaces to the list of fast-access interfaces. To do this properly I had to add a separate method to devices which is called immediately after construction, when it is possible to perform dynamic_casts on fully-constructed objects. (This is just internal, no changes necessary to the devices themselves.) Some additional notes: * SH2 and SH4 had typedefs that conflicted with their CPU_-less names so I bulk renamed to structures to sh2_state and sh4_state; RB, feel free to choose alternate names if you don't like 'em * SCSP was caught doing something to the 3rd indexed CPU. Since several systems that use SCSP don't even have 3 CPUs, I had no idea what this was supposed to do, so I changed to it reference "audiocpu" assuming that stv was the assumed target. This is really gross and should be a configuration parameter, not a hard-coded assumption.
* Added CPU core for the Manchester Small-Scale Experimental Machine (SSEM) ↵ Ryan Holtz2009-06-021-0/+24
from 1948 [MooglyGuy]