Difference between revisions of "Auto Assembler:LUA ASM"
Jump to navigation
Jump to search
(Created page with ''''Auto Assembler''' {$lua} '''Auto Assembler''' {$asm} Auto assembler scripts support section written in Lua.You can start such a section using the {$lua} keyword, and end it…') |
|||
Line 1: | Line 1: | ||
+ | [[Category:Assembler]] | ||
'''Auto Assembler''' {$lua} | '''Auto Assembler''' {$lua} | ||
Revision as of 11:34, 19 March 2017
Auto Assembler {$lua}
Auto Assembler {$asm}
Auto assembler scripts support section written in Lua.You can start such a section using the {$lua} keyword, and end it with {$asm}. The return value of such a function (if it returns a value at all) will be interpreted as normal auto assembler commands. When syntax checking, the lua sections get executed. To make sure your lua script behaves properly in those situations, check the "syntaxcheck" boolean. If it's true, then do not make permanent changes. e.g:
if syntaxcheck then return end
Of course, if your script is meant to generate code, do make it return code so that it passes the initial syntax check. (e.g label definitions etc...)
Command Parameters
<none>
Examples
{$lua} -- This is Lua code. print('Hello') {$asm} // This is Auto Assembler code 00123ABC: db 90 90 90