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}`);
|
||||
} else if (arg_str.startsWith("(")) {
|
||||
// Handle indirect expressions
|
||||
dbg(2, "INDIRECT");
|
||||
addressingMode = "indirect";
|
||||
arg_str = arg_str.replace("(", "");
|
||||
arg_str = arg_str.replace(")", "");
|
||||
}
|
||||
|
||||
// Handle numeric operands
|
||||
dbg(2, `ARG NUM ${arg_num}`);
|
||||
if (arg_num === null) {
|
||||
dbg(2, `ARG STR ${arg_str}`);
|
||||
if (arg_str.startsWith("$")) {
|
||||
// Handle hex
|
||||
arg_str = arg_str.replace("$", "");
|
||||
|
|
|
|||
Loading…
Reference in New Issue