diff options
author | 2008-11-17 18:33:10 +0000 | |
---|---|---|
committer | 2008-11-17 18:33:10 +0000 | |
commit | e7c418ef0fccb0c316f8afef4b87e347141a474d (patch) | |
tree | 3c10861632813ef91fc9bb435fda216053b489d8 /src/emu/cpu/asap/asapdasm.c | |
parent | cd6f509841d892d4d195aad6c2a7b05b45f55f78 (diff) |
Generalized the concept of opbase access into "direct" access.
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.
Diffstat (limited to 'src/emu/cpu/asap/asapdasm.c')
-rw-r--r-- | src/emu/cpu/asap/asapdasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/asap/asapdasm.c b/src/emu/cpu/asap/asapdasm.c index 6d27d6f20c8..85aba5d7d22 100644 --- a/src/emu/cpu/asap/asapdasm.c +++ b/src/emu/cpu/asap/asapdasm.c @@ -32,7 +32,7 @@ static const char *const condition[16] = MEMORY ACCESSORS ***************************************************************************/ -#define ROPCODE(pc) cpu_readop32(pc) +#define ROPCODE(pc) program_decrypted_read_dword(pc) /*************************************************************************** |