addresses are made.
git-svn-id: svn://svn.cc65.org/cc65/trunk@2800
b7a2c559-68d2-44c3-8de9-
860c34a00d81
#include <string.h>
/* common */
+#include "chartype.h"
#include "coll.h"
/* cc65 */
return;
}
+ } else if (IsDigit (Name[0]) || Name[0] == '$') {
+
+ /* A call to a numeric address. Assume that all CPU registers get
+ * used, but no memory contents are changed.
+ */
+ *Use = REG_AXY;
+ *Chg = REG_AXY;
+ return;
+
} else {
/* Search for the function in the list of builtin functions */
}
}
-
+
static cmp_t FindCmpCond (const char* Code, unsigned CodeLen)
/* Search for a compare condition by the given code using the given length */