Remove temporary debugging prints
This commit is contained in:
parent
7fc228c705
commit
4b4715c6f3
|
|
@ -102,16 +102,13 @@ function decodeInstructions(str) {
|
||||||
dbg(2, `bytesToReplace: ${labels[label].bytesToReplace}`);
|
dbg(2, `bytesToReplace: ${labels[label].bytesToReplace}`);
|
||||||
} else if (arg_str.startsWith("(")) {
|
} else if (arg_str.startsWith("(")) {
|
||||||
// Handle indirect expressions
|
// Handle indirect expressions
|
||||||
dbg(2, "INDIRECT");
|
|
||||||
addressingMode = "indirect";
|
addressingMode = "indirect";
|
||||||
arg_str = arg_str.replace("(", "");
|
arg_str = arg_str.replace("(", "");
|
||||||
arg_str = arg_str.replace(")", "");
|
arg_str = arg_str.replace(")", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle numeric operands
|
// Handle numeric operands
|
||||||
dbg(2, `ARG NUM ${arg_num}`);
|
|
||||||
if (arg_num === null) {
|
if (arg_num === null) {
|
||||||
dbg(2, `ARG STR ${arg_str}`);
|
|
||||||
if (arg_str.startsWith("$")) {
|
if (arg_str.startsWith("$")) {
|
||||||
// Handle hex
|
// Handle hex
|
||||||
arg_str = arg_str.replace("$", "");
|
arg_str = arg_str.replace("$", "");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue