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

« back to all changes in this revision

Viewing changes to src/emu/cpu/i960/i960dis.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:
154
154
 
155
155
#define READ32(dis,offs) ((dis)->oprom[(offs) + 0] | ((dis)->oprom[(offs) + 1] << 8) | ((dis)->oprom[(offs) + 2] << 16) | ((dis)->oprom[(offs) + 3] << 24))
156
156
 
157
 
char *i960_disassemble(disassemble_t *diss)
 
157
static char *i960_disassemble(disassemble_t *diss)
158
158
{
159
159
        unsigned char op,op2;
160
160
        unsigned char mode, modeh, model;
289
289
 
290
290
 
291
291
 
 
292
CPU_DISASSEMBLE( i960  )
 
293
{
 
294
        disassemble_t dis;
 
295
 
 
296
        dis.IP = pc;
 
297
        dis.buffer = buffer;
 
298
        dis.oprom = oprom;
 
299
 
 
300
        i960_disassemble(&dis);
 
301
 
 
302
        return dis.IPinc | dis.disflags | DASMFLAG_SUPPORTED;
 
303
}
 
304