summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/sc61860/sc.h
Commit message (Collapse)AuthorAgeFilesLines
* small cleanup (nw) Wilbert Pol2013-12-271-32/+0
|
* Removed memory context switch. Let the fun begin. Aaron Giles2008-11-241-2/+0
|
* Generalized the concept of opbase access into "direct" access. Aaron Giles2008-11-171-1/+1
| | | | | | | | Removed opbase globals to the address_space structure. Cleaned up names of pointers (decrypted and raw versus rom and ram). Added inline functions to read/write data via any address space. Added macros for existing functions to point them to the new functions. Other related cleanups.
* Final CPU header updates. Mostly just re-naming the re-inclusions. Derrick Renaud2008-08-131-1/+2
| | | | | The structures/names were getting too complex for my macros to handle. They would require hand editing and my computer is too slow to keep re-compiling. Passes a clean compile.
* From: Atari Ace [mailto:atari_ace@verizon.net] Aaron Giles2008-07-241-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Subject: [patch] Conditional code cleanup resubmit Hi mamedev, This is a resubmit of a previous patch. The earlier version would not compile with 32-bit MSVC, due to the fact that its linker required external dependencies in dead code to be met before dead code elimination was done, causing linker errors. The proper fix for this would be to add the necessary dependencies, so I instead simply left the conditional code in place in winalloc.c and chd.c. ~aa Original submission email below: ---- Conditionally compiled code tends to bitrot, so MAME should try to avoid it as much as possible. I sent a patch six months ago to eliminate conditional code associated with logging, here's another patch that does more of this. Some notes: 1. drc_ops.c: I couldn't find a LOG_CODE anywhere, so I used if (0). 2. romload.c: I converted all the users of debugload to use LOG((...)) instead, following the traditional conditional logging pattern. 3. windows/sound.c: I eliminated the separate sound log and directed the few outputs to the error log. ~aa
* Initial checkin of MAME 0.121.mame0121 Aaron Giles2007-12-171-0/+34