Browse Source

update private, update script_language.h

SBird1337 7 years ago
parent
commit
915bebbed3
2 changed files with 5 additions and 5 deletions
  1. 1
    1
      sots-private
  2. 4
    4
      src/include/script_language.h

+ 1
- 1
sots-private

1
-Subproject commit 378ab536a037e2f33ee5c56f6617c50139612b81
1
+Subproject commit 978a2232190e649a93d63a3d00cc9233f4b0b6c3

+ 4
- 4
src/include/script_language.h View File

129
 
129
 
130
 @@ Index commands
130
 @@ Index commands
131
 
131
 
132
-.macro nope
132
+.macro nop
133
 .byte 0x0
133
 .byte 0x0
134
 .endm
134
 .endm
135
 
135
 
136
-.macro nop
136
+.macro nop1
137
 .byte 0x1
137
 .byte 0x1
138
 .endm
138
 .endm
139
 
139
 
155
 .word \goto_address
155
 .word \goto_address
156
 .endm
156
 .endm
157
 
157
 
158
-.macro if1 if1_value if1_pointer
158
+.macro callif if1_value if1_pointer
159
 .byte 0x6
159
 .byte 0x6
160
 .byte \if1_value
160
 .byte \if1_value
161
 .word \if1_address
161
 .word \if1_address
162
 .endm
162
 .endm
163
 
163
 
164
-.macro if2 if2_value if2_pointer
164
+.macro gotoif if2_value if2_pointer
165
 .byte 0x7
165
 .byte 0x7
166
 .byte \if2_value
166
 .byte \if2_value
167
 .word \if2_address
167
 .word \if2_address