aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-11-30 11:58:42 +0000
committerIan C <ianc@noddybox.co.uk>2024-11-30 11:58:42 +0000
commitd1f48356647902b1fd8f87b7425f8040e2e072a6 (patch)
treeb2345cca6714090eae50af580d088cc6fc64e932
parentaabca199127442c9e094f77fe71c2f295664568a (diff)
Removed printf warnings for unstable undocumented opcodes in 6502.
-rw-r--r--src/6502.c10
1 files changed, 0 insertions, 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: