diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-11-30 11:58:42 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-11-30 11:58:42 +0000 |
commit | d1f48356647902b1fd8f87b7425f8040e2e072a6 (patch) | |
tree | b2345cca6714090eae50af580d088cc6fc64e932 | |
parent | aabca199127442c9e094f77fe71c2f295664568a (diff) |
Removed printf warnings for unstable undocumented opcodes in 6502.
-rw-r--r-- | src/6502.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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: |