Implement ALIGN keyword in rgbasm

The ALIGN keyword specifies the number of bits that should be zero at the start of a section. It works in a simliar fashion to BANK.
This commit is contained in:
Ben10do
2017-02-23 15:00:57 +00:00
parent 1b05c43b97
commit 1ab93a194e
3 changed files with 18 additions and 2 deletions

View File

@@ -267,6 +267,7 @@ struct sLexInitString staticstrings[] = {
{"def", T_OP_DEF},
{"bank", T_OP_BANK},
{"align", T_OP_ALIGN},
{"round", T_OP_ROUND},
{"ceil", T_OP_CEIL},