From d1f48356647902b1fd8f87b7425f8040e2e072a6 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 30 Nov 2024 11:58:42 +0000 Subject: Removed printf warnings for unstable undocumented opcodes in 6502. --- src/6502.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/6502.c b/src/6502.c index 9a19ef4..0b23b97 100644 --- a/src/6502.c +++ b/src/6502.c @@ -1425,8 +1425,6 @@ static CommandStatus ANE(const char *label, int argc, char *argv[], CMD_ADDRESS_MODE(mode, address); - printf("Warning: %s is highly unstable and not recommended\n", argv[0]); - switch(mode) { case IMMEDIATE: @@ -1647,8 +1645,6 @@ static CommandStatus LXA(const char *label, int argc, char *argv[], CMD_ADDRESS_MODE(mode, address); - printf("Warning: %s is highly unstable and not recommended\n", argv[0]); - switch(mode) { case IMMEDIATE: @@ -1836,8 +1832,6 @@ static CommandStatus SHA(const char *label, int argc, char *argv[], CMD_ADDRESS_MODE(mode, address); - printf("Warning: %s is unstable\n", argv[0]); - switch(mode) { case ABSOLUTE_INDEX_Y: @@ -1865,8 +1859,6 @@ static CommandStatus SHX(const char *label, int argc, char *argv[], CMD_ADDRESS_MODE(mode, address); - printf("Warning: %s is unstable\n", argv[0]); - switch(mode) { case ABSOLUTE_INDEX_Y: @@ -1889,8 +1881,6 @@ static CommandStatus SHY(const char *label, int argc, char *argv[], CMD_ADDRESS_MODE(mode, address); - printf("Warning: %s is unstable\n", argv[0]); - switch(mode) { case ABSOLUTE_INDEX_X: -- cgit v1.2.3