| Commit message (Expand) | Author | Age | Files | Lines |
* | As promised, the bulk update of timer calls: |  Aaron Giles | 2011-02-06 | 1 | -4/+4 |
* | Convert emu_timers to objects. Move implementation and management of |  Aaron Giles | 2011-02-06 | 1 | -4/+4 |
* | Attotime bulk conversion step: |  Aaron Giles | 2011-02-03 | 1 | -4/+4 |
* | running_device -> device_t |  Aaron Giles | 2010-12-31 | 1 | -5/+5 |
* | Remove final set of legacy inlines from memory.h. Mostly affects CPU |  Aaron Giles | 2010-08-19 | 1 | -1/+3 |
* | Remove memory_read/write_byte/word/dword/qword* variants. Again, this is mostly |  Aaron Giles | 2010-08-19 | 1 | -4/+4 |
* | Replace "const address_space" with "address_space" throughout the system. |  Aaron Giles | 2010-08-19 | 1 | -3/+3 |
* | Return to type safety. Changed address maps back into functions that build |  Aaron Giles | 2010-08-01 | 1 | -0/+2 |
* | Created CPU-specific device types for all CPUs, using new macros |  Aaron Giles | 2010-07-03 | 2 | -27/+45 |
* | Cleanups and version bump. |  Aaron Giles | 2010-06-17 | 1 | -8/+8 |
* | Change cpu_device into a base class. Rename old cpu_device to legacy_cpu_device. |  Aaron Giles | 2010-06-17 | 1 | -2/+2 |
* | Change cpu execute function to just use the icount stuffed by |  Aaron Giles | 2010-06-09 | 1 | -4/+0 |
* | Changed CPU callbacks to use cpu_device, eliminating a bunch of casting. |  Aaron Giles | 2010-06-08 | 1 | -7/+7 |
* | WARNING: There are likely to be regressions in both functionality and |  Aaron Giles | 2010-06-08 | 2 | -99/+120 |
* | Remove some aliases between CPUINFO_ and DEVINFO_ to help clarify |  Aaron Giles | 2010-01-21 | 1 | -30/+30 |
* | Correct a long-standing design flaw: device configuration state |  Aaron Giles | 2010-01-18 | 1 | -7/+7 |
* | Within src/emu, basic conversions: |  Aaron Giles | 2010-01-12 | 1 | -3/+3 |
* | First round of an attempted cleanup of header files in the system. |  Aaron Giles | 2010-01-10 | 4 | -5/+4 |
* | Results of running the latest srcclean. |  Aaron Giles | 2009-12-28 | 1 | -225/+225 |
* | looping: modified the cop420 rom region |  Roberto Zandona | 2009-08-09 | 2 | -4/+4 |
* | Another step. Moved the address-space related get_info constants |  Aaron Giles | 2009-07-08 | 1 | -19/+19 |
* | Deprecated device_set_info. Almost all devices had a NULL or empty |  Aaron Giles | 2009-04-23 | 1 | -5/+2 |
* | CPU cores now compile cleanly. |  Aaron Giles | 2009-03-15 | 2 | -6/+8 |
* | Moved some of the CPU cores over to use get_safe_token like other devices. |  Aaron Giles | 2009-03-12 | 1 | -14/+35 |
* | Modified the makefile to support experimental optional C++ |  Aaron Giles | 2009-02-28 | 2 | -4/+4 |
* | Cleanups and version bump.mame0129u1 |  Aaron Giles | 2009-01-15 | 2 | -40/+40 |
* | COP400 cpu core refactoring: |  Curt Coder | 2009-01-12 | 8 | -2544/+2114 |
* | CPU interface organization shuffle. The file cpuintrf.h now merely |  Aaron Giles | 2008-12-22 | 3 | -9/+9 |
* | More cleanup. Added address-space-specific constants for the various |  Aaron Giles | 2008-12-20 | 3 | -39/+39 |
* | Renamed CPUINFO_PTR_* to CPUINFO_FCT_* for function get infos. |  Aaron Giles | 2008-12-19 | 3 | -29/+29 |
* | Removed index and clock parameters from CPU_INIT function. |  Aaron Giles | 2008-12-18 | 3 | -9/+9 |
* | From: Atari Ace [atari_ace@verizon.net] |  Aaron Giles | 2008-12-17 | 1 | -0/+16 |
* | More device normalization: |  Aaron Giles | 2008-12-16 | 3 | -3/+3 |
* | Removed get context/set context calls from the CPU interface entirely. |  Aaron Giles | 2008-12-11 | 3 | -6/+0 |
* | Here's the big one.... |  Aaron Giles | 2008-12-11 | 2 | -16/+0 |
* | Re-routed empty get/set context calls to the dummy CPU's, and removed them |  Aaron Giles | 2008-12-09 | 3 | -36/+6 |
* | Changed save state system to accept machine parameters where |  Aaron Giles | 2008-12-05 | 3 | -69/+69 |
* | CPU_IS_LE -> ENDIANNESS_LITTLE |  Aaron Giles | 2008-12-04 | 3 | -3/+3 |
* | Moves empty brackets to the same line as CPU_(GET|SET)_CONTEXT calls. |  Andrew Gardner | 2008-11-30 | 3 | -18/+6 |
* | Changed timer_alloc, timer_set, timer_pulse, timer_call_after_resynch, |  Aaron Giles | 2008-11-26 | 3 | -9/+9 |
* | Cleanups and version bump for 0.128u4.mame0128u4 |  Aaron Giles | 2008-11-24 | 4 | -10/+10 |
* | Removed NO_LEGACY_MEMORY_HANDLERS defines. |  Aaron Giles | 2008-11-24 | 3 | -6/+0 |
* | Debugger interfaces cleanup. Still more to do but this compiles and |  Aaron Giles | 2008-11-21 | 3 | -3/+3 |
* | Refactored the COP400 CPU cores to use the new memory functions. |  Curt Coder | 2008-11-19 | 5 | -14/+51 |
* | Pointerized the COP400 CPU cores. |  Curt Coder | 2008-11-18 | 8 | -621/+1680 |
* | Generalized the concept of opbase access into "direct" access. |  Aaron Giles | 2008-11-17 | 1 | -1/+1 |
* | Added "tag" parameter to state_save_register_item_* calls. Removed |  Aaron Giles | 2008-11-17 | 2 | -44/+44 |
* | This patch replaces the Machine parameter where an running_machine * |  Aaron Giles | 2008-11-13 | 2 | -4/+2 |
* | Major cpuintrf changes: |  Aaron Giles | 2008-11-10 | 3 | -10/+10 |
* | Populated tag and static_config parts of fake CPU device. Removed 'config' |  Aaron Giles | 2008-11-09 | 2 | -2/+2 |