~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/emu/cpu/m6502/tdeco16.c

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
OP(34) { RD_DUM; ILL; }                                                                 /* 2 ILL / 4 bit zpx ?? */
143
143
OP(54) { RD_DUM; ILL; }                                                                 /* 2 ILL */
144
144
OP(74) { RD_DUM; ILL; }                                                                 /* 2 ILL / 4 stz zpx ?? */
145
 
OP(94) { RD_DUM; ILL; }                                                                 /* 2 ILL / 4 sty zpx ?? */
 
145
#define deco16_94 m6502_94                                                              /* 4 sty zpx */
146
146
#define deco16_b4 m6502_b4                                                              /* 4 ldy zpx */
147
147
OP(d4) { RD_DUM; ILL; }                                                                 /* 2 ILL */
148
148
OP(f4) { RD_DUM; ILL; }                                                                 /* 2 ILL */
272
272
                                }
273
273
OP(2b) { RD_DUM; ILL; }                                                                 /* 2 ILL */
274
274
OP(4b) { int tmp; cpustate->icount -= 1; RD_IMM;
275
 
        logerror("%04x: OP4B %02x\n",PCW,tmp);
276
 
 
277
 
//  cpustate->a=memory_read_byte_8le(cpustate->io,0);
 
275
        //logerror("%04x: OP4B %02x\n",PCW,tmp);
 
276
        /* TODO: Maybe it's just read I/O 0 and do a logic AND with bit 1? */
 
277
        cpustate->a=memory_read_byte_8le(cpustate->io,1);
278
278
 
279
279
//tilt??
280
280
 
364
364
OP(4f) { RD_DUM; ILL; }                                                                 /* 2 ILL / 5 BBR4 ZPG ?? */
365
365
OP(6f) { RD_DUM; ILL; }                                                                 /* 2 ILL / 5 BBR6 ZPG ?? */
366
366
OP(8f) { int tmp; cpustate->icount -= 1; RD_IMM;
 
367
        #ifdef MAME_DEBUG
367
368
        logerror("%04x: BANK (8F) %02x\n",PCW,tmp);
 
369
        #endif
368
370
 
369
371
        memory_write_byte_8le(cpustate->io,0,tmp);
370
372