1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-01-03 00:29:38 +00:00

Remove log statements

This commit is contained in:
Peter Evans 2018-03-30 20:06:59 -05:00
parent 54708e5110
commit 07a8a385f5

View File

@ -116,8 +116,6 @@ DEFINE_INST(ply)
*/ */
DEFINE_INST(sta) DEFINE_INST(sta)
{ {
log_debug("STA eff_addr:%04x next:%02x prev:%02x",
cpu->eff_addr, cpu->A, mos6502_get(cpu, cpu->eff_addr));
mos6502_set(cpu, cpu->eff_addr, cpu->A); mos6502_set(cpu, cpu->eff_addr, cpu->A);
} }
@ -126,8 +124,6 @@ DEFINE_INST(sta)
*/ */
DEFINE_INST(stx) DEFINE_INST(stx)
{ {
log_debug("STA eff_addr:%04x next:%02x prev:%02x",
cpu->eff_addr, cpu->X, mos6502_get(cpu, cpu->eff_addr));
mos6502_set(cpu, cpu->eff_addr, cpu->X); mos6502_set(cpu, cpu->eff_addr, cpu->X);
} }
@ -136,8 +132,6 @@ DEFINE_INST(stx)
*/ */
DEFINE_INST(sty) DEFINE_INST(sty)
{ {
log_debug("STA eff_addr:%04x next:%02x prev:%02x",
cpu->eff_addr, cpu->Y, mos6502_get(cpu, cpu->eff_addr));
mos6502_set(cpu, cpu->eff_addr, cpu->Y); mos6502_set(cpu, cpu->eff_addr, cpu->Y);
} }