comparison musashi/m68kcpu.c @ 1774:ddcd59a6122e mame_interp

Remove debug printf
author Michael Pavone <pavone@retrodev.com>
date Tue, 12 Mar 2019 22:05:40 -0700
parents a81db00e171a
children 30b5952fd32e
comparison
equal deleted inserted replaced
1773:0a26f3657295 1774:ddcd59a6122e
684 /* Set tracing accodring to T1. (T0 is done inside instruction) */ 684 /* Set tracing accodring to T1. (T0 is done inside instruction) */
685 m68ki_trace_t1(this); /* auto-disable (see m68kcpu.h) */ 685 m68ki_trace_t1(this); /* auto-disable (see m68kcpu.h) */
686 686
687 /* Record previous program counter */ 687 /* Record previous program counter */
688 REG_PPC(this) = REG_PC(this); 688 REG_PPC(this) = REG_PC(this);
689 printf("M68K: %X @ %d\n", this->pc, this->c.current_cycle); 689
690 690
691 this->run_mode = RUN_MODE_NORMAL; 691 this->run_mode = RUN_MODE_NORMAL;
692 /* Read an instruction and call its handler */ 692 /* Read an instruction and call its handler */
693 this->ir = m68ki_read_imm_16(this); 693 this->ir = m68ki_read_imm_16(this);
694 this->jump_table[this->ir](this); 694 this->jump_table[this->ir](this);