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

« back to all changes in this revision

Viewing changes to src/emu/cpu/ssp1601/ssp1601d.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:
78
78
}
79
79
 
80
80
 
81
 
unsigned dasm_ssp1601(char *buffer, unsigned pc, const UINT8 *oprom)
 
81
static unsigned dasm_ssp1601(char *buffer, unsigned pc, const UINT8 *oprom)
82
82
{
83
83
        const UINT8 *base_oprom;
84
84
        UINT16 op;
288
288
}
289
289
 
290
290
// vim:ts=4
 
291
 
 
292
CPU_DISASSEMBLE( ssp1601 )
 
293
{
 
294
        //ssp1601_state_t *ssp1601_state = get_safe_token(device);
 
295
 
 
296
        return dasm_ssp1601(buffer, pc, oprom);
 
297
}
 
298
 
 
299