| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Move all devices into separate part of src tree (nw) | 2015-09-13 | 3 | -2197/+0 | |
| | | |||||
| * | memory: Remove support for decrypted bases, use an address space instead [O. ↵ | 2015-06-24 | 1 | -2/+2 | |
| | | | | | Galibert] | ||||
| * | changes for Juergen Buchmueller in core and credits for some files in mess(nw) | 2015-05-07 | 3 | -3/+3 | |
| | | |||||
| * | moved all to std::string (nw) | 2015-04-22 | 2 | -3/+3 | |
| | | |||||
| * | string -> str rename due to future conflicts (nw) | 2015-04-12 | 2 | -3/+3 | |
| | | |||||
| * | Fix various typos and spelling mistakes | 2015-04-11 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | I'm purposefully leaving /src/emu/bus/cbmiec/c1541.c's kernal.bin as it is, as this particular spelling mistake was originally made by Robert Russell, therefore is canon. See http://en.wikipedia.org/wiki/KERNAL for details. I'm also leaving /src/emu/machine/nscsi_bus.c's RECIEVE as I don't want to break anything, but it's worth someone looking into. I renamed some variables in /src/mame/drivers/sfbonus.c, /src/mame/video/tia.c and /src/mame/video/tia.h, so if anyone wants to verify I didn't break anything, that would be nice. | ||||
| * | Cleanups and version bumpmame0157 | 2014-12-31 | 3 | -731/+731 | |
| | | |||||
| * | Clean up and fix comments (nw) | 2014-12-16 | 2 | -237/+241 | |
| | | |||||
| * | Add preliminary emulation of the Rockwell A17XX chips (ROM, RAM, I/O) and ↵ | 2014-12-14 | 1 | -1/+3 | |
| | | | | | fix device names in gts1 (nw) | ||||
| * | Fix the TM disassembly. Don't set m_I in ROP() and don't set m_I2 in ARG(). (nw) | 2014-12-07 | 2 | -68/+80 | |
| | | |||||
| * | Oops. That was wrong. BU is always 0000 in LBL (nw) | 2014-12-07 | 1 | -3/+2 | |
| | | |||||
| * | Fix previous opcode detection for LB and LBL. Fix disassembler for LBL (nw) | 2014-12-07 | 2 | -7/+8 | |
| | | |||||
| * | Add chip pinouts for 10660 and 11660 (nw) | 2014-12-05 | 1 | -0/+27 | |
| | | |||||
| * | Fix cut+paste, typos and some implementation bugs (nw) | 2014-12-04 | 1 | -37/+34 | |
| | | |||||
| * | Introduc m_Skip to skip ops. Clean up + fixes (nw) | 2014-12-04 | 3 | -341/+355 | |
| | | |||||
| * | Rewrote Rockwell PPS-4 CPU core based on bitsavers.org documents | 2014-12-03 | 3 | -489/+2012 | |
| | | |||||
| * | pps4 / gts1 : added notes | 2014-07-31 | 1 | -0/+20 | |
| | | |||||
| * | Marking some of my core files (nw) | 2013-10-16 | 3 | -4/+6 | |
| | | |||||
| * | Cleanups and version bumpmame0150 | 2013-09-17 | 1 | -1/+0 | |
| | | |||||
| * | pps4.c: Modernized cpu core (nw) | 2013-09-05 | 2 | -204/+184 | |
| | | |||||
| * | added missing short names to legacy devices and added validation that short ↵ | 2013-08-23 | 1 | -0/+1 | |
| | | | | | name is always mandatory (nw) | ||||
| * | Cleanups and version bumpmame0148 | 2013-01-11 | 2 | -240/+240 | |
| | | |||||
| * | Since nobody checks for NULLs anyway, make | 2012-09-19 | 1 | -3/+3 | |
| | | | | | | | | | | | | | device_memory_interface::space() assert against NULL and return a reference, and pushed references throughout all address space usage in the system. Added a has_space() method to check for those rare case when it is ambiguous. [Aaron Giles] Also reinstated the generic space and added fatal error handlers if anyone tries to actually read/write from it. | ||||
| * | First pass at modernizing struct definitions. | 2012-09-15 | 1 | -2/+1 | |
| | | |||||
| * | DEVINFO_* to CPU_INFO_*, and some cleanups (no whatsnew) | 2012-09-03 | 1 | -15/+15 | |
| | | |||||
| * | Cleanups and version bump.mame0142 | 2011-04-03 | 1 | -2/+2 | |
| | | |||||
| * | Created new enum type address_spacenum for specifying an address | 2011-03-27 | 1 | -9/+9 | |
| | | | | | | | | | | | | | space by index. Update functions and methods that accepted an address space index to take an address_spacenum instead. Note that this means you can't use a raw integer in ADDRESS_SPACE macros, so instead of 0 use the enumerated AS_0. Standardized the project on the shortened constants AS_* over the older ADDRESS_SPACE_*. Removed the latter to prevent confusion. Also centralized the location of these definitions to memory.h. | ||||
| * | Remove some straggling const address_space references, and get rid of | 2011-03-17 | 1 | -3/+3 | |
| | | | | | explicit const_casts in memory.h. | ||||
| * | Get rid of state_save_register_device_* macros in favor of direct | 2011-02-09 | 1 | -9/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | calls on the device object. Regex used: state_save_register_device_item( *)\(( *)([^,]+), *([^,]+),( *)([^ )]+)( *)\) \3->save_item\1\(\2NAME\(\6\),\5\4\7\) state_save_register_device_item_array( *)\(( *)([^,]+), *([^,]+),( *)([^ )]+)( *)\) \3->save_item\1\(\2NAME\(\6\),\5\4\7\) state_save_register_device_item_2d_array( *)\(( *)([^,]+), *([^,]+),( *)([^ )]+)( *)\) \3->save_item\1\(\2NAME\(\6\),\5\4\7\) state_save_register_device_item_bitmap( *)\(( *)([^,]+), *([^,]+),( *)([^ )]+)( *)\) \3->save_item\1\(\2NAME\(\*\6\),\5\4\7\) state_save_register_device_item_pointer( *)\(( *)([^,]+), *([^,]+),( *)([^,]+), *([^ )]+)( *)\) \3->save_pointer\1\(\2NAME\(\6\),\5\7,\5\4\8\) this->save_ save_ (save_item[^;]+), *0( *)\); \1\2\); (save_pointer[^;]+), *0( *)\); \1\2\); | ||||
| * | Cleanups and version bump.mame0141u1 | 2011-01-24 | 2 | -33/+33 | |
| | | |||||
| * | - Added Rockwell PPS4 CPU core (not finished) [Miodrag Milanovic] | 2011-01-01 | 3 | -0/+617 | |
| - Added GAME_MECHANICAL flag to mark games having mechanical interface (such as pinball,redemption, bowling games ...) - Imported games from PinMAME as skeletons | |||||
