Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nesasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlameCyclone <1490868135@qq.com>2023-08-07 12:17:39 +0300
committerFlameCyclone <1490868135@qq.com>2023-08-07 12:17:39 +0300
commitce0bd1bfce549988069323e5c4e5b35cc67365e9 (patch)
tree150825485b1ac9e91e4f71c3e6b90d08b392e388
parent937dda9c769d2c418eb49515a8ab853963c04ced (diff)
Supplement omissions
-rw-r--r--source/inst.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/inst.h b/source/inst.h
index 4d502e0..40bd517 100644
--- a/source/inst.h
+++ b/source/inst.h
@@ -61,7 +61,7 @@ struct t_opcode base_inst[57] = {
};
/* pseudo instruction table */
-struct t_opcode base_pseudo[78] = {
+struct t_opcode base_pseudo[79] = {
{NULL, "=", do_equ, PSEUDO, P_EQU, 0},
{NULL, "BANK", do_bank, PSEUDO, P_BANK, 0},
@@ -102,6 +102,7 @@ struct t_opcode base_pseudo[78] = {
{NULL, "RS", do_rs, PSEUDO, P_RS, 0},
{NULL, "WORD", do_dw, PSEUDO, P_DW, 0},
{NULL, "ZP", do_section, PSEUDO, P_ZP, S_ZP},
+ {NULL, "STR", do_str, PSEUDO, P_STR, 0},
{NULL, ".BANK", do_bank, PSEUDO, P_BANK, 0},
{NULL, ".BSS", do_section, PSEUDO, P_BSS, S_BSS},