Previous 199869 Revisions Next

r21637 Wednesday 6th March, 2013 at 14:10:52 UTC by smf
pass this instead of NULL and options instead of 0 in the class based cpu cores (nw)
[src/emu/cpu/adsp2100]adsp2100.c
[src/emu/cpu/asap]asap.c
[src/emu/cpu/avr8]avr8.c
[src/emu/cpu/cosmac]cosmac.c
[src/emu/cpu/dsp16]dsp16.c
[src/emu/cpu/dsp32]dsp32.c
[src/emu/cpu/hd61700]hd61700.c
[src/emu/cpu/i8008]i8008.c
[src/emu/cpu/lr35902]lr35902.c
[src/emu/cpu/m6809]hd6309.c konami.c
[src/emu/cpu/mips]r3000.c
[src/emu/cpu/sm8500]sm8500.c
[src/emu/cpu/tms32031]tms32031.c
[src/emu/cpu/upd7725]upd7725.c

trunk/src/emu/cpu/i8008/i8008.c
r21636r21637
229229offs_t i8008_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
230230{
231231   extern CPU_DISASSEMBLE( i8008 );
232   return CPU_DISASSEMBLE_NAME(i8008)(NULL, buffer, pc, oprom, opram, 0);
232   return CPU_DISASSEMBLE_NAME(i8008)(this, buffer, pc, oprom, opram, options);
233233}
234234
235235//**************************************************************************
trunk/src/emu/cpu/lr35902/lr35902.c
r21636r21637
231231offs_t lr35902_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
232232{
233233   extern CPU_DISASSEMBLE( lr35902 );
234   return CPU_DISASSEMBLE_NAME( lr35902 )(NULL, buffer, pc, oprom, opram, 0);
234   return CPU_DISASSEMBLE_NAME(lr35902)(this, buffer, pc, oprom, opram, options);
235235}
236236
237237
trunk/src/emu/cpu/tms32031/tms32031.c
r21636r21637
632632offs_t tms3203x_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
633633{
634634   extern CPU_DISASSEMBLE( tms3203x );
635   return CPU_DISASSEMBLE_NAME(tms3203x)(NULL, buffer, pc, oprom, opram, 0);
635   return CPU_DISASSEMBLE_NAME(tms3203x)(this, buffer, pc, oprom, opram, options);
636636}
637637
638638
trunk/src/emu/cpu/avr8/avr8.c
r21636r21637
630630offs_t avr8_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
631631{
632632   extern CPU_DISASSEMBLE( avr8 );
633   return CPU_DISASSEMBLE_NAME(avr8)(NULL, buffer, pc, oprom, opram, 0);
633   return CPU_DISASSEMBLE_NAME(avr8)(this, buffer, pc, oprom, opram, options);
634634}
635635
636636
trunk/src/emu/cpu/hd61700/hd61700.c
r21636r21637
289289offs_t hd61700_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
290290{
291291   extern CPU_DISASSEMBLE( hd61700 );
292   return CPU_DISASSEMBLE_NAME(hd61700)(NULL, buffer, pc, oprom, opram, 0);
292   return CPU_DISASSEMBLE_NAME(hd61700)(this, buffer, pc, oprom, opram, options);
293293}
294294
295295
trunk/src/emu/cpu/adsp2100/adsp2100.c
r21636r21637
808808offs_t adsp21xx_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
809809{
810810   extern CPU_DISASSEMBLE( adsp21xx );
811   return CPU_DISASSEMBLE_NAME(adsp21xx)(NULL, buffer, pc, oprom, opram, 0);
811   return CPU_DISASSEMBLE_NAME(adsp21xx)(this, buffer, pc, oprom, opram, options);
812812}
813813
814814
trunk/src/emu/cpu/dsp16/dsp16.c
r21636r21637
251251offs_t dsp16_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
252252{
253253   extern CPU_DISASSEMBLE( dsp16a );
254   return CPU_DISASSEMBLE_NAME(dsp16a)(NULL, buffer, pc, oprom, opram, 0);
254   return CPU_DISASSEMBLE_NAME(dsp16a)(this, buffer, pc, oprom, opram, options);
255255}
256256
257257
trunk/src/emu/cpu/upd7725/upd7725.c
r21636r21637
327327offs_t necdsp_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
328328{
329329   extern CPU_DISASSEMBLE( upd7725 );
330   return CPU_DISASSEMBLE_NAME(upd7725)(NULL, buffer, pc, oprom, opram, 0);
330   return CPU_DISASSEMBLE_NAME(upd7725)(this, buffer, pc, oprom, opram, options);
331331}
332332
333333void necdsp_device::execute_run()
trunk/src/emu/cpu/m6809/hd6309.c
r21636r21637
207207offs_t hd6309_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
208208{
209209   extern CPU_DISASSEMBLE( hd6309 );
210   return CPU_DISASSEMBLE_NAME(hd6309)(NULL, buffer, pc, oprom, opram, options);
210   return CPU_DISASSEMBLE_NAME(hd6309)(this, buffer, pc, oprom, opram, options);
211211}
212212
213213
trunk/src/emu/cpu/m6809/konami.c
r21636r21637
111111offs_t konami_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
112112{
113113   extern CPU_DISASSEMBLE( konami );
114   return CPU_DISASSEMBLE_NAME(konami)(NULL, buffer, pc, oprom, opram, options);
114   return CPU_DISASSEMBLE_NAME(konami)(this, buffer, pc, oprom, opram, options);
115115}
116116
117117
trunk/src/emu/cpu/sm8500/sm8500.c
r21636r21637
341341offs_t sm8500_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
342342{
343343   extern CPU_DISASSEMBLE( sm8500 );
344   return CPU_DISASSEMBLE_NAME( sm8500 )(NULL, buffer, pc, oprom, opram, 0);
344   return CPU_DISASSEMBLE_NAME(sm8500)(this, buffer, pc, oprom, opram, options);
345345}
346346
347347
trunk/src/emu/cpu/cosmac/cosmac.c
r21636r21637
419419offs_t cosmac_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
420420{
421421   extern CPU_DISASSEMBLE( cosmac );
422   return CPU_DISASSEMBLE_NAME(cosmac)(NULL, buffer, pc, oprom, opram, 0);
422   return CPU_DISASSEMBLE_NAME(cosmac)(this, buffer, pc, oprom, opram, options);
423423}
424424
425425
trunk/src/emu/cpu/mips/r3000.c
r21636r21637
486486   extern CPU_DISASSEMBLE( r3000be );
487487
488488   if (m_endianness == ENDIANNESS_BIG)
489      return CPU_DISASSEMBLE_NAME(r3000be)(NULL, buffer, pc, oprom, opram, 0);
489      return CPU_DISASSEMBLE_NAME(r3000be)(this, buffer, pc, oprom, opram, options);
490490   else
491      return CPU_DISASSEMBLE_NAME(r3000le)(NULL, buffer, pc, oprom, opram, 0);
491      return CPU_DISASSEMBLE_NAME(r3000le)(this, buffer, pc, oprom, opram, options);
492492}
493493
494494
trunk/src/emu/cpu/asap/asap.c
r21636r21637
357357offs_t asap_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
358358{
359359   extern CPU_DISASSEMBLE( asap );
360   return CPU_DISASSEMBLE_NAME(asap)(NULL, buffer, pc, oprom, opram, 0);
360   return CPU_DISASSEMBLE_NAME(asap)(this, buffer, pc, oprom, opram, options);
361361}
362362
363363
trunk/src/emu/cpu/dsp32/dsp32.c
r21636r21637
469469offs_t dsp32c_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
470470{
471471   extern CPU_DISASSEMBLE( dsp32c );
472   return CPU_DISASSEMBLE_NAME(dsp32c)(NULL, buffer, pc, oprom, opram, 0);
472   return CPU_DISASSEMBLE_NAME(dsp32c)(this, buffer, pc, oprom, opram, options);
473473}
474474
475475

Previous 199869 Revisions Next


© 1997-2024 The MAME Team