mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-02-05 21:30:52 +00:00
Implemented sprite multiplexer
This commit is contained in:
parent
3658d9f68e
commit
0f4490dfb0
@ -0,0 +1,3 @@
|
||||
tay
|
||||
txa
|
||||
sta {c1},y
|
@ -0,0 +1,3 @@
|
||||
sta {c1},x
|
||||
lda #0
|
||||
sta {c1}+1,x
|
@ -0,0 +1,2 @@
|
||||
ldy #0
|
||||
lda ({z1}),y
|
@ -0,0 +1 @@
|
||||
lda {c1},x
|
@ -0,0 +1 @@
|
||||
lda {c1},y
|
@ -0,0 +1 @@
|
||||
lda {c1},x
|
@ -0,0 +1 @@
|
||||
lda {c1},y
|
@ -0,0 +1 @@
|
||||
lda {c1}+1,x
|
@ -0,0 +1 @@
|
||||
lda {c1}+1,y
|
@ -0,0 +1 @@
|
||||
lda {c1},x
|
@ -0,0 +1 @@
|
||||
lda {c1},y
|
@ -0,0 +1,2 @@
|
||||
sec
|
||||
sbc #2
|
@ -0,0 +1,3 @@
|
||||
ldy {c2},x
|
||||
cmp {c1},y
|
||||
bcs {la1}
|
@ -0,0 +1,3 @@
|
||||
ldx {c2},y
|
||||
cmp {c1},x
|
||||
bcs {la1}
|
@ -64,6 +64,7 @@ directive
|
||||
| 'align' '(' NUMBER ')' #directiveAlign
|
||||
| 'register' '(' NAME ')' #directiveRegister
|
||||
| 'inline' #directiveInline
|
||||
| 'interrupt' #directiveInterrupt
|
||||
;
|
||||
|
||||
stmtSeq
|
||||
|
@ -64,26 +64,27 @@ T__62=63
|
||||
T__63=64
|
||||
T__64=65
|
||||
T__65=66
|
||||
MNEMONIC=67
|
||||
KICKASM=68
|
||||
SIMPLETYPE=69
|
||||
STRING=70
|
||||
CHAR=71
|
||||
BOOLEAN=72
|
||||
NUMBER=73
|
||||
NUMFLOAT=74
|
||||
BINFLOAT=75
|
||||
DECFLOAT=76
|
||||
HEXFLOAT=77
|
||||
NUMINT=78
|
||||
BININTEGER=79
|
||||
DECINTEGER=80
|
||||
HEXINTEGER=81
|
||||
NAME=82
|
||||
ASMREL=83
|
||||
WS=84
|
||||
COMMENT_LINE=85
|
||||
COMMENT_BLOCK=86
|
||||
T__66=67
|
||||
MNEMONIC=68
|
||||
KICKASM=69
|
||||
SIMPLETYPE=70
|
||||
STRING=71
|
||||
CHAR=72
|
||||
BOOLEAN=73
|
||||
NUMBER=74
|
||||
NUMFLOAT=75
|
||||
BINFLOAT=76
|
||||
DECFLOAT=77
|
||||
HEXFLOAT=78
|
||||
NUMINT=79
|
||||
BININTEGER=80
|
||||
DECINTEGER=81
|
||||
HEXINTEGER=82
|
||||
NAME=83
|
||||
ASMREL=84
|
||||
WS=85
|
||||
COMMENT_LINE=86
|
||||
COMMENT_BLOCK=87
|
||||
'import'=1
|
||||
'='=2
|
||||
';'=3
|
||||
@ -105,48 +106,49 @@ COMMENT_BLOCK=86
|
||||
'extern'=19
|
||||
'align'=20
|
||||
'register'=21
|
||||
'if'=22
|
||||
'else'=23
|
||||
'while'=24
|
||||
'do'=25
|
||||
'for'=26
|
||||
'return'=27
|
||||
'asm'=28
|
||||
'..'=29
|
||||
'signed'=30
|
||||
'*'=31
|
||||
'['=32
|
||||
']'=33
|
||||
'--'=34
|
||||
'++'=35
|
||||
'+'=36
|
||||
'-'=37
|
||||
'!'=38
|
||||
'&'=39
|
||||
'~'=40
|
||||
'>>'=41
|
||||
'<<'=42
|
||||
'/'=43
|
||||
'%'=44
|
||||
'<'=45
|
||||
'>'=46
|
||||
'=='=47
|
||||
'!='=48
|
||||
'<='=49
|
||||
'>='=50
|
||||
'^'=51
|
||||
'|'=52
|
||||
'&&'=53
|
||||
'||'=54
|
||||
'+='=55
|
||||
'-='=56
|
||||
'*='=57
|
||||
'/='=58
|
||||
'%='=59
|
||||
'<<='=60
|
||||
'>>='=61
|
||||
'&='=62
|
||||
'|='=63
|
||||
'^='=64
|
||||
'.byte'=65
|
||||
'#'=66
|
||||
'interrupt'=22
|
||||
'if'=23
|
||||
'else'=24
|
||||
'while'=25
|
||||
'do'=26
|
||||
'for'=27
|
||||
'return'=28
|
||||
'asm'=29
|
||||
'..'=30
|
||||
'signed'=31
|
||||
'*'=32
|
||||
'['=33
|
||||
']'=34
|
||||
'--'=35
|
||||
'++'=36
|
||||
'+'=37
|
||||
'-'=38
|
||||
'!'=39
|
||||
'&'=40
|
||||
'~'=41
|
||||
'>>'=42
|
||||
'<<'=43
|
||||
'/'=44
|
||||
'%'=45
|
||||
'<'=46
|
||||
'>'=47
|
||||
'=='=48
|
||||
'!='=49
|
||||
'<='=50
|
||||
'>='=51
|
||||
'^'=52
|
||||
'|'=53
|
||||
'&&'=54
|
||||
'||'=55
|
||||
'+='=56
|
||||
'-='=57
|
||||
'*='=58
|
||||
'/='=59
|
||||
'%='=60
|
||||
'<<='=61
|
||||
'>>='=62
|
||||
'&='=63
|
||||
'|='=64
|
||||
'^='=65
|
||||
'.byte'=66
|
||||
'#'=67
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7
|
||||
package dk.camelot64.kickc.parser;
|
||||
|
||||
import org.antlr.v4.runtime.ParserRuleContext;
|
||||
@ -287,6 +287,18 @@ public class KickCBaseListener implements KickCListener {
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void exitDirectiveInline(KickCParser.DirectiveInlineContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void enterDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation does nothing.</p>
|
||||
*/
|
||||
@Override public void exitDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx) { }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7
|
||||
package dk.camelot64.kickc.parser;
|
||||
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
|
||||
|
||||
@ -172,6 +172,13 @@ public class KickCBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements
|
||||
* {@link #visitChildren} on {@code ctx}.</p>
|
||||
*/
|
||||
@Override public T visitDirectiveInline(KickCParser.DirectiveInlineContext ctx) { return visitChildren(ctx); }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* <p>The default implementation returns the result of calling
|
||||
* {@link #visitChildren} on {@code ctx}.</p>
|
||||
*/
|
||||
@Override public T visitDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx) { return visitChildren(ctx); }
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7
|
||||
package dk.camelot64.kickc.parser;
|
||||
import org.antlr.v4.runtime.Lexer;
|
||||
import org.antlr.v4.runtime.CharStream;
|
||||
@ -26,10 +26,10 @@ public class KickCLexer extends Lexer {
|
||||
T__45=46, T__46=47, T__47=48, T__48=49, T__49=50, T__50=51, T__51=52,
|
||||
T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59,
|
||||
T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66,
|
||||
MNEMONIC=67, KICKASM=68, SIMPLETYPE=69, STRING=70, CHAR=71, BOOLEAN=72,
|
||||
NUMBER=73, NUMFLOAT=74, BINFLOAT=75, DECFLOAT=76, HEXFLOAT=77, NUMINT=78,
|
||||
BININTEGER=79, DECINTEGER=80, HEXINTEGER=81, NAME=82, ASMREL=83, WS=84,
|
||||
COMMENT_LINE=85, COMMENT_BLOCK=86;
|
||||
T__66=67, MNEMONIC=68, KICKASM=69, SIMPLETYPE=70, STRING=71, CHAR=72,
|
||||
BOOLEAN=73, NUMBER=74, NUMFLOAT=75, BINFLOAT=76, DECFLOAT=77, HEXFLOAT=78,
|
||||
NUMINT=79, BININTEGER=80, DECINTEGER=81, HEXINTEGER=82, NAME=83, ASMREL=84,
|
||||
WS=85, COMMENT_LINE=86, COMMENT_BLOCK=87;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
@ -47,21 +47,21 @@ public class KickCLexer extends Lexer {
|
||||
"T__41", "T__42", "T__43", "T__44", "T__45", "T__46", "T__47", "T__48",
|
||||
"T__49", "T__50", "T__51", "T__52", "T__53", "T__54", "T__55", "T__56",
|
||||
"T__57", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "T__64",
|
||||
"T__65", "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN",
|
||||
"NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
|
||||
"DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME",
|
||||
"NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
"T__65", "T__66", "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR",
|
||||
"BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT",
|
||||
"BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT",
|
||||
"NAME", "NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
};
|
||||
|
||||
private static final String[] _LITERAL_NAMES = {
|
||||
null, "'import'", "'='", "';'", "'('", "')'", "'{'", "'}'", "'kickasm'",
|
||||
"','", "'resource'", "'clobber'", "'param'", "':'", "'bytes'", "'cycles'",
|
||||
"'pc'", "'inline'", "'const'", "'extern'", "'align'", "'register'", "'if'",
|
||||
"'else'", "'while'", "'do'", "'for'", "'return'", "'asm'", "'..'", "'signed'",
|
||||
"'*'", "'['", "']'", "'--'", "'++'", "'+'", "'-'", "'!'", "'&'", "'~'",
|
||||
"'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", "'<='", "'>='",
|
||||
"'^'", "'|'", "'&&'", "'||'", "'+='", "'-='", "'*='", "'/='", "'%='",
|
||||
"'<<='", "'>>='", "'&='", "'|='", "'^='", "'.byte'", "'#'"
|
||||
"'pc'", "'inline'", "'const'", "'extern'", "'align'", "'register'", "'interrupt'",
|
||||
"'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'asm'", "'..'",
|
||||
"'signed'", "'*'", "'['", "']'", "'--'", "'++'", "'+'", "'-'", "'!'",
|
||||
"'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='",
|
||||
"'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'+='", "'-='", "'*='",
|
||||
"'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'.byte'", "'#'"
|
||||
};
|
||||
private static final String[] _SYMBOLIC_NAMES = {
|
||||
null, null, null, null, null, null, null, null, null, null, null, null,
|
||||
@ -69,10 +69,10 @@ public class KickCLexer extends Lexer {
|
||||
null, null, null, null, null, null, null, null, null, null, null, null,
|
||||
null, null, null, null, null, null, null, null, null, null, null, null,
|
||||
null, null, null, null, null, null, null, null, null, null, null, null,
|
||||
null, null, null, null, null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE",
|
||||
"STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT",
|
||||
"HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME",
|
||||
"ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM",
|
||||
"SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
|
||||
"DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
|
||||
"NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
};
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
@ -132,7 +132,7 @@ public class KickCLexer extends Lexer {
|
||||
public ATN getATN() { return _ATN; }
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2X\u036c\b\1\4\2\t"+
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2Y\u0378\b\1\4\2\t"+
|
||||
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
|
||||
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
|
||||
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
|
||||
@ -142,313 +142,317 @@ public class KickCLexer extends Lexer {
|
||||
"\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+
|
||||
"\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+
|
||||
"\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+
|
||||
"\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\3\2\3\2\3\2\3\2\3\2"+
|
||||
"\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\t\3"+
|
||||
"\t\3\t\3\t\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13"+
|
||||
"\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\17"+
|
||||
"\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21"+
|
||||
"\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23"+
|
||||
"\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\26"+
|
||||
"\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3\30\3\30"+
|
||||
"\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33"+
|
||||
"\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\36\3\36"+
|
||||
"\3\36\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3!\3!\3\"\3\"\3#\3#\3#"+
|
||||
"\3$\3$\3$\3%\3%\3&\3&\3\'\3\'\3(\3(\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3-\3"+
|
||||
"-\3.\3.\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3"+
|
||||
"\63\3\64\3\64\3\65\3\65\3\66\3\66\3\66\3\67\3\67\3\67\38\38\38\39\39\3"+
|
||||
"9\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3=\3=\3=\3>\3>\3>\3>\3?\3?\3?\3@\3@\3"+
|
||||
"@\3A\3A\3A\3B\3B\3B\3B\3B\3B\3C\3C\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3"+
|
||||
"D\3D\3D\3D\5D\u028d\nD\3E\3E\3E\3E\7E\u0293\nE\fE\16E\u0296\13E\3E\3E"+
|
||||
"\3E\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\5F"+
|
||||
"\u02b0\nF\3G\3G\3G\3G\7G\u02b6\nG\fG\16G\u02b9\13G\3G\3G\3H\3H\3H\3H\5"+
|
||||
"H\u02c1\nH\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\5I\u02ce\nI\3J\3J\5J\u02d2"+
|
||||
"\nJ\3K\3K\3K\5K\u02d7\nK\3L\3L\3L\3L\3L\5L\u02de\nL\3L\7L\u02e1\nL\fL"+
|
||||
"\16L\u02e4\13L\3L\3L\6L\u02e8\nL\rL\16L\u02e9\3M\7M\u02ed\nM\fM\16M\u02f0"+
|
||||
"\13M\3M\3M\6M\u02f4\nM\rM\16M\u02f5\3N\3N\3N\3N\3N\5N\u02fd\nN\3N\7N\u0300"+
|
||||
"\nN\fN\16N\u0303\13N\3N\3N\6N\u0307\nN\rN\16N\u0308\3O\3O\3O\5O\u030e"+
|
||||
"\nO\3P\3P\3P\6P\u0313\nP\rP\16P\u0314\3P\3P\6P\u0319\nP\rP\16P\u031a\5"+
|
||||
"P\u031d\nP\3Q\6Q\u0320\nQ\rQ\16Q\u0321\3R\3R\3R\3R\3R\5R\u0329\nR\3R\6"+
|
||||
"R\u032c\nR\rR\16R\u032d\3S\3S\3T\3T\3U\3U\3V\3V\7V\u0338\nV\fV\16V\u033b"+
|
||||
"\13V\3W\3W\3X\3X\3Y\3Y\7Y\u0343\nY\fY\16Y\u0346\13Y\3Y\6Y\u0349\nY\rY"+
|
||||
"\16Y\u034a\3Z\6Z\u034e\nZ\rZ\16Z\u034f\3Z\3Z\3[\3[\3[\3[\7[\u0358\n[\f"+
|
||||
"[\16[\u035b\13[\3[\3[\3\\\3\\\3\\\3\\\7\\\u0363\n\\\f\\\16\\\u0366\13"+
|
||||
"\\\3\\\3\\\3\\\3\\\3\\\4\u0294\u0364\2]\3\3\5\4\7\5\t\6\13\7\r\b\17\t"+
|
||||
"\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27"+
|
||||
"-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W"+
|
||||
"-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u<w=y>{?}@\177A\u0081B\u0083"+
|
||||
"C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097"+
|
||||
"M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5\2\u00a7\2\u00a9\2\u00ab"+
|
||||
"T\u00ad\2\u00af\2\u00b1U\u00b3V\u00b5W\u00b7X\3\2\r\3\2$$\3\2))\4\2DD"+
|
||||
"dd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\5\2"+
|
||||
"\13\f\17\17\"\"\4\2\f\f\17\17\2\u03d4\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2"+
|
||||
"\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2"+
|
||||
"\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3"+
|
||||
"\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3"+
|
||||
"\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65"+
|
||||
"\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3"+
|
||||
"\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2"+
|
||||
"\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2"+
|
||||
"[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3"+
|
||||
"\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2"+
|
||||
"\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2"+
|
||||
"\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089"+
|
||||
"\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2"+
|
||||
"\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b"+
|
||||
"\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2"+
|
||||
"\2\2\u00ab\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7"+
|
||||
"\3\2\2\2\3\u00b9\3\2\2\2\5\u00c0\3\2\2\2\7\u00c2\3\2\2\2\t\u00c4\3\2\2"+
|
||||
"\2\13\u00c6\3\2\2\2\r\u00c8\3\2\2\2\17\u00ca\3\2\2\2\21\u00cc\3\2\2\2"+
|
||||
"\23\u00d4\3\2\2\2\25\u00d6\3\2\2\2\27\u00df\3\2\2\2\31\u00e7\3\2\2\2\33"+
|
||||
"\u00ed\3\2\2\2\35\u00ef\3\2\2\2\37\u00f5\3\2\2\2!\u00fc\3\2\2\2#\u00ff"+
|
||||
"\3\2\2\2%\u0106\3\2\2\2\'\u010c\3\2\2\2)\u0113\3\2\2\2+\u0119\3\2\2\2"+
|
||||
"-\u0122\3\2\2\2/\u0125\3\2\2\2\61\u012a\3\2\2\2\63\u0130\3\2\2\2\65\u0133"+
|
||||
"\3\2\2\2\67\u0137\3\2\2\29\u013e\3\2\2\2;\u0142\3\2\2\2=\u0145\3\2\2\2"+
|
||||
"?\u014c\3\2\2\2A\u014e\3\2\2\2C\u0150\3\2\2\2E\u0152\3\2\2\2G\u0155\3"+
|
||||
"\2\2\2I\u0158\3\2\2\2K\u015a\3\2\2\2M\u015c\3\2\2\2O\u015e\3\2\2\2Q\u0160"+
|
||||
"\3\2\2\2S\u0162\3\2\2\2U\u0165\3\2\2\2W\u0168\3\2\2\2Y\u016a\3\2\2\2["+
|
||||
"\u016c\3\2\2\2]\u016e\3\2\2\2_\u0170\3\2\2\2a\u0173\3\2\2\2c\u0176\3\2"+
|
||||
"\2\2e\u0179\3\2\2\2g\u017c\3\2\2\2i\u017e\3\2\2\2k\u0180\3\2\2\2m\u0183"+
|
||||
"\3\2\2\2o\u0186\3\2\2\2q\u0189\3\2\2\2s\u018c\3\2\2\2u\u018f\3\2\2\2w"+
|
||||
"\u0192\3\2\2\2y\u0195\3\2\2\2{\u0199\3\2\2\2}\u019d\3\2\2\2\177\u01a0"+
|
||||
"\3\2\2\2\u0081\u01a3\3\2\2\2\u0083\u01a6\3\2\2\2\u0085\u01ac\3\2\2\2\u0087"+
|
||||
"\u028c\3\2\2\2\u0089\u028e\3\2\2\2\u008b\u02af\3\2\2\2\u008d\u02b1\3\2"+
|
||||
"\2\2\u008f\u02bc\3\2\2\2\u0091\u02cd\3\2\2\2\u0093\u02d1\3\2\2\2\u0095"+
|
||||
"\u02d6\3\2\2\2\u0097\u02dd\3\2\2\2\u0099\u02ee\3\2\2\2\u009b\u02fc\3\2"+
|
||||
"\2\2\u009d\u030d\3\2\2\2\u009f\u031c\3\2\2\2\u00a1\u031f\3\2\2\2\u00a3"+
|
||||
"\u0328\3\2\2\2\u00a5\u032f\3\2\2\2\u00a7\u0331\3\2\2\2\u00a9\u0333\3\2"+
|
||||
"\2\2\u00ab\u0335\3\2\2\2\u00ad\u033c\3\2\2\2\u00af\u033e\3\2\2\2\u00b1"+
|
||||
"\u0340\3\2\2\2\u00b3\u034d\3\2\2\2\u00b5\u0353\3\2\2\2\u00b7\u035e\3\2"+
|
||||
"\2\2\u00b9\u00ba\7k\2\2\u00ba\u00bb\7o\2\2\u00bb\u00bc\7r\2\2\u00bc\u00bd"+
|
||||
"\7q\2\2\u00bd\u00be\7t\2\2\u00be\u00bf\7v\2\2\u00bf\4\3\2\2\2\u00c0\u00c1"+
|
||||
"\7?\2\2\u00c1\6\3\2\2\2\u00c2\u00c3\7=\2\2\u00c3\b\3\2\2\2\u00c4\u00c5"+
|
||||
"\7*\2\2\u00c5\n\3\2\2\2\u00c6\u00c7\7+\2\2\u00c7\f\3\2\2\2\u00c8\u00c9"+
|
||||
"\7}\2\2\u00c9\16\3\2\2\2\u00ca\u00cb\7\177\2\2\u00cb\20\3\2\2\2\u00cc"+
|
||||
"\u00cd\7m\2\2\u00cd\u00ce\7k\2\2\u00ce\u00cf\7e\2\2\u00cf\u00d0\7m\2\2"+
|
||||
"\u00d0\u00d1\7c\2\2\u00d1\u00d2\7u\2\2\u00d2\u00d3\7o\2\2\u00d3\22\3\2"+
|
||||
"\2\2\u00d4\u00d5\7.\2\2\u00d5\24\3\2\2\2\u00d6\u00d7\7t\2\2\u00d7\u00d8"+
|
||||
"\7g\2\2\u00d8\u00d9\7u\2\2\u00d9\u00da\7q\2\2\u00da\u00db\7w\2\2\u00db"+
|
||||
"\u00dc\7t\2\2\u00dc\u00dd\7e\2\2\u00dd\u00de\7g\2\2\u00de\26\3\2\2\2\u00df"+
|
||||
"\u00e0\7e\2\2\u00e0\u00e1\7n\2\2\u00e1\u00e2\7q\2\2\u00e2\u00e3\7d\2\2"+
|
||||
"\u00e3\u00e4\7d\2\2\u00e4\u00e5\7g\2\2\u00e5\u00e6\7t\2\2\u00e6\30\3\2"+
|
||||
"\2\2\u00e7\u00e8\7r\2\2\u00e8\u00e9\7c\2\2\u00e9\u00ea\7t\2\2\u00ea\u00eb"+
|
||||
"\7c\2\2\u00eb\u00ec\7o\2\2\u00ec\32\3\2\2\2\u00ed\u00ee\7<\2\2\u00ee\34"+
|
||||
"\3\2\2\2\u00ef\u00f0\7d\2\2\u00f0\u00f1\7{\2\2\u00f1\u00f2\7v\2\2\u00f2"+
|
||||
"\u00f3\7g\2\2\u00f3\u00f4\7u\2\2\u00f4\36\3\2\2\2\u00f5\u00f6\7e\2\2\u00f6"+
|
||||
"\u00f7\7{\2\2\u00f7\u00f8\7e\2\2\u00f8\u00f9\7n\2\2\u00f9\u00fa\7g\2\2"+
|
||||
"\u00fa\u00fb\7u\2\2\u00fb \3\2\2\2\u00fc\u00fd\7r\2\2\u00fd\u00fe\7e\2"+
|
||||
"\2\u00fe\"\3\2\2\2\u00ff\u0100\7k\2\2\u0100\u0101\7p\2\2\u0101\u0102\7"+
|
||||
"n\2\2\u0102\u0103\7k\2\2\u0103\u0104\7p\2\2\u0104\u0105\7g\2\2\u0105$"+
|
||||
"\3\2\2\2\u0106\u0107\7e\2\2\u0107\u0108\7q\2\2\u0108\u0109\7p\2\2\u0109"+
|
||||
"\u010a\7u\2\2\u010a\u010b\7v\2\2\u010b&\3\2\2\2\u010c\u010d\7g\2\2\u010d"+
|
||||
"\u010e\7z\2\2\u010e\u010f\7v\2\2\u010f\u0110\7g\2\2\u0110\u0111\7t\2\2"+
|
||||
"\u0111\u0112\7p\2\2\u0112(\3\2\2\2\u0113\u0114\7c\2\2\u0114\u0115\7n\2"+
|
||||
"\2\u0115\u0116\7k\2\2\u0116\u0117\7i\2\2\u0117\u0118\7p\2\2\u0118*\3\2"+
|
||||
"\2\2\u0119\u011a\7t\2\2\u011a\u011b\7g\2\2\u011b\u011c\7i\2\2\u011c\u011d"+
|
||||
"\7k\2\2\u011d\u011e\7u\2\2\u011e\u011f\7v\2\2\u011f\u0120\7g\2\2\u0120"+
|
||||
"\u0121\7t\2\2\u0121,\3\2\2\2\u0122\u0123\7k\2\2\u0123\u0124\7h\2\2\u0124"+
|
||||
".\3\2\2\2\u0125\u0126\7g\2\2\u0126\u0127\7n\2\2\u0127\u0128\7u\2\2\u0128"+
|
||||
"\u0129\7g\2\2\u0129\60\3\2\2\2\u012a\u012b\7y\2\2\u012b\u012c\7j\2\2\u012c"+
|
||||
"\u012d\7k\2\2\u012d\u012e\7n\2\2\u012e\u012f\7g\2\2\u012f\62\3\2\2\2\u0130"+
|
||||
"\u0131\7f\2\2\u0131\u0132\7q\2\2\u0132\64\3\2\2\2\u0133\u0134\7h\2\2\u0134"+
|
||||
"\u0135\7q\2\2\u0135\u0136\7t\2\2\u0136\66\3\2\2\2\u0137\u0138\7t\2\2\u0138"+
|
||||
"\u0139\7g\2\2\u0139\u013a\7v\2\2\u013a\u013b\7w\2\2\u013b\u013c\7t\2\2"+
|
||||
"\u013c\u013d\7p\2\2\u013d8\3\2\2\2\u013e\u013f\7c\2\2\u013f\u0140\7u\2"+
|
||||
"\2\u0140\u0141\7o\2\2\u0141:\3\2\2\2\u0142\u0143\7\60\2\2\u0143\u0144"+
|
||||
"\7\60\2\2\u0144<\3\2\2\2\u0145\u0146\7u\2\2\u0146\u0147\7k\2\2\u0147\u0148"+
|
||||
"\7i\2\2\u0148\u0149\7p\2\2\u0149\u014a\7g\2\2\u014a\u014b\7f\2\2\u014b"+
|
||||
">\3\2\2\2\u014c\u014d\7,\2\2\u014d@\3\2\2\2\u014e\u014f\7]\2\2\u014fB"+
|
||||
"\3\2\2\2\u0150\u0151\7_\2\2\u0151D\3\2\2\2\u0152\u0153\7/\2\2\u0153\u0154"+
|
||||
"\7/\2\2\u0154F\3\2\2\2\u0155\u0156\7-\2\2\u0156\u0157\7-\2\2\u0157H\3"+
|
||||
"\2\2\2\u0158\u0159\7-\2\2\u0159J\3\2\2\2\u015a\u015b\7/\2\2\u015bL\3\2"+
|
||||
"\2\2\u015c\u015d\7#\2\2\u015dN\3\2\2\2\u015e\u015f\7(\2\2\u015fP\3\2\2"+
|
||||
"\2\u0160\u0161\7\u0080\2\2\u0161R\3\2\2\2\u0162\u0163\7@\2\2\u0163\u0164"+
|
||||
"\7@\2\2\u0164T\3\2\2\2\u0165\u0166\7>\2\2\u0166\u0167\7>\2\2\u0167V\3"+
|
||||
"\2\2\2\u0168\u0169\7\61\2\2\u0169X\3\2\2\2\u016a\u016b\7\'\2\2\u016bZ"+
|
||||
"\3\2\2\2\u016c\u016d\7>\2\2\u016d\\\3\2\2\2\u016e\u016f\7@\2\2\u016f^"+
|
||||
"\3\2\2\2\u0170\u0171\7?\2\2\u0171\u0172\7?\2\2\u0172`\3\2\2\2\u0173\u0174"+
|
||||
"\7#\2\2\u0174\u0175\7?\2\2\u0175b\3\2\2\2\u0176\u0177\7>\2\2\u0177\u0178"+
|
||||
"\7?\2\2\u0178d\3\2\2\2\u0179\u017a\7@\2\2\u017a\u017b\7?\2\2\u017bf\3"+
|
||||
"\2\2\2\u017c\u017d\7`\2\2\u017dh\3\2\2\2\u017e\u017f\7~\2\2\u017fj\3\2"+
|
||||
"\2\2\u0180\u0181\7(\2\2\u0181\u0182\7(\2\2\u0182l\3\2\2\2\u0183\u0184"+
|
||||
"\7~\2\2\u0184\u0185\7~\2\2\u0185n\3\2\2\2\u0186\u0187\7-\2\2\u0187\u0188"+
|
||||
"\7?\2\2\u0188p\3\2\2\2\u0189\u018a\7/\2\2\u018a\u018b\7?\2\2\u018br\3"+
|
||||
"\2\2\2\u018c\u018d\7,\2\2\u018d\u018e\7?\2\2\u018et\3\2\2\2\u018f\u0190"+
|
||||
"\7\61\2\2\u0190\u0191\7?\2\2\u0191v\3\2\2\2\u0192\u0193\7\'\2\2\u0193"+
|
||||
"\u0194\7?\2\2\u0194x\3\2\2\2\u0195\u0196\7>\2\2\u0196\u0197\7>\2\2\u0197"+
|
||||
"\u0198\7?\2\2\u0198z\3\2\2\2\u0199\u019a\7@\2\2\u019a\u019b\7@\2\2\u019b"+
|
||||
"\u019c\7?\2\2\u019c|\3\2\2\2\u019d\u019e\7(\2\2\u019e\u019f\7?\2\2\u019f"+
|
||||
"~\3\2\2\2\u01a0\u01a1\7~\2\2\u01a1\u01a2\7?\2\2\u01a2\u0080\3\2\2\2\u01a3"+
|
||||
"\u01a4\7`\2\2\u01a4\u01a5\7?\2\2\u01a5\u0082\3\2\2\2\u01a6\u01a7\7\60"+
|
||||
"\2\2\u01a7\u01a8\7d\2\2\u01a8\u01a9\7{\2\2\u01a9\u01aa\7v\2\2\u01aa\u01ab"+
|
||||
"\7g\2\2\u01ab\u0084\3\2\2\2\u01ac\u01ad\7%\2\2\u01ad\u0086\3\2\2\2\u01ae"+
|
||||
"\u01af\7d\2\2\u01af\u01b0\7t\2\2\u01b0\u028d\7m\2\2\u01b1\u01b2\7q\2\2"+
|
||||
"\u01b2\u01b3\7t\2\2\u01b3\u028d\7c\2\2\u01b4\u01b5\7m\2\2\u01b5\u01b6"+
|
||||
"\7k\2\2\u01b6\u028d\7n\2\2\u01b7\u01b8\7u\2\2\u01b8\u01b9\7n\2\2\u01b9"+
|
||||
"\u028d\7q\2\2\u01ba\u01bb\7p\2\2\u01bb\u01bc\7q\2\2\u01bc\u028d\7r\2\2"+
|
||||
"\u01bd\u01be\7c\2\2\u01be\u01bf\7u\2\2\u01bf\u028d\7n\2\2\u01c0\u01c1"+
|
||||
"\7r\2\2\u01c1\u01c2\7j\2\2\u01c2\u028d\7r\2\2\u01c3\u01c4\7c\2\2\u01c4"+
|
||||
"\u01c5\7p\2\2\u01c5\u028d\7e\2\2\u01c6\u01c7\7d\2\2\u01c7\u01c8\7r\2\2"+
|
||||
"\u01c8\u028d\7n\2\2\u01c9\u01ca\7e\2\2\u01ca\u01cb\7n\2\2\u01cb\u028d"+
|
||||
"\7e\2\2\u01cc\u01cd\7l\2\2\u01cd\u01ce\7u\2\2\u01ce\u028d\7t\2\2\u01cf"+
|
||||
"\u01d0\7c\2\2\u01d0\u01d1\7p\2\2\u01d1\u028d\7f\2\2\u01d2\u01d3\7t\2\2"+
|
||||
"\u01d3\u01d4\7n\2\2\u01d4\u028d\7c\2\2\u01d5\u01d6\7d\2\2\u01d6\u01d7"+
|
||||
"\7k\2\2\u01d7\u028d\7v\2\2\u01d8\u01d9\7t\2\2\u01d9\u01da\7q\2\2\u01da"+
|
||||
"\u028d\7n\2\2\u01db\u01dc\7r\2\2\u01dc\u01dd\7n\2\2\u01dd\u028d\7c\2\2"+
|
||||
"\u01de\u01df\7r\2\2\u01df\u01e0\7n\2\2\u01e0\u028d\7r\2\2\u01e1\u01e2"+
|
||||
"\7d\2\2\u01e2\u01e3\7o\2\2\u01e3\u028d\7k\2\2\u01e4\u01e5\7u\2\2\u01e5"+
|
||||
"\u01e6\7g\2\2\u01e6\u028d\7e\2\2\u01e7\u01e8\7t\2\2\u01e8\u01e9\7v\2\2"+
|
||||
"\u01e9\u028d\7k\2\2\u01ea\u01eb\7g\2\2\u01eb\u01ec\7q\2\2\u01ec\u028d"+
|
||||
"\7t\2\2\u01ed\u01ee\7u\2\2\u01ee\u01ef\7t\2\2\u01ef\u028d\7g\2\2\u01f0"+
|
||||
"\u01f1\7n\2\2\u01f1\u01f2\7u\2\2\u01f2\u028d\7t\2\2\u01f3\u01f4\7r\2\2"+
|
||||
"\u01f4\u01f5\7j\2\2\u01f5\u028d\7c\2\2\u01f6\u01f7\7c\2\2\u01f7\u01f8"+
|
||||
"\7n\2\2\u01f8\u028d\7t\2\2\u01f9\u01fa\7l\2\2\u01fa\u01fb\7o\2\2\u01fb"+
|
||||
"\u028d\7r\2\2\u01fc\u01fd\7d\2\2\u01fd\u01fe\7x\2\2\u01fe\u028d\7e\2\2"+
|
||||
"\u01ff\u0200\7e\2\2\u0200\u0201\7n\2\2\u0201\u028d\7k\2\2\u0202\u0203"+
|
||||
"\7t\2\2\u0203\u0204\7v\2\2\u0204\u028d\7u\2\2\u0205\u0206\7c\2\2\u0206"+
|
||||
"\u0207\7f\2\2\u0207\u028d\7e\2\2\u0208\u0209\7t\2\2\u0209\u020a\7t\2\2"+
|
||||
"\u020a\u028d\7c\2\2\u020b\u020c\7d\2\2\u020c\u020d\7x\2\2\u020d\u028d"+
|
||||
"\7u\2\2\u020e\u020f\7u\2\2\u020f\u0210\7g\2\2\u0210\u028d\7k\2\2\u0211"+
|
||||
"\u0212\7u\2\2\u0212\u0213\7c\2\2\u0213\u028d\7z\2\2\u0214\u0215\7u\2\2"+
|
||||
"\u0215\u0216\7v\2\2\u0216\u028d\7{\2\2\u0217\u0218\7u\2\2\u0218\u0219"+
|
||||
"\7v\2\2\u0219\u028d\7c\2\2\u021a\u021b\7u\2\2\u021b\u021c\7v\2\2\u021c"+
|
||||
"\u028d\7z\2\2\u021d\u021e\7f\2\2\u021e\u021f\7g\2\2\u021f\u028d\7{\2\2"+
|
||||
"\u0220\u0221\7v\2\2\u0221\u0222\7z\2\2\u0222\u028d\7c\2\2\u0223\u0224"+
|
||||
"\7z\2\2\u0224\u0225\7c\2\2\u0225\u028d\7c\2\2\u0226\u0227\7d\2\2\u0227"+
|
||||
"\u0228\7e\2\2\u0228\u028d\7e\2\2\u0229\u022a\7c\2\2\u022a\u022b\7j\2\2"+
|
||||
"\u022b\u028d\7z\2\2\u022c\u022d\7v\2\2\u022d\u022e\7{\2\2\u022e\u028d"+
|
||||
"\7c\2\2\u022f\u0230\7v\2\2\u0230\u0231\7z\2\2\u0231\u028d\7u\2\2\u0232"+
|
||||
"\u0233\7v\2\2\u0233\u0234\7c\2\2\u0234\u028d\7u\2\2\u0235\u0236\7u\2\2"+
|
||||
"\u0236\u0237\7j\2\2\u0237\u028d\7{\2\2\u0238\u0239\7u\2\2\u0239\u023a"+
|
||||
"\7j\2\2\u023a\u028d\7z\2\2\u023b\u023c\7n\2\2\u023c\u023d\7f\2\2\u023d"+
|
||||
"\u028d\7{\2\2\u023e\u023f\7n\2\2\u023f\u0240\7f\2\2\u0240\u028d\7c\2\2"+
|
||||
"\u0241\u0242\7n\2\2\u0242\u0243\7f\2\2\u0243\u028d\7z\2\2\u0244\u0245"+
|
||||
"\7n\2\2\u0245\u0246\7c\2\2\u0246\u028d\7z\2\2\u0247\u0248\7v\2\2\u0248"+
|
||||
"\u0249\7c\2\2\u0249\u028d\7{\2\2\u024a\u024b\7v\2\2\u024b\u024c\7c\2\2"+
|
||||
"\u024c\u028d\7z\2\2\u024d\u024e\7d\2\2\u024e\u024f\7e\2\2\u024f\u028d"+
|
||||
"\7u\2\2\u0250\u0251\7e\2\2\u0251\u0252\7n\2\2\u0252\u028d\7x\2\2\u0253"+
|
||||
"\u0254\7v\2\2\u0254\u0255\7u\2\2\u0255\u028d\7z\2\2\u0256\u0257\7n\2\2"+
|
||||
"\u0257\u0258\7c\2\2\u0258\u028d\7u\2\2\u0259\u025a\7e\2\2\u025a\u025b"+
|
||||
"\7r\2\2\u025b\u028d\7{\2\2\u025c\u025d\7e\2\2\u025d\u025e\7o\2\2\u025e"+
|
||||
"\u028d\7r\2\2\u025f\u0260\7e\2\2\u0260\u0261\7r\2\2\u0261\u028d\7z\2\2"+
|
||||
"\u0262\u0263\7f\2\2\u0263\u0264\7e\2\2\u0264\u028d\7r\2\2\u0265\u0266"+
|
||||
"\7f\2\2\u0266\u0267\7g\2\2\u0267\u028d\7e\2\2\u0268\u0269\7k\2\2\u0269"+
|
||||
"\u026a\7p\2\2\u026a\u028d\7e\2\2\u026b\u026c\7c\2\2\u026c\u026d\7z\2\2"+
|
||||
"\u026d\u028d\7u\2\2\u026e\u026f\7d\2\2\u026f\u0270\7p\2\2\u0270\u028d"+
|
||||
"\7g\2\2\u0271\u0272\7e\2\2\u0272\u0273\7n\2\2\u0273\u028d\7f\2\2\u0274"+
|
||||
"\u0275\7u\2\2\u0275\u0276\7d\2\2\u0276\u028d\7e\2\2\u0277\u0278\7k\2\2"+
|
||||
"\u0278\u0279\7u\2\2\u0279\u028d\7e\2\2\u027a\u027b\7k\2\2\u027b\u027c"+
|
||||
"\7p\2\2\u027c\u028d\7z\2\2\u027d\u027e\7d\2\2\u027e\u027f\7g\2\2\u027f"+
|
||||
"\u028d\7s\2\2\u0280\u0281\7u\2\2\u0281\u0282\7g\2\2\u0282\u028d\7f\2\2"+
|
||||
"\u0283\u0284\7f\2\2\u0284\u0285\7g\2\2\u0285\u028d\7z\2\2\u0286\u0287"+
|
||||
"\7k\2\2\u0287\u0288\7p\2\2\u0288\u028d\7{\2\2\u0289\u028a\7t\2\2\u028a"+
|
||||
"\u028b\7q\2\2\u028b\u028d\7t\2\2\u028c\u01ae\3\2\2\2\u028c\u01b1\3\2\2"+
|
||||
"\2\u028c\u01b4\3\2\2\2\u028c\u01b7\3\2\2\2\u028c\u01ba\3\2\2\2\u028c\u01bd"+
|
||||
"\3\2\2\2\u028c\u01c0\3\2\2\2\u028c\u01c3\3\2\2\2\u028c\u01c6\3\2\2\2\u028c"+
|
||||
"\u01c9\3\2\2\2\u028c\u01cc\3\2\2\2\u028c\u01cf\3\2\2\2\u028c\u01d2\3\2"+
|
||||
"\2\2\u028c\u01d5\3\2\2\2\u028c\u01d8\3\2\2\2\u028c\u01db\3\2\2\2\u028c"+
|
||||
"\u01de\3\2\2\2\u028c\u01e1\3\2\2\2\u028c\u01e4\3\2\2\2\u028c\u01e7\3\2"+
|
||||
"\2\2\u028c\u01ea\3\2\2\2\u028c\u01ed\3\2\2\2\u028c\u01f0\3\2\2\2\u028c"+
|
||||
"\u01f3\3\2\2\2\u028c\u01f6\3\2\2\2\u028c\u01f9\3\2\2\2\u028c\u01fc\3\2"+
|
||||
"\2\2\u028c\u01ff\3\2\2\2\u028c\u0202\3\2\2\2\u028c\u0205\3\2\2\2\u028c"+
|
||||
"\u0208\3\2\2\2\u028c\u020b\3\2\2\2\u028c\u020e\3\2\2\2\u028c\u0211\3\2"+
|
||||
"\2\2\u028c\u0214\3\2\2\2\u028c\u0217\3\2\2\2\u028c\u021a\3\2\2\2\u028c"+
|
||||
"\u021d\3\2\2\2\u028c\u0220\3\2\2\2\u028c\u0223\3\2\2\2\u028c\u0226\3\2"+
|
||||
"\2\2\u028c\u0229\3\2\2\2\u028c\u022c\3\2\2\2\u028c\u022f\3\2\2\2\u028c"+
|
||||
"\u0232\3\2\2\2\u028c\u0235\3\2\2\2\u028c\u0238\3\2\2\2\u028c\u023b\3\2"+
|
||||
"\2\2\u028c\u023e\3\2\2\2\u028c\u0241\3\2\2\2\u028c\u0244\3\2\2\2\u028c"+
|
||||
"\u0247\3\2\2\2\u028c\u024a\3\2\2\2\u028c\u024d\3\2\2\2\u028c\u0250\3\2"+
|
||||
"\2\2\u028c\u0253\3\2\2\2\u028c\u0256\3\2\2\2\u028c\u0259\3\2\2\2\u028c"+
|
||||
"\u025c\3\2\2\2\u028c\u025f\3\2\2\2\u028c\u0262\3\2\2\2\u028c\u0265\3\2"+
|
||||
"\2\2\u028c\u0268\3\2\2\2\u028c\u026b\3\2\2\2\u028c\u026e\3\2\2\2\u028c"+
|
||||
"\u0271\3\2\2\2\u028c\u0274\3\2\2\2\u028c\u0277\3\2\2\2\u028c\u027a\3\2"+
|
||||
"\2\2\u028c\u027d\3\2\2\2\u028c\u0280\3\2\2\2\u028c\u0283\3\2\2\2\u028c"+
|
||||
"\u0286\3\2\2\2\u028c\u0289\3\2\2\2\u028d\u0088\3\2\2\2\u028e\u028f\7}"+
|
||||
"\2\2\u028f\u0290\7}\2\2\u0290\u0294\3\2\2\2\u0291\u0293\13\2\2\2\u0292"+
|
||||
"\u0291\3\2\2\2\u0293\u0296\3\2\2\2\u0294\u0295\3\2\2\2\u0294\u0292\3\2"+
|
||||
"\2\2\u0295\u0297\3\2\2\2\u0296\u0294\3\2\2\2\u0297\u0298\7\177\2\2\u0298"+
|
||||
"\u0299\7\177\2\2\u0299\u008a\3\2\2\2\u029a\u029b\7d\2\2\u029b\u029c\7"+
|
||||
"{\2\2\u029c\u029d\7v\2\2\u029d\u02b0\7g\2\2\u029e\u029f\7y\2\2\u029f\u02a0"+
|
||||
"\7q\2\2\u02a0\u02a1\7t\2\2\u02a1\u02b0\7f\2\2\u02a2\u02a3\7f\2\2\u02a3"+
|
||||
"\u02a4\7y\2\2\u02a4\u02a5\7q\2\2\u02a5\u02a6\7t\2\2\u02a6\u02b0\7f\2\2"+
|
||||
"\u02a7\u02a8\7d\2\2\u02a8\u02a9\7q\2\2\u02a9\u02aa\7q\2\2\u02aa\u02b0"+
|
||||
"\7n\2\2\u02ab\u02ac\7x\2\2\u02ac\u02ad\7q\2\2\u02ad\u02ae\7k\2\2\u02ae"+
|
||||
"\u02b0\7f\2\2\u02af\u029a\3\2\2\2\u02af\u029e\3\2\2\2\u02af\u02a2\3\2"+
|
||||
"\2\2\u02af\u02a7\3\2\2\2\u02af\u02ab\3\2\2\2\u02b0\u008c\3\2\2\2\u02b1"+
|
||||
"\u02b7\7$\2\2\u02b2\u02b3\7^\2\2\u02b3\u02b6\7$\2\2\u02b4\u02b6\n\2\2"+
|
||||
"\2\u02b5\u02b2\3\2\2\2\u02b5\u02b4\3\2\2\2\u02b6\u02b9\3\2\2\2\u02b7\u02b5"+
|
||||
"\3\2\2\2\u02b7\u02b8\3\2\2\2\u02b8\u02ba\3\2\2\2\u02b9\u02b7\3\2\2\2\u02ba"+
|
||||
"\u02bb\7$\2\2\u02bb\u008e\3\2\2\2\u02bc\u02c0\7)\2\2\u02bd\u02be\7^\2"+
|
||||
"\2\u02be\u02c1\7)\2\2\u02bf\u02c1\n\3\2\2\u02c0\u02bd\3\2\2\2\u02c0\u02bf"+
|
||||
"\3\2\2\2\u02c1\u02c2\3\2\2\2\u02c2\u02c3\7)\2\2\u02c3\u0090\3\2\2\2\u02c4"+
|
||||
"\u02c5\7v\2\2\u02c5\u02c6\7t\2\2\u02c6\u02c7\7w\2\2\u02c7\u02ce\7g\2\2"+
|
||||
"\u02c8\u02c9\7h\2\2\u02c9\u02ca\7c\2\2\u02ca\u02cb\7n\2\2\u02cb\u02cc"+
|
||||
"\7u\2\2\u02cc\u02ce\7g\2\2\u02cd\u02c4\3\2\2\2\u02cd\u02c8\3\2\2\2\u02ce"+
|
||||
"\u0092\3\2\2\2\u02cf\u02d2\5\u0095K\2\u02d0\u02d2\5\u009dO\2\u02d1\u02cf"+
|
||||
"\3\2\2\2\u02d1\u02d0\3\2\2\2\u02d2\u0094\3\2\2\2\u02d3\u02d7\5\u0097L"+
|
||||
"\2\u02d4\u02d7\5\u0099M\2\u02d5\u02d7\5\u009bN\2\u02d6\u02d3\3\2\2\2\u02d6"+
|
||||
"\u02d4\3\2\2\2\u02d6\u02d5\3\2\2\2\u02d7\u0096\3\2\2\2\u02d8\u02de\7\'"+
|
||||
"\2\2\u02d9\u02da\7\62\2\2\u02da\u02de\7d\2\2\u02db\u02dc\7\62\2\2\u02dc"+
|
||||
"\u02de\7D\2\2\u02dd\u02d8\3\2\2\2\u02dd\u02d9\3\2\2\2\u02dd\u02db\3\2"+
|
||||
"\2\2\u02de\u02e2\3\2\2\2\u02df\u02e1\5\u00a5S\2\u02e0\u02df\3\2\2\2\u02e1"+
|
||||
"\u02e4\3\2\2\2\u02e2\u02e0\3\2\2\2\u02e2\u02e3\3\2\2\2\u02e3\u02e5\3\2"+
|
||||
"\2\2\u02e4\u02e2\3\2\2\2\u02e5\u02e7\7\60\2\2\u02e6\u02e8\5\u00a5S\2\u02e7"+
|
||||
"\u02e6\3\2\2\2\u02e8\u02e9\3\2\2\2\u02e9\u02e7\3\2\2\2\u02e9\u02ea\3\2"+
|
||||
"\2\2\u02ea\u0098\3\2\2\2\u02eb\u02ed\5\u00a7T\2\u02ec\u02eb\3\2\2\2\u02ed"+
|
||||
"\u02f0\3\2\2\2\u02ee\u02ec\3\2\2\2\u02ee\u02ef\3\2\2\2\u02ef\u02f1\3\2"+
|
||||
"\2\2\u02f0\u02ee\3\2\2\2\u02f1\u02f3\7\60\2\2\u02f2\u02f4\5\u00a7T\2\u02f3"+
|
||||
"\u02f2\3\2\2\2\u02f4\u02f5\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f5\u02f6\3\2"+
|
||||
"\2\2\u02f6\u009a\3\2\2\2\u02f7\u02fd\7&\2\2\u02f8\u02f9\7\62\2\2\u02f9"+
|
||||
"\u02fd\7z\2\2\u02fa\u02fb\7\62\2\2\u02fb\u02fd\7Z\2\2\u02fc\u02f7\3\2"+
|
||||
"\2\2\u02fc\u02f8\3\2\2\2\u02fc\u02fa\3\2\2\2\u02fd\u0301\3\2\2\2\u02fe"+
|
||||
"\u0300\5\u00a9U\2\u02ff\u02fe\3\2\2\2\u0300\u0303\3\2\2\2\u0301\u02ff"+
|
||||
"\3\2\2\2\u0301\u0302\3\2\2\2\u0302\u0304\3\2\2\2\u0303\u0301\3\2\2\2\u0304"+
|
||||
"\u0306\7\60\2\2\u0305\u0307\5\u00a9U\2\u0306\u0305\3\2\2\2\u0307\u0308"+
|
||||
"\3\2\2\2\u0308\u0306\3\2\2\2\u0308\u0309\3\2\2\2\u0309\u009c\3\2\2\2\u030a"+
|
||||
"\u030e\5\u00a1Q\2\u030b\u030e\5\u00a3R\2\u030c\u030e\5\u009fP\2\u030d"+
|
||||
"\u030a\3\2\2\2\u030d\u030b\3\2\2\2\u030d\u030c\3\2\2\2\u030e\u009e\3\2"+
|
||||
"\2\2\u030f\u0310\7\62\2\2\u0310\u0312\t\4\2\2\u0311\u0313\5\u00a5S\2\u0312"+
|
||||
"\u0311\3\2\2\2\u0313\u0314\3\2\2\2\u0314\u0312\3\2\2\2\u0314\u0315\3\2"+
|
||||
"\2\2\u0315\u031d\3\2\2\2\u0316\u0318\7\'\2\2\u0317\u0319\5\u00a5S\2\u0318"+
|
||||
"\u0317\3\2\2\2\u0319\u031a\3\2\2\2\u031a\u0318\3\2\2\2\u031a\u031b\3\2"+
|
||||
"\2\2\u031b\u031d\3\2\2\2\u031c\u030f\3\2\2\2\u031c\u0316\3\2\2\2\u031d"+
|
||||
"\u00a0\3\2\2\2\u031e\u0320\5\u00a7T\2\u031f\u031e\3\2\2\2\u0320\u0321"+
|
||||
"\3\2\2\2\u0321\u031f\3\2\2\2\u0321\u0322\3\2\2\2\u0322\u00a2\3\2\2\2\u0323"+
|
||||
"\u0329\7&\2\2\u0324\u0325\7\62\2\2\u0325\u0329\7z\2\2\u0326\u0327\7\62"+
|
||||
"\2\2\u0327\u0329\7Z\2\2\u0328\u0323\3\2\2\2\u0328\u0324\3\2\2\2\u0328"+
|
||||
"\u0326\3\2\2\2\u0329\u032b\3\2\2\2\u032a\u032c\5\u00a9U\2\u032b\u032a"+
|
||||
"\3\2\2\2\u032c\u032d\3\2\2\2\u032d\u032b\3\2\2\2\u032d\u032e\3\2\2\2\u032e"+
|
||||
"\u00a4\3\2\2\2\u032f\u0330\t\5\2\2\u0330\u00a6\3\2\2\2\u0331\u0332\t\6"+
|
||||
"\2\2\u0332\u00a8\3\2\2\2\u0333\u0334\t\7\2\2\u0334\u00aa\3\2\2\2\u0335"+
|
||||
"\u0339\5\u00adW\2\u0336\u0338\5\u00afX\2\u0337\u0336\3\2\2\2\u0338\u033b"+
|
||||
"\3\2\2\2\u0339\u0337\3\2\2\2\u0339\u033a\3\2\2\2\u033a\u00ac\3\2\2\2\u033b"+
|
||||
"\u0339\3\2\2\2\u033c\u033d\t\b\2\2\u033d\u00ae\3\2\2\2\u033e\u033f\t\t"+
|
||||
"\2\2\u033f\u00b0\3\2\2\2\u0340\u0344\7#\2\2\u0341\u0343\5\u00afX\2\u0342"+
|
||||
"\u0341\3\2\2\2\u0343\u0346\3\2\2\2\u0344\u0342\3\2\2\2\u0344\u0345\3\2"+
|
||||
"\2\2\u0345\u0348\3\2\2\2\u0346\u0344\3\2\2\2\u0347\u0349\t\n\2\2\u0348"+
|
||||
"\u0347\3\2\2\2\u0349\u034a\3\2\2\2\u034a\u0348\3\2\2\2\u034a\u034b\3\2"+
|
||||
"\2\2\u034b\u00b2\3\2\2\2\u034c\u034e\t\13\2\2\u034d\u034c\3\2\2\2\u034e"+
|
||||
"\u034f\3\2\2\2\u034f\u034d\3\2\2\2\u034f\u0350\3\2\2\2\u0350\u0351\3\2"+
|
||||
"\2\2\u0351\u0352\bZ\2\2\u0352\u00b4\3\2\2\2\u0353\u0354\7\61\2\2\u0354"+
|
||||
"\u0355\7\61\2\2\u0355\u0359\3\2\2\2\u0356\u0358\n\f\2\2\u0357\u0356\3"+
|
||||
"\2\2\2\u0358\u035b\3\2\2\2\u0359\u0357\3\2\2\2\u0359\u035a\3\2\2\2\u035a"+
|
||||
"\u035c\3\2\2\2\u035b\u0359\3\2\2\2\u035c\u035d\b[\2\2\u035d\u00b6\3\2"+
|
||||
"\2\2\u035e\u035f\7\61\2\2\u035f\u0360\7,\2\2\u0360\u0364\3\2\2\2\u0361"+
|
||||
"\u0363\13\2\2\2\u0362\u0361\3\2\2\2\u0363\u0366\3\2\2\2\u0364\u0365\3"+
|
||||
"\2\2\2\u0364\u0362\3\2\2\2\u0365\u0367\3\2\2\2\u0366\u0364\3\2\2\2\u0367"+
|
||||
"\u0368\7,\2\2\u0368\u0369\7\61\2\2\u0369\u036a\3\2\2\2\u036a\u036b\b\\"+
|
||||
"\2\2\u036b\u00b8\3\2\2\2!\2\u028c\u0294\u02af\u02b5\u02b7\u02c0\u02cd"+
|
||||
"\u02d1\u02d6\u02dd\u02e2\u02e9\u02ee\u02f5\u02fc\u0301\u0308\u030d\u0314"+
|
||||
"\u031a\u031c\u0321\u0328\u032d\u0339\u0344\u034a\u034f\u0359\u0364\3\b"+
|
||||
"\2\2";
|
||||
"\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\3\2\3\2\3\2\3"+
|
||||
"\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t"+
|
||||
"\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3"+
|
||||
"\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\16"+
|
||||
"\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+
|
||||
"\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23"+
|
||||
"\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25"+
|
||||
"\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27"+
|
||||
"\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31"+
|
||||
"\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\35"+
|
||||
"\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\37\3\37\3\37\3 \3"+
|
||||
" \3 \3 \3 \3 \3 \3!\3!\3\"\3\"\3#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3\'\3\'\3"+
|
||||
"(\3(\3)\3)\3*\3*\3+\3+\3+\3,\3,\3,\3-\3-\3.\3.\3/\3/\3\60\3\60\3\61\3"+
|
||||
"\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3\66\3"+
|
||||
"\66\3\67\3\67\3\67\38\38\38\39\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3="+
|
||||
"\3=\3>\3>\3>\3>\3?\3?\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3B\3C\3C\3C\3C\3C"+
|
||||
"\3C\3D\3D\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E"+
|
||||
"\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\5E\u0299\nE\3F"+
|
||||
"\3F\3F\3F\7F\u029f\nF\fF\16F\u02a2\13F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3"+
|
||||
"G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\5G\u02bc\nG\3H\3H\3H\3H\7H\u02c2"+
|
||||
"\nH\fH\16H\u02c5\13H\3H\3H\3I\3I\3I\3I\5I\u02cd\nI\3I\3I\3J\3J\3J\3J\3"+
|
||||
"J\3J\3J\3J\3J\5J\u02da\nJ\3K\3K\5K\u02de\nK\3L\3L\3L\5L\u02e3\nL\3M\3"+
|
||||
"M\3M\3M\3M\5M\u02ea\nM\3M\7M\u02ed\nM\fM\16M\u02f0\13M\3M\3M\6M\u02f4"+
|
||||
"\nM\rM\16M\u02f5\3N\7N\u02f9\nN\fN\16N\u02fc\13N\3N\3N\6N\u0300\nN\rN"+
|
||||
"\16N\u0301\3O\3O\3O\3O\3O\5O\u0309\nO\3O\7O\u030c\nO\fO\16O\u030f\13O"+
|
||||
"\3O\3O\6O\u0313\nO\rO\16O\u0314\3P\3P\3P\5P\u031a\nP\3Q\3Q\3Q\6Q\u031f"+
|
||||
"\nQ\rQ\16Q\u0320\3Q\3Q\6Q\u0325\nQ\rQ\16Q\u0326\5Q\u0329\nQ\3R\6R\u032c"+
|
||||
"\nR\rR\16R\u032d\3S\3S\3S\3S\3S\5S\u0335\nS\3S\6S\u0338\nS\rS\16S\u0339"+
|
||||
"\3T\3T\3U\3U\3V\3V\3W\3W\7W\u0344\nW\fW\16W\u0347\13W\3X\3X\3Y\3Y\3Z\3"+
|
||||
"Z\7Z\u034f\nZ\fZ\16Z\u0352\13Z\3Z\6Z\u0355\nZ\rZ\16Z\u0356\3[\6[\u035a"+
|
||||
"\n[\r[\16[\u035b\3[\3[\3\\\3\\\3\\\3\\\7\\\u0364\n\\\f\\\16\\\u0367\13"+
|
||||
"\\\3\\\3\\\3]\3]\3]\3]\7]\u036f\n]\f]\16]\u0372\13]\3]\3]\3]\3]\3]\4\u02a0"+
|
||||
"\u0370\2^\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33"+
|
||||
"\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67"+
|
||||
"\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65"+
|
||||
"i\66k\67m8o9q:s;u<w=y>{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008b"+
|
||||
"G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f"+
|
||||
"Q\u00a1R\u00a3S\u00a5T\u00a7\2\u00a9\2\u00ab\2\u00adU\u00af\2\u00b1\2"+
|
||||
"\u00b3V\u00b5W\u00b7X\u00b9Y\3\2\r\3\2$$\3\2))\4\2DDdd\3\2\62\63\3\2\62"+
|
||||
";\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\5\2\13\f\17\17\"\"\4\2"+
|
||||
"\f\f\17\17\2\u03e0\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13"+
|
||||
"\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2"+
|
||||
"\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2"+
|
||||
"!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3"+
|
||||
"\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2"+
|
||||
"\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E"+
|
||||
"\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2"+
|
||||
"\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2"+
|
||||
"\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k"+
|
||||
"\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2"+
|
||||
"\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2"+
|
||||
"\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b"+
|
||||
"\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2"+
|
||||
"\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d"+
|
||||
"\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2"+
|
||||
"\2\2\u00ad\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9"+
|
||||
"\3\2\2\2\3\u00bb\3\2\2\2\5\u00c2\3\2\2\2\7\u00c4\3\2\2\2\t\u00c6\3\2\2"+
|
||||
"\2\13\u00c8\3\2\2\2\r\u00ca\3\2\2\2\17\u00cc\3\2\2\2\21\u00ce\3\2\2\2"+
|
||||
"\23\u00d6\3\2\2\2\25\u00d8\3\2\2\2\27\u00e1\3\2\2\2\31\u00e9\3\2\2\2\33"+
|
||||
"\u00ef\3\2\2\2\35\u00f1\3\2\2\2\37\u00f7\3\2\2\2!\u00fe\3\2\2\2#\u0101"+
|
||||
"\3\2\2\2%\u0108\3\2\2\2\'\u010e\3\2\2\2)\u0115\3\2\2\2+\u011b\3\2\2\2"+
|
||||
"-\u0124\3\2\2\2/\u012e\3\2\2\2\61\u0131\3\2\2\2\63\u0136\3\2\2\2\65\u013c"+
|
||||
"\3\2\2\2\67\u013f\3\2\2\29\u0143\3\2\2\2;\u014a\3\2\2\2=\u014e\3\2\2\2"+
|
||||
"?\u0151\3\2\2\2A\u0158\3\2\2\2C\u015a\3\2\2\2E\u015c\3\2\2\2G\u015e\3"+
|
||||
"\2\2\2I\u0161\3\2\2\2K\u0164\3\2\2\2M\u0166\3\2\2\2O\u0168\3\2\2\2Q\u016a"+
|
||||
"\3\2\2\2S\u016c\3\2\2\2U\u016e\3\2\2\2W\u0171\3\2\2\2Y\u0174\3\2\2\2["+
|
||||
"\u0176\3\2\2\2]\u0178\3\2\2\2_\u017a\3\2\2\2a\u017c\3\2\2\2c\u017f\3\2"+
|
||||
"\2\2e\u0182\3\2\2\2g\u0185\3\2\2\2i\u0188\3\2\2\2k\u018a\3\2\2\2m\u018c"+
|
||||
"\3\2\2\2o\u018f\3\2\2\2q\u0192\3\2\2\2s\u0195\3\2\2\2u\u0198\3\2\2\2w"+
|
||||
"\u019b\3\2\2\2y\u019e\3\2\2\2{\u01a1\3\2\2\2}\u01a5\3\2\2\2\177\u01a9"+
|
||||
"\3\2\2\2\u0081\u01ac\3\2\2\2\u0083\u01af\3\2\2\2\u0085\u01b2\3\2\2\2\u0087"+
|
||||
"\u01b8\3\2\2\2\u0089\u0298\3\2\2\2\u008b\u029a\3\2\2\2\u008d\u02bb\3\2"+
|
||||
"\2\2\u008f\u02bd\3\2\2\2\u0091\u02c8\3\2\2\2\u0093\u02d9\3\2\2\2\u0095"+
|
||||
"\u02dd\3\2\2\2\u0097\u02e2\3\2\2\2\u0099\u02e9\3\2\2\2\u009b\u02fa\3\2"+
|
||||
"\2\2\u009d\u0308\3\2\2\2\u009f\u0319\3\2\2\2\u00a1\u0328\3\2\2\2\u00a3"+
|
||||
"\u032b\3\2\2\2\u00a5\u0334\3\2\2\2\u00a7\u033b\3\2\2\2\u00a9\u033d\3\2"+
|
||||
"\2\2\u00ab\u033f\3\2\2\2\u00ad\u0341\3\2\2\2\u00af\u0348\3\2\2\2\u00b1"+
|
||||
"\u034a\3\2\2\2\u00b3\u034c\3\2\2\2\u00b5\u0359\3\2\2\2\u00b7\u035f\3\2"+
|
||||
"\2\2\u00b9\u036a\3\2\2\2\u00bb\u00bc\7k\2\2\u00bc\u00bd\7o\2\2\u00bd\u00be"+
|
||||
"\7r\2\2\u00be\u00bf\7q\2\2\u00bf\u00c0\7t\2\2\u00c0\u00c1\7v\2\2\u00c1"+
|
||||
"\4\3\2\2\2\u00c2\u00c3\7?\2\2\u00c3\6\3\2\2\2\u00c4\u00c5\7=\2\2\u00c5"+
|
||||
"\b\3\2\2\2\u00c6\u00c7\7*\2\2\u00c7\n\3\2\2\2\u00c8\u00c9\7+\2\2\u00c9"+
|
||||
"\f\3\2\2\2\u00ca\u00cb\7}\2\2\u00cb\16\3\2\2\2\u00cc\u00cd\7\177\2\2\u00cd"+
|
||||
"\20\3\2\2\2\u00ce\u00cf\7m\2\2\u00cf\u00d0\7k\2\2\u00d0\u00d1\7e\2\2\u00d1"+
|
||||
"\u00d2\7m\2\2\u00d2\u00d3\7c\2\2\u00d3\u00d4\7u\2\2\u00d4\u00d5\7o\2\2"+
|
||||
"\u00d5\22\3\2\2\2\u00d6\u00d7\7.\2\2\u00d7\24\3\2\2\2\u00d8\u00d9\7t\2"+
|
||||
"\2\u00d9\u00da\7g\2\2\u00da\u00db\7u\2\2\u00db\u00dc\7q\2\2\u00dc\u00dd"+
|
||||
"\7w\2\2\u00dd\u00de\7t\2\2\u00de\u00df\7e\2\2\u00df\u00e0\7g\2\2\u00e0"+
|
||||
"\26\3\2\2\2\u00e1\u00e2\7e\2\2\u00e2\u00e3\7n\2\2\u00e3\u00e4\7q\2\2\u00e4"+
|
||||
"\u00e5\7d\2\2\u00e5\u00e6\7d\2\2\u00e6\u00e7\7g\2\2\u00e7\u00e8\7t\2\2"+
|
||||
"\u00e8\30\3\2\2\2\u00e9\u00ea\7r\2\2\u00ea\u00eb\7c\2\2\u00eb\u00ec\7"+
|
||||
"t\2\2\u00ec\u00ed\7c\2\2\u00ed\u00ee\7o\2\2\u00ee\32\3\2\2\2\u00ef\u00f0"+
|
||||
"\7<\2\2\u00f0\34\3\2\2\2\u00f1\u00f2\7d\2\2\u00f2\u00f3\7{\2\2\u00f3\u00f4"+
|
||||
"\7v\2\2\u00f4\u00f5\7g\2\2\u00f5\u00f6\7u\2\2\u00f6\36\3\2\2\2\u00f7\u00f8"+
|
||||
"\7e\2\2\u00f8\u00f9\7{\2\2\u00f9\u00fa\7e\2\2\u00fa\u00fb\7n\2\2\u00fb"+
|
||||
"\u00fc\7g\2\2\u00fc\u00fd\7u\2\2\u00fd \3\2\2\2\u00fe\u00ff\7r\2\2\u00ff"+
|
||||
"\u0100\7e\2\2\u0100\"\3\2\2\2\u0101\u0102\7k\2\2\u0102\u0103\7p\2\2\u0103"+
|
||||
"\u0104\7n\2\2\u0104\u0105\7k\2\2\u0105\u0106\7p\2\2\u0106\u0107\7g\2\2"+
|
||||
"\u0107$\3\2\2\2\u0108\u0109\7e\2\2\u0109\u010a\7q\2\2\u010a\u010b\7p\2"+
|
||||
"\2\u010b\u010c\7u\2\2\u010c\u010d\7v\2\2\u010d&\3\2\2\2\u010e\u010f\7"+
|
||||
"g\2\2\u010f\u0110\7z\2\2\u0110\u0111\7v\2\2\u0111\u0112\7g\2\2\u0112\u0113"+
|
||||
"\7t\2\2\u0113\u0114\7p\2\2\u0114(\3\2\2\2\u0115\u0116\7c\2\2\u0116\u0117"+
|
||||
"\7n\2\2\u0117\u0118\7k\2\2\u0118\u0119\7i\2\2\u0119\u011a\7p\2\2\u011a"+
|
||||
"*\3\2\2\2\u011b\u011c\7t\2\2\u011c\u011d\7g\2\2\u011d\u011e\7i\2\2\u011e"+
|
||||
"\u011f\7k\2\2\u011f\u0120\7u\2\2\u0120\u0121\7v\2\2\u0121\u0122\7g\2\2"+
|
||||
"\u0122\u0123\7t\2\2\u0123,\3\2\2\2\u0124\u0125\7k\2\2\u0125\u0126\7p\2"+
|
||||
"\2\u0126\u0127\7v\2\2\u0127\u0128\7g\2\2\u0128\u0129\7t\2\2\u0129\u012a"+
|
||||
"\7t\2\2\u012a\u012b\7w\2\2\u012b\u012c\7r\2\2\u012c\u012d\7v\2\2\u012d"+
|
||||
".\3\2\2\2\u012e\u012f\7k\2\2\u012f\u0130\7h\2\2\u0130\60\3\2\2\2\u0131"+
|
||||
"\u0132\7g\2\2\u0132\u0133\7n\2\2\u0133\u0134\7u\2\2\u0134\u0135\7g\2\2"+
|
||||
"\u0135\62\3\2\2\2\u0136\u0137\7y\2\2\u0137\u0138\7j\2\2\u0138\u0139\7"+
|
||||
"k\2\2\u0139\u013a\7n\2\2\u013a\u013b\7g\2\2\u013b\64\3\2\2\2\u013c\u013d"+
|
||||
"\7f\2\2\u013d\u013e\7q\2\2\u013e\66\3\2\2\2\u013f\u0140\7h\2\2\u0140\u0141"+
|
||||
"\7q\2\2\u0141\u0142\7t\2\2\u01428\3\2\2\2\u0143\u0144\7t\2\2\u0144\u0145"+
|
||||
"\7g\2\2\u0145\u0146\7v\2\2\u0146\u0147\7w\2\2\u0147\u0148\7t\2\2\u0148"+
|
||||
"\u0149\7p\2\2\u0149:\3\2\2\2\u014a\u014b\7c\2\2\u014b\u014c\7u\2\2\u014c"+
|
||||
"\u014d\7o\2\2\u014d<\3\2\2\2\u014e\u014f\7\60\2\2\u014f\u0150\7\60\2\2"+
|
||||
"\u0150>\3\2\2\2\u0151\u0152\7u\2\2\u0152\u0153\7k\2\2\u0153\u0154\7i\2"+
|
||||
"\2\u0154\u0155\7p\2\2\u0155\u0156\7g\2\2\u0156\u0157\7f\2\2\u0157@\3\2"+
|
||||
"\2\2\u0158\u0159\7,\2\2\u0159B\3\2\2\2\u015a\u015b\7]\2\2\u015bD\3\2\2"+
|
||||
"\2\u015c\u015d\7_\2\2\u015dF\3\2\2\2\u015e\u015f\7/\2\2\u015f\u0160\7"+
|
||||
"/\2\2\u0160H\3\2\2\2\u0161\u0162\7-\2\2\u0162\u0163\7-\2\2\u0163J\3\2"+
|
||||
"\2\2\u0164\u0165\7-\2\2\u0165L\3\2\2\2\u0166\u0167\7/\2\2\u0167N\3\2\2"+
|
||||
"\2\u0168\u0169\7#\2\2\u0169P\3\2\2\2\u016a\u016b\7(\2\2\u016bR\3\2\2\2"+
|
||||
"\u016c\u016d\7\u0080\2\2\u016dT\3\2\2\2\u016e\u016f\7@\2\2\u016f\u0170"+
|
||||
"\7@\2\2\u0170V\3\2\2\2\u0171\u0172\7>\2\2\u0172\u0173\7>\2\2\u0173X\3"+
|
||||
"\2\2\2\u0174\u0175\7\61\2\2\u0175Z\3\2\2\2\u0176\u0177\7\'\2\2\u0177\\"+
|
||||
"\3\2\2\2\u0178\u0179\7>\2\2\u0179^\3\2\2\2\u017a\u017b\7@\2\2\u017b`\3"+
|
||||
"\2\2\2\u017c\u017d\7?\2\2\u017d\u017e\7?\2\2\u017eb\3\2\2\2\u017f\u0180"+
|
||||
"\7#\2\2\u0180\u0181\7?\2\2\u0181d\3\2\2\2\u0182\u0183\7>\2\2\u0183\u0184"+
|
||||
"\7?\2\2\u0184f\3\2\2\2\u0185\u0186\7@\2\2\u0186\u0187\7?\2\2\u0187h\3"+
|
||||
"\2\2\2\u0188\u0189\7`\2\2\u0189j\3\2\2\2\u018a\u018b\7~\2\2\u018bl\3\2"+
|
||||
"\2\2\u018c\u018d\7(\2\2\u018d\u018e\7(\2\2\u018en\3\2\2\2\u018f\u0190"+
|
||||
"\7~\2\2\u0190\u0191\7~\2\2\u0191p\3\2\2\2\u0192\u0193\7-\2\2\u0193\u0194"+
|
||||
"\7?\2\2\u0194r\3\2\2\2\u0195\u0196\7/\2\2\u0196\u0197\7?\2\2\u0197t\3"+
|
||||
"\2\2\2\u0198\u0199\7,\2\2\u0199\u019a\7?\2\2\u019av\3\2\2\2\u019b\u019c"+
|
||||
"\7\61\2\2\u019c\u019d\7?\2\2\u019dx\3\2\2\2\u019e\u019f\7\'\2\2\u019f"+
|
||||
"\u01a0\7?\2\2\u01a0z\3\2\2\2\u01a1\u01a2\7>\2\2\u01a2\u01a3\7>\2\2\u01a3"+
|
||||
"\u01a4\7?\2\2\u01a4|\3\2\2\2\u01a5\u01a6\7@\2\2\u01a6\u01a7\7@\2\2\u01a7"+
|
||||
"\u01a8\7?\2\2\u01a8~\3\2\2\2\u01a9\u01aa\7(\2\2\u01aa\u01ab\7?\2\2\u01ab"+
|
||||
"\u0080\3\2\2\2\u01ac\u01ad\7~\2\2\u01ad\u01ae\7?\2\2\u01ae\u0082\3\2\2"+
|
||||
"\2\u01af\u01b0\7`\2\2\u01b0\u01b1\7?\2\2\u01b1\u0084\3\2\2\2\u01b2\u01b3"+
|
||||
"\7\60\2\2\u01b3\u01b4\7d\2\2\u01b4\u01b5\7{\2\2\u01b5\u01b6\7v\2\2\u01b6"+
|
||||
"\u01b7\7g\2\2\u01b7\u0086\3\2\2\2\u01b8\u01b9\7%\2\2\u01b9\u0088\3\2\2"+
|
||||
"\2\u01ba\u01bb\7d\2\2\u01bb\u01bc\7t\2\2\u01bc\u0299\7m\2\2\u01bd\u01be"+
|
||||
"\7q\2\2\u01be\u01bf\7t\2\2\u01bf\u0299\7c\2\2\u01c0\u01c1\7m\2\2\u01c1"+
|
||||
"\u01c2\7k\2\2\u01c2\u0299\7n\2\2\u01c3\u01c4\7u\2\2\u01c4\u01c5\7n\2\2"+
|
||||
"\u01c5\u0299\7q\2\2\u01c6\u01c7\7p\2\2\u01c7\u01c8\7q\2\2\u01c8\u0299"+
|
||||
"\7r\2\2\u01c9\u01ca\7c\2\2\u01ca\u01cb\7u\2\2\u01cb\u0299\7n\2\2\u01cc"+
|
||||
"\u01cd\7r\2\2\u01cd\u01ce\7j\2\2\u01ce\u0299\7r\2\2\u01cf\u01d0\7c\2\2"+
|
||||
"\u01d0\u01d1\7p\2\2\u01d1\u0299\7e\2\2\u01d2\u01d3\7d\2\2\u01d3\u01d4"+
|
||||
"\7r\2\2\u01d4\u0299\7n\2\2\u01d5\u01d6\7e\2\2\u01d6\u01d7\7n\2\2\u01d7"+
|
||||
"\u0299\7e\2\2\u01d8\u01d9\7l\2\2\u01d9\u01da\7u\2\2\u01da\u0299\7t\2\2"+
|
||||
"\u01db\u01dc\7c\2\2\u01dc\u01dd\7p\2\2\u01dd\u0299\7f\2\2\u01de\u01df"+
|
||||
"\7t\2\2\u01df\u01e0\7n\2\2\u01e0\u0299\7c\2\2\u01e1\u01e2\7d\2\2\u01e2"+
|
||||
"\u01e3\7k\2\2\u01e3\u0299\7v\2\2\u01e4\u01e5\7t\2\2\u01e5\u01e6\7q\2\2"+
|
||||
"\u01e6\u0299\7n\2\2\u01e7\u01e8\7r\2\2\u01e8\u01e9\7n\2\2\u01e9\u0299"+
|
||||
"\7c\2\2\u01ea\u01eb\7r\2\2\u01eb\u01ec\7n\2\2\u01ec\u0299\7r\2\2\u01ed"+
|
||||
"\u01ee\7d\2\2\u01ee\u01ef\7o\2\2\u01ef\u0299\7k\2\2\u01f0\u01f1\7u\2\2"+
|
||||
"\u01f1\u01f2\7g\2\2\u01f2\u0299\7e\2\2\u01f3\u01f4\7t\2\2\u01f4\u01f5"+
|
||||
"\7v\2\2\u01f5\u0299\7k\2\2\u01f6\u01f7\7g\2\2\u01f7\u01f8\7q\2\2\u01f8"+
|
||||
"\u0299\7t\2\2\u01f9\u01fa\7u\2\2\u01fa\u01fb\7t\2\2\u01fb\u0299\7g\2\2"+
|
||||
"\u01fc\u01fd\7n\2\2\u01fd\u01fe\7u\2\2\u01fe\u0299\7t\2\2\u01ff\u0200"+
|
||||
"\7r\2\2\u0200\u0201\7j\2\2\u0201\u0299\7c\2\2\u0202\u0203\7c\2\2\u0203"+
|
||||
"\u0204\7n\2\2\u0204\u0299\7t\2\2\u0205\u0206\7l\2\2\u0206\u0207\7o\2\2"+
|
||||
"\u0207\u0299\7r\2\2\u0208\u0209\7d\2\2\u0209\u020a\7x\2\2\u020a\u0299"+
|
||||
"\7e\2\2\u020b\u020c\7e\2\2\u020c\u020d\7n\2\2\u020d\u0299\7k\2\2\u020e"+
|
||||
"\u020f\7t\2\2\u020f\u0210\7v\2\2\u0210\u0299\7u\2\2\u0211\u0212\7c\2\2"+
|
||||
"\u0212\u0213\7f\2\2\u0213\u0299\7e\2\2\u0214\u0215\7t\2\2\u0215\u0216"+
|
||||
"\7t\2\2\u0216\u0299\7c\2\2\u0217\u0218\7d\2\2\u0218\u0219\7x\2\2\u0219"+
|
||||
"\u0299\7u\2\2\u021a\u021b\7u\2\2\u021b\u021c\7g\2\2\u021c\u0299\7k\2\2"+
|
||||
"\u021d\u021e\7u\2\2\u021e\u021f\7c\2\2\u021f\u0299\7z\2\2\u0220\u0221"+
|
||||
"\7u\2\2\u0221\u0222\7v\2\2\u0222\u0299\7{\2\2\u0223\u0224\7u\2\2\u0224"+
|
||||
"\u0225\7v\2\2\u0225\u0299\7c\2\2\u0226\u0227\7u\2\2\u0227\u0228\7v\2\2"+
|
||||
"\u0228\u0299\7z\2\2\u0229\u022a\7f\2\2\u022a\u022b\7g\2\2\u022b\u0299"+
|
||||
"\7{\2\2\u022c\u022d\7v\2\2\u022d\u022e\7z\2\2\u022e\u0299\7c\2\2\u022f"+
|
||||
"\u0230\7z\2\2\u0230\u0231\7c\2\2\u0231\u0299\7c\2\2\u0232\u0233\7d\2\2"+
|
||||
"\u0233\u0234\7e\2\2\u0234\u0299\7e\2\2\u0235\u0236\7c\2\2\u0236\u0237"+
|
||||
"\7j\2\2\u0237\u0299\7z\2\2\u0238\u0239\7v\2\2\u0239\u023a\7{\2\2\u023a"+
|
||||
"\u0299\7c\2\2\u023b\u023c\7v\2\2\u023c\u023d\7z\2\2\u023d\u0299\7u\2\2"+
|
||||
"\u023e\u023f\7v\2\2\u023f\u0240\7c\2\2\u0240\u0299\7u\2\2\u0241\u0242"+
|
||||
"\7u\2\2\u0242\u0243\7j\2\2\u0243\u0299\7{\2\2\u0244\u0245\7u\2\2\u0245"+
|
||||
"\u0246\7j\2\2\u0246\u0299\7z\2\2\u0247\u0248\7n\2\2\u0248\u0249\7f\2\2"+
|
||||
"\u0249\u0299\7{\2\2\u024a\u024b\7n\2\2\u024b\u024c\7f\2\2\u024c\u0299"+
|
||||
"\7c\2\2\u024d\u024e\7n\2\2\u024e\u024f\7f\2\2\u024f\u0299\7z\2\2\u0250"+
|
||||
"\u0251\7n\2\2\u0251\u0252\7c\2\2\u0252\u0299\7z\2\2\u0253\u0254\7v\2\2"+
|
||||
"\u0254\u0255\7c\2\2\u0255\u0299\7{\2\2\u0256\u0257\7v\2\2\u0257\u0258"+
|
||||
"\7c\2\2\u0258\u0299\7z\2\2\u0259\u025a\7d\2\2\u025a\u025b\7e\2\2\u025b"+
|
||||
"\u0299\7u\2\2\u025c\u025d\7e\2\2\u025d\u025e\7n\2\2\u025e\u0299\7x\2\2"+
|
||||
"\u025f\u0260\7v\2\2\u0260\u0261\7u\2\2\u0261\u0299\7z\2\2\u0262\u0263"+
|
||||
"\7n\2\2\u0263\u0264\7c\2\2\u0264\u0299\7u\2\2\u0265\u0266\7e\2\2\u0266"+
|
||||
"\u0267\7r\2\2\u0267\u0299\7{\2\2\u0268\u0269\7e\2\2\u0269\u026a\7o\2\2"+
|
||||
"\u026a\u0299\7r\2\2\u026b\u026c\7e\2\2\u026c\u026d\7r\2\2\u026d\u0299"+
|
||||
"\7z\2\2\u026e\u026f\7f\2\2\u026f\u0270\7e\2\2\u0270\u0299\7r\2\2\u0271"+
|
||||
"\u0272\7f\2\2\u0272\u0273\7g\2\2\u0273\u0299\7e\2\2\u0274\u0275\7k\2\2"+
|
||||
"\u0275\u0276\7p\2\2\u0276\u0299\7e\2\2\u0277\u0278\7c\2\2\u0278\u0279"+
|
||||
"\7z\2\2\u0279\u0299\7u\2\2\u027a\u027b\7d\2\2\u027b\u027c\7p\2\2\u027c"+
|
||||
"\u0299\7g\2\2\u027d\u027e\7e\2\2\u027e\u027f\7n\2\2\u027f\u0299\7f\2\2"+
|
||||
"\u0280\u0281\7u\2\2\u0281\u0282\7d\2\2\u0282\u0299\7e\2\2\u0283\u0284"+
|
||||
"\7k\2\2\u0284\u0285\7u\2\2\u0285\u0299\7e\2\2\u0286\u0287\7k\2\2\u0287"+
|
||||
"\u0288\7p\2\2\u0288\u0299\7z\2\2\u0289\u028a\7d\2\2\u028a\u028b\7g\2\2"+
|
||||
"\u028b\u0299\7s\2\2\u028c\u028d\7u\2\2\u028d\u028e\7g\2\2\u028e\u0299"+
|
||||
"\7f\2\2\u028f\u0290\7f\2\2\u0290\u0291\7g\2\2\u0291\u0299\7z\2\2\u0292"+
|
||||
"\u0293\7k\2\2\u0293\u0294\7p\2\2\u0294\u0299\7{\2\2\u0295\u0296\7t\2\2"+
|
||||
"\u0296\u0297\7q\2\2\u0297\u0299\7t\2\2\u0298\u01ba\3\2\2\2\u0298\u01bd"+
|
||||
"\3\2\2\2\u0298\u01c0\3\2\2\2\u0298\u01c3\3\2\2\2\u0298\u01c6\3\2\2\2\u0298"+
|
||||
"\u01c9\3\2\2\2\u0298\u01cc\3\2\2\2\u0298\u01cf\3\2\2\2\u0298\u01d2\3\2"+
|
||||
"\2\2\u0298\u01d5\3\2\2\2\u0298\u01d8\3\2\2\2\u0298\u01db\3\2\2\2\u0298"+
|
||||
"\u01de\3\2\2\2\u0298\u01e1\3\2\2\2\u0298\u01e4\3\2\2\2\u0298\u01e7\3\2"+
|
||||
"\2\2\u0298\u01ea\3\2\2\2\u0298\u01ed\3\2\2\2\u0298\u01f0\3\2\2\2\u0298"+
|
||||
"\u01f3\3\2\2\2\u0298\u01f6\3\2\2\2\u0298\u01f9\3\2\2\2\u0298\u01fc\3\2"+
|
||||
"\2\2\u0298\u01ff\3\2\2\2\u0298\u0202\3\2\2\2\u0298\u0205\3\2\2\2\u0298"+
|
||||
"\u0208\3\2\2\2\u0298\u020b\3\2\2\2\u0298\u020e\3\2\2\2\u0298\u0211\3\2"+
|
||||
"\2\2\u0298\u0214\3\2\2\2\u0298\u0217\3\2\2\2\u0298\u021a\3\2\2\2\u0298"+
|
||||
"\u021d\3\2\2\2\u0298\u0220\3\2\2\2\u0298\u0223\3\2\2\2\u0298\u0226\3\2"+
|
||||
"\2\2\u0298\u0229\3\2\2\2\u0298\u022c\3\2\2\2\u0298\u022f\3\2\2\2\u0298"+
|
||||
"\u0232\3\2\2\2\u0298\u0235\3\2\2\2\u0298\u0238\3\2\2\2\u0298\u023b\3\2"+
|
||||
"\2\2\u0298\u023e\3\2\2\2\u0298\u0241\3\2\2\2\u0298\u0244\3\2\2\2\u0298"+
|
||||
"\u0247\3\2\2\2\u0298\u024a\3\2\2\2\u0298\u024d\3\2\2\2\u0298\u0250\3\2"+
|
||||
"\2\2\u0298\u0253\3\2\2\2\u0298\u0256\3\2\2\2\u0298\u0259\3\2\2\2\u0298"+
|
||||
"\u025c\3\2\2\2\u0298\u025f\3\2\2\2\u0298\u0262\3\2\2\2\u0298\u0265\3\2"+
|
||||
"\2\2\u0298\u0268\3\2\2\2\u0298\u026b\3\2\2\2\u0298\u026e\3\2\2\2\u0298"+
|
||||
"\u0271\3\2\2\2\u0298\u0274\3\2\2\2\u0298\u0277\3\2\2\2\u0298\u027a\3\2"+
|
||||
"\2\2\u0298\u027d\3\2\2\2\u0298\u0280\3\2\2\2\u0298\u0283\3\2\2\2\u0298"+
|
||||
"\u0286\3\2\2\2\u0298\u0289\3\2\2\2\u0298\u028c\3\2\2\2\u0298\u028f\3\2"+
|
||||
"\2\2\u0298\u0292\3\2\2\2\u0298\u0295\3\2\2\2\u0299\u008a\3\2\2\2\u029a"+
|
||||
"\u029b\7}\2\2\u029b\u029c\7}\2\2\u029c\u02a0\3\2\2\2\u029d\u029f\13\2"+
|
||||
"\2\2\u029e\u029d\3\2\2\2\u029f\u02a2\3\2\2\2\u02a0\u02a1\3\2\2\2\u02a0"+
|
||||
"\u029e\3\2\2\2\u02a1\u02a3\3\2\2\2\u02a2\u02a0\3\2\2\2\u02a3\u02a4\7\177"+
|
||||
"\2\2\u02a4\u02a5\7\177\2\2\u02a5\u008c\3\2\2\2\u02a6\u02a7\7d\2\2\u02a7"+
|
||||
"\u02a8\7{\2\2\u02a8\u02a9\7v\2\2\u02a9\u02bc\7g\2\2\u02aa\u02ab\7y\2\2"+
|
||||
"\u02ab\u02ac\7q\2\2\u02ac\u02ad\7t\2\2\u02ad\u02bc\7f\2\2\u02ae\u02af"+
|
||||
"\7f\2\2\u02af\u02b0\7y\2\2\u02b0\u02b1\7q\2\2\u02b1\u02b2\7t\2\2\u02b2"+
|
||||
"\u02bc\7f\2\2\u02b3\u02b4\7d\2\2\u02b4\u02b5\7q\2\2\u02b5\u02b6\7q\2\2"+
|
||||
"\u02b6\u02bc\7n\2\2\u02b7\u02b8\7x\2\2\u02b8\u02b9\7q\2\2\u02b9\u02ba"+
|
||||
"\7k\2\2\u02ba\u02bc\7f\2\2\u02bb\u02a6\3\2\2\2\u02bb\u02aa\3\2\2\2\u02bb"+
|
||||
"\u02ae\3\2\2\2\u02bb\u02b3\3\2\2\2\u02bb\u02b7\3\2\2\2\u02bc\u008e\3\2"+
|
||||
"\2\2\u02bd\u02c3\7$\2\2\u02be\u02bf\7^\2\2\u02bf\u02c2\7$\2\2\u02c0\u02c2"+
|
||||
"\n\2\2\2\u02c1\u02be\3\2\2\2\u02c1\u02c0\3\2\2\2\u02c2\u02c5\3\2\2\2\u02c3"+
|
||||
"\u02c1\3\2\2\2\u02c3\u02c4\3\2\2\2\u02c4\u02c6\3\2\2\2\u02c5\u02c3\3\2"+
|
||||
"\2\2\u02c6\u02c7\7$\2\2\u02c7\u0090\3\2\2\2\u02c8\u02cc\7)\2\2\u02c9\u02ca"+
|
||||
"\7^\2\2\u02ca\u02cd\7)\2\2\u02cb\u02cd\n\3\2\2\u02cc\u02c9\3\2\2\2\u02cc"+
|
||||
"\u02cb\3\2\2\2\u02cd\u02ce\3\2\2\2\u02ce\u02cf\7)\2\2\u02cf\u0092\3\2"+
|
||||
"\2\2\u02d0\u02d1\7v\2\2\u02d1\u02d2\7t\2\2\u02d2\u02d3\7w\2\2\u02d3\u02da"+
|
||||
"\7g\2\2\u02d4\u02d5\7h\2\2\u02d5\u02d6\7c\2\2\u02d6\u02d7\7n\2\2\u02d7"+
|
||||
"\u02d8\7u\2\2\u02d8\u02da\7g\2\2\u02d9\u02d0\3\2\2\2\u02d9\u02d4\3\2\2"+
|
||||
"\2\u02da\u0094\3\2\2\2\u02db\u02de\5\u0097L\2\u02dc\u02de\5\u009fP\2\u02dd"+
|
||||
"\u02db\3\2\2\2\u02dd\u02dc\3\2\2\2\u02de\u0096\3\2\2\2\u02df\u02e3\5\u0099"+
|
||||
"M\2\u02e0\u02e3\5\u009bN\2\u02e1\u02e3\5\u009dO\2\u02e2\u02df\3\2\2\2"+
|
||||
"\u02e2\u02e0\3\2\2\2\u02e2\u02e1\3\2\2\2\u02e3\u0098\3\2\2\2\u02e4\u02ea"+
|
||||
"\7\'\2\2\u02e5\u02e6\7\62\2\2\u02e6\u02ea\7d\2\2\u02e7\u02e8\7\62\2\2"+
|
||||
"\u02e8\u02ea\7D\2\2\u02e9\u02e4\3\2\2\2\u02e9\u02e5\3\2\2\2\u02e9\u02e7"+
|
||||
"\3\2\2\2\u02ea\u02ee\3\2\2\2\u02eb\u02ed\5\u00a7T\2\u02ec\u02eb\3\2\2"+
|
||||
"\2\u02ed\u02f0\3\2\2\2\u02ee\u02ec\3\2\2\2\u02ee\u02ef\3\2\2\2\u02ef\u02f1"+
|
||||
"\3\2\2\2\u02f0\u02ee\3\2\2\2\u02f1\u02f3\7\60\2\2\u02f2\u02f4\5\u00a7"+
|
||||
"T\2\u02f3\u02f2\3\2\2\2\u02f4\u02f5\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f5"+
|
||||
"\u02f6\3\2\2\2\u02f6\u009a\3\2\2\2\u02f7\u02f9\5\u00a9U\2\u02f8\u02f7"+
|
||||
"\3\2\2\2\u02f9\u02fc\3\2\2\2\u02fa\u02f8\3\2\2\2\u02fa\u02fb\3\2\2\2\u02fb"+
|
||||
"\u02fd\3\2\2\2\u02fc\u02fa\3\2\2\2\u02fd\u02ff\7\60\2\2\u02fe\u0300\5"+
|
||||
"\u00a9U\2\u02ff\u02fe\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u02ff\3\2\2\2"+
|
||||
"\u0301\u0302\3\2\2\2\u0302\u009c\3\2\2\2\u0303\u0309\7&\2\2\u0304\u0305"+
|
||||
"\7\62\2\2\u0305\u0309\7z\2\2\u0306\u0307\7\62\2\2\u0307\u0309\7Z\2\2\u0308"+
|
||||
"\u0303\3\2\2\2\u0308\u0304\3\2\2\2\u0308\u0306\3\2\2\2\u0309\u030d\3\2"+
|
||||
"\2\2\u030a\u030c\5\u00abV\2\u030b\u030a\3\2\2\2\u030c\u030f\3\2\2\2\u030d"+
|
||||
"\u030b\3\2\2\2\u030d\u030e\3\2\2\2\u030e\u0310\3\2\2\2\u030f\u030d\3\2"+
|
||||
"\2\2\u0310\u0312\7\60\2\2\u0311\u0313\5\u00abV\2\u0312\u0311\3\2\2\2\u0313"+
|
||||
"\u0314\3\2\2\2\u0314\u0312\3\2\2\2\u0314\u0315\3\2\2\2\u0315\u009e\3\2"+
|
||||
"\2\2\u0316\u031a\5\u00a3R\2\u0317\u031a\5\u00a5S\2\u0318\u031a\5\u00a1"+
|
||||
"Q\2\u0319\u0316\3\2\2\2\u0319\u0317\3\2\2\2\u0319\u0318\3\2\2\2\u031a"+
|
||||
"\u00a0\3\2\2\2\u031b\u031c\7\62\2\2\u031c\u031e\t\4\2\2\u031d\u031f\5"+
|
||||
"\u00a7T\2\u031e\u031d\3\2\2\2\u031f\u0320\3\2\2\2\u0320\u031e\3\2\2\2"+
|
||||
"\u0320\u0321\3\2\2\2\u0321\u0329\3\2\2\2\u0322\u0324\7\'\2\2\u0323\u0325"+
|
||||
"\5\u00a7T\2\u0324\u0323\3\2\2\2\u0325\u0326\3\2\2\2\u0326\u0324\3\2\2"+
|
||||
"\2\u0326\u0327\3\2\2\2\u0327\u0329\3\2\2\2\u0328\u031b\3\2\2\2\u0328\u0322"+
|
||||
"\3\2\2\2\u0329\u00a2\3\2\2\2\u032a\u032c\5\u00a9U\2\u032b\u032a\3\2\2"+
|
||||
"\2\u032c\u032d\3\2\2\2\u032d\u032b\3\2\2\2\u032d\u032e\3\2\2\2\u032e\u00a4"+
|
||||
"\3\2\2\2\u032f\u0335\7&\2\2\u0330\u0331\7\62\2\2\u0331\u0335\7z\2\2\u0332"+
|
||||
"\u0333\7\62\2\2\u0333\u0335\7Z\2\2\u0334\u032f\3\2\2\2\u0334\u0330\3\2"+
|
||||
"\2\2\u0334\u0332\3\2\2\2\u0335\u0337\3\2\2\2\u0336\u0338\5\u00abV\2\u0337"+
|
||||
"\u0336\3\2\2\2\u0338\u0339\3\2\2\2\u0339\u0337\3\2\2\2\u0339\u033a\3\2"+
|
||||
"\2\2\u033a\u00a6\3\2\2\2\u033b\u033c\t\5\2\2\u033c\u00a8\3\2\2\2\u033d"+
|
||||
"\u033e\t\6\2\2\u033e\u00aa\3\2\2\2\u033f\u0340\t\7\2\2\u0340\u00ac\3\2"+
|
||||
"\2\2\u0341\u0345\5\u00afX\2\u0342\u0344\5\u00b1Y\2\u0343\u0342\3\2\2\2"+
|
||||
"\u0344\u0347\3\2\2\2\u0345\u0343\3\2\2\2\u0345\u0346\3\2\2\2\u0346\u00ae"+
|
||||
"\3\2\2\2\u0347\u0345\3\2\2\2\u0348\u0349\t\b\2\2\u0349\u00b0\3\2\2\2\u034a"+
|
||||
"\u034b\t\t\2\2\u034b\u00b2\3\2\2\2\u034c\u0350\7#\2\2\u034d\u034f\5\u00b1"+
|
||||
"Y\2\u034e\u034d\3\2\2\2\u034f\u0352\3\2\2\2\u0350\u034e\3\2\2\2\u0350"+
|
||||
"\u0351\3\2\2\2\u0351\u0354\3\2\2\2\u0352\u0350\3\2\2\2\u0353\u0355\t\n"+
|
||||
"\2\2\u0354\u0353\3\2\2\2\u0355\u0356\3\2\2\2\u0356\u0354\3\2\2\2\u0356"+
|
||||
"\u0357\3\2\2\2\u0357\u00b4\3\2\2\2\u0358\u035a\t\13\2\2\u0359\u0358\3"+
|
||||
"\2\2\2\u035a\u035b\3\2\2\2\u035b\u0359\3\2\2\2\u035b\u035c\3\2\2\2\u035c"+
|
||||
"\u035d\3\2\2\2\u035d\u035e\b[\2\2\u035e\u00b6\3\2\2\2\u035f\u0360\7\61"+
|
||||
"\2\2\u0360\u0361\7\61\2\2\u0361\u0365\3\2\2\2\u0362\u0364\n\f\2\2\u0363"+
|
||||
"\u0362\3\2\2\2\u0364\u0367\3\2\2\2\u0365\u0363\3\2\2\2\u0365\u0366\3\2"+
|
||||
"\2\2\u0366\u0368\3\2\2\2\u0367\u0365\3\2\2\2\u0368\u0369\b\\\2\2\u0369"+
|
||||
"\u00b8\3\2\2\2\u036a\u036b\7\61\2\2\u036b\u036c\7,\2\2\u036c\u0370\3\2"+
|
||||
"\2\2\u036d\u036f\13\2\2\2\u036e\u036d\3\2\2\2\u036f\u0372\3\2\2\2\u0370"+
|
||||
"\u0371\3\2\2\2\u0370\u036e\3\2\2\2\u0371\u0373\3\2\2\2\u0372\u0370\3\2"+
|
||||
"\2\2\u0373\u0374\7,\2\2\u0374\u0375\7\61\2\2\u0375\u0376\3\2\2\2\u0376"+
|
||||
"\u0377\b]\2\2\u0377\u00ba\3\2\2\2!\2\u0298\u02a0\u02bb\u02c1\u02c3\u02cc"+
|
||||
"\u02d9\u02dd\u02e2\u02e9\u02ee\u02f5\u02fa\u0301\u0308\u030d\u0314\u0319"+
|
||||
"\u0320\u0326\u0328\u032d\u0334\u0339\u0345\u0350\u0356\u035b\u0365\u0370"+
|
||||
"\3\b\2\2";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
|
@ -64,26 +64,27 @@ T__62=63
|
||||
T__63=64
|
||||
T__64=65
|
||||
T__65=66
|
||||
MNEMONIC=67
|
||||
KICKASM=68
|
||||
SIMPLETYPE=69
|
||||
STRING=70
|
||||
CHAR=71
|
||||
BOOLEAN=72
|
||||
NUMBER=73
|
||||
NUMFLOAT=74
|
||||
BINFLOAT=75
|
||||
DECFLOAT=76
|
||||
HEXFLOAT=77
|
||||
NUMINT=78
|
||||
BININTEGER=79
|
||||
DECINTEGER=80
|
||||
HEXINTEGER=81
|
||||
NAME=82
|
||||
ASMREL=83
|
||||
WS=84
|
||||
COMMENT_LINE=85
|
||||
COMMENT_BLOCK=86
|
||||
T__66=67
|
||||
MNEMONIC=68
|
||||
KICKASM=69
|
||||
SIMPLETYPE=70
|
||||
STRING=71
|
||||
CHAR=72
|
||||
BOOLEAN=73
|
||||
NUMBER=74
|
||||
NUMFLOAT=75
|
||||
BINFLOAT=76
|
||||
DECFLOAT=77
|
||||
HEXFLOAT=78
|
||||
NUMINT=79
|
||||
BININTEGER=80
|
||||
DECINTEGER=81
|
||||
HEXINTEGER=82
|
||||
NAME=83
|
||||
ASMREL=84
|
||||
WS=85
|
||||
COMMENT_LINE=86
|
||||
COMMENT_BLOCK=87
|
||||
'import'=1
|
||||
'='=2
|
||||
';'=3
|
||||
@ -105,48 +106,49 @@ COMMENT_BLOCK=86
|
||||
'extern'=19
|
||||
'align'=20
|
||||
'register'=21
|
||||
'if'=22
|
||||
'else'=23
|
||||
'while'=24
|
||||
'do'=25
|
||||
'for'=26
|
||||
'return'=27
|
||||
'asm'=28
|
||||
'..'=29
|
||||
'signed'=30
|
||||
'*'=31
|
||||
'['=32
|
||||
']'=33
|
||||
'--'=34
|
||||
'++'=35
|
||||
'+'=36
|
||||
'-'=37
|
||||
'!'=38
|
||||
'&'=39
|
||||
'~'=40
|
||||
'>>'=41
|
||||
'<<'=42
|
||||
'/'=43
|
||||
'%'=44
|
||||
'<'=45
|
||||
'>'=46
|
||||
'=='=47
|
||||
'!='=48
|
||||
'<='=49
|
||||
'>='=50
|
||||
'^'=51
|
||||
'|'=52
|
||||
'&&'=53
|
||||
'||'=54
|
||||
'+='=55
|
||||
'-='=56
|
||||
'*='=57
|
||||
'/='=58
|
||||
'%='=59
|
||||
'<<='=60
|
||||
'>>='=61
|
||||
'&='=62
|
||||
'|='=63
|
||||
'^='=64
|
||||
'.byte'=65
|
||||
'#'=66
|
||||
'interrupt'=22
|
||||
'if'=23
|
||||
'else'=24
|
||||
'while'=25
|
||||
'do'=26
|
||||
'for'=27
|
||||
'return'=28
|
||||
'asm'=29
|
||||
'..'=30
|
||||
'signed'=31
|
||||
'*'=32
|
||||
'['=33
|
||||
']'=34
|
||||
'--'=35
|
||||
'++'=36
|
||||
'+'=37
|
||||
'-'=38
|
||||
'!'=39
|
||||
'&'=40
|
||||
'~'=41
|
||||
'>>'=42
|
||||
'<<'=43
|
||||
'/'=44
|
||||
'%'=45
|
||||
'<'=46
|
||||
'>'=47
|
||||
'=='=48
|
||||
'!='=49
|
||||
'<='=50
|
||||
'>='=51
|
||||
'^'=52
|
||||
'|'=53
|
||||
'&&'=54
|
||||
'||'=55
|
||||
'+='=56
|
||||
'-='=57
|
||||
'*='=58
|
||||
'/='=59
|
||||
'%='=60
|
||||
'<<='=61
|
||||
'>>='=62
|
||||
'&='=63
|
||||
'|='=64
|
||||
'^='=65
|
||||
'.byte'=66
|
||||
'#'=67
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7
|
||||
package dk.camelot64.kickc.parser;
|
||||
import org.antlr.v4.runtime.tree.ParseTreeListener;
|
||||
|
||||
@ -259,6 +259,18 @@ public interface KickCListener extends ParseTreeListener {
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitDirectiveInline(KickCParser.DirectiveInlineContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by the {@code directiveInterrupt}
|
||||
* labeled alternative in {@link KickCParser#directive}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by the {@code directiveInterrupt}
|
||||
* labeled alternative in {@link KickCParser#directive}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link KickCParser#stmtSeq}.
|
||||
* @param ctx the parse tree
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7
|
||||
// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7
|
||||
package dk.camelot64.kickc.parser;
|
||||
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
|
||||
|
||||
@ -159,6 +159,13 @@ public interface KickCVisitor<T> extends ParseTreeVisitor<T> {
|
||||
* @return the visitor result
|
||||
*/
|
||||
T visitDirectiveInline(KickCParser.DirectiveInlineContext ctx);
|
||||
/**
|
||||
* Visit a parse tree produced by the {@code directiveInterrupt}
|
||||
* labeled alternative in {@link KickCParser#directive}.
|
||||
* @param ctx the parse tree
|
||||
* @return the visitor result
|
||||
*/
|
||||
T visitDirectiveInterrupt(KickCParser.DirectiveInterruptContext ctx);
|
||||
/**
|
||||
* Visit a parse tree produced by {@link KickCParser#stmtSeq}.
|
||||
* @param ctx the parse tree
|
||||
|
@ -666,7 +666,11 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor<Object> {
|
||||
@Override
|
||||
public Object visitExprAssignmentCompound(KickCParser.ExprAssignmentCompoundContext ctx) {
|
||||
// Assignment (rValue/lValue)
|
||||
LValue lValue = (LValue) visit(ctx.expr(0));
|
||||
Object value = visit(ctx.expr(0));
|
||||
if(!(value instanceof LValue)) {
|
||||
throw new CompileError("Error! Illegal assigment Lvalue "+value.toString(), new StatementSource(ctx));
|
||||
}
|
||||
LValue lValue = (LValue) value;
|
||||
if(lValue instanceof VariableRef && ((VariableRef) lValue).isIntermediate()) {
|
||||
// Encountered an intermediate variable. This must be turned into a proper LValue later. Put it into a marker to signify that
|
||||
lValue = new LvalueIntermediate((VariableRef) lValue);
|
||||
|
@ -48,7 +48,7 @@ public class TestPrograms {
|
||||
|
||||
@Test
|
||||
public void testMultiplexer() throws IOException, URISyntaxException {
|
||||
compileAndCompare("multiplexer");
|
||||
compileAndCompare("simple-multiplexer");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
BIN
src/test/java/dk/camelot64/kickc/test/kc/balloon.png
Normal file
BIN
src/test/java/dk/camelot64/kickc/test/kc/balloon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
src/test/java/dk/camelot64/kickc/test/kc/balloon.pxi
Normal file
BIN
src/test/java/dk/camelot64/kickc/test/kc/balloon.pxi
Normal file
Binary file not shown.
@ -1,40 +1,55 @@
|
||||
// A flexible sprite multiplexer routine
|
||||
import "print.kc"
|
||||
|
||||
// TODO: Let the caller specify the number of sprites (PLEX_COUNT)
|
||||
// TODO: Optimize plexSort() - currently nxt_idx and nxt_y are stored in the outer loop.
|
||||
|
||||
import "c64"
|
||||
import "sinus"
|
||||
|
||||
// The number of sprites in the multiplexer
|
||||
const byte PLEX_COUNT = 10;
|
||||
const byte PLEX_COUNT = 24;
|
||||
|
||||
// The x-positions of the multiplexer sprites ($000-$1ff)
|
||||
word[PLEX_COUNT] PLEX_XPOS;
|
||||
|
||||
// The y-positions of the multiplexer sprites
|
||||
byte[PLEX_COUNT] PLEX_YPOS = { $ff, $12, $11, $34, $2, $81, $77, $81, $ef, $11 };
|
||||
// The y-positions of the multiplexer sprites.
|
||||
byte[PLEX_COUNT] PLEX_YPOS;
|
||||
|
||||
// The sprite pointers for the multiplexed sprites
|
||||
byte[PLEX_COUNT] PLEX_PTR;
|
||||
|
||||
// The address of the sprite pointers on the current screen (screen+$3e8).
|
||||
byte* PLEX_SCREEN_PTR = $400+$3e8;
|
||||
// The address of the sprite pointers on the current screen (screen+$3f8).
|
||||
byte* PLEX_SCREEN_PTR = $400+$3f8;
|
||||
|
||||
// Indexes of the plex-sprites sorted by sprite y-position. Each call to plexSort() will fix the sorting if changes to the Y-positions have ruined it.
|
||||
byte[PLEX_COUNT] PLEX_SORTED_IDX;
|
||||
|
||||
// Set the address of the sprite pointers on the current screen (screen+$3e8)
|
||||
inline void plexSetScreenPtr(byte* plexScreenPtr) {
|
||||
PLEX_SCREEN_PTR = plexScreenPtr;
|
||||
}
|
||||
// Variables controlling the showing of sprites
|
||||
|
||||
// The index in the PLEX tables of the next sprite to show
|
||||
byte plex_show_idx=0;
|
||||
// The index the next sprite to use for showing (sprites are used round-robin)
|
||||
byte plex_sprite_idx=0;
|
||||
// The MSB bit of the next sprite to use for showing
|
||||
byte plex_sprite_msb=1;
|
||||
|
||||
// Initialize the multiplexer data structures
|
||||
void plexInit() {
|
||||
void plexInit(byte* screen) {
|
||||
plexSetScreen(screen);
|
||||
for(byte i: 0..PLEX_COUNT-1) {
|
||||
PLEX_SORTED_IDX[i] = i;
|
||||
}
|
||||
}
|
||||
|
||||
// Ensure that the indices in PLEX_SORTED_IDX is sorted based on the y-positions of the sprites
|
||||
// Set the address of the current screen used for setting sprite pointers (at screen+$3f8)
|
||||
inline void plexSetScreen(byte* screen) {
|
||||
PLEX_SCREEN_PTR = screen+$3f8;
|
||||
}
|
||||
|
||||
// Ensure that the indices in PLEX_SORTED_IDX is sorted based on the y-positions in PLEX_YPOS
|
||||
// Assumes that the positions are nearly sorted already (as each sprite just moves a bit)
|
||||
// Uses an insertion sort
|
||||
// 1. Moves a marker from the start to end of the array. Every time the marker moves forward all elements before the marker are sorted correctly.
|
||||
// Uses an insertion sort:
|
||||
// 1. Moves a marker (m) from the start to end of the array. Every time the marker moves forward all elements before the marker are sorted correctly.
|
||||
// 2a. If the next element after the marker is larger that the current element
|
||||
// the marker can be moved forwards (as the sorting is correct).
|
||||
// 2b. If the next element after the marker is smaller than the current element:
|
||||
@ -44,8 +59,7 @@ void plexSort() {
|
||||
for(byte m: 0..PLEX_COUNT-2) {
|
||||
byte nxt_idx = PLEX_SORTED_IDX[m+1];
|
||||
byte nxt_y = PLEX_YPOS[nxt_idx];
|
||||
byte cur_idx = PLEX_SORTED_IDX[m];
|
||||
if(nxt_y<PLEX_YPOS[cur_idx]) {
|
||||
if(nxt_y<PLEX_YPOS[PLEX_SORTED_IDX[m]]) {
|
||||
// Shift values until we encounter a value smaller than nxt_y
|
||||
byte s = m;
|
||||
do {
|
||||
@ -57,27 +71,34 @@ void plexSort() {
|
||||
PLEX_SORTED_IDX[s] = nxt_idx;
|
||||
}
|
||||
}
|
||||
// Prepare for showing the sprites
|
||||
plex_show_idx = 0;
|
||||
plex_sprite_idx = 0;
|
||||
plex_sprite_msb = 1;
|
||||
}
|
||||
|
||||
|
||||
void main() {
|
||||
plexInit();
|
||||
print_cls();
|
||||
print_plex();
|
||||
plexSort();
|
||||
print_plex();
|
||||
}
|
||||
|
||||
|
||||
void print_plex() {
|
||||
for( byte i: 0..PLEX_COUNT-1) {
|
||||
print_byte(PLEX_YPOS[PLEX_SORTED_IDX[i]]);
|
||||
print_char(' ');
|
||||
// Show the next sprite.
|
||||
// plexSort() prepares showing the sprites
|
||||
void plexShowSprite() {
|
||||
byte plex_sprite_idx2 = plex_sprite_idx<<1;
|
||||
SPRITES_YPOS[plex_sprite_idx2] = PLEX_YPOS[PLEX_SORTED_IDX[plex_show_idx]];
|
||||
PLEX_SCREEN_PTR[plex_sprite_idx] = PLEX_PTR[PLEX_SORTED_IDX[plex_show_idx]];
|
||||
byte xpos_idx = PLEX_SORTED_IDX[plex_show_idx]<<1;
|
||||
SPRITES_XPOS[plex_sprite_idx2] = <PLEX_XPOS[xpos_idx];
|
||||
if(>PLEX_XPOS[xpos_idx]!=0) {
|
||||
*SPRITES_XMSB |= plex_sprite_msb;
|
||||
} else {
|
||||
*SPRITES_XMSB &= ($ff^plex_sprite_msb);
|
||||
}
|
||||
plex_sprite_idx = (plex_sprite_idx+1)&7;
|
||||
plex_show_idx++;
|
||||
plex_sprite_msb <<=1;
|
||||
if(plex_sprite_msb==0) {
|
||||
plex_sprite_msb = 1;
|
||||
}
|
||||
print_ln();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Get the y-position of the next sprite to show
|
||||
inline byte plexShowNextYpos() {
|
||||
return PLEX_YPOS[PLEX_SORTED_IDX[plex_show_idx]];
|
||||
}
|
@ -0,0 +1,89 @@
|
||||
// A simple usage of the flexible sprite multiplexer routine
|
||||
import "c64"
|
||||
import "multiplexer"
|
||||
|
||||
// Location of screen & sprites
|
||||
byte* SPRITE = $2000;
|
||||
byte* SCREEN = $400;
|
||||
byte* YSIN = $2100;
|
||||
|
||||
// The size of the y-sinus
|
||||
word YSIN_SIZE = 256;
|
||||
// The y-sinus byte table
|
||||
//byte[YSIN_SIZE] ysin;
|
||||
|
||||
kickasm(pc YSIN) {{
|
||||
.var min = 51
|
||||
.var max = 250-21
|
||||
.var ampl = max-min;
|
||||
.for(var i=0;i<256;i++)
|
||||
.byte round(min+(ampl/2)+(ampl/2)*sin(toRadians(360*i/256)))
|
||||
}}
|
||||
|
||||
|
||||
kickasm(pc SPRITE, resource "balloon.png") {{
|
||||
.var pic = LoadPicture("balloon.png", List().add($000000, $ffffff))
|
||||
.for (var y=0; y<21; y++)
|
||||
.for (var x=0;x<3; x++)
|
||||
.byte pic.getSinglecolorByte(x,y)
|
||||
}}
|
||||
|
||||
void main() {
|
||||
asm { sei }
|
||||
init();
|
||||
loop();
|
||||
}
|
||||
|
||||
// Initialize the program
|
||||
void init() {
|
||||
*D011 = VIC_DEN | VIC_RSEL | 3;
|
||||
// Initialize the multiplexer
|
||||
plexInit(SCREEN);
|
||||
// Set the x-positions & pointers
|
||||
word xp = 32;
|
||||
for(byte sx: 0..PLEX_COUNT-1) {
|
||||
PLEX_PTR[sx] = (byte)(SPRITE/$40);
|
||||
PLEX_XPOS[sx<<1] = xp;
|
||||
xp += 12;
|
||||
}
|
||||
|
||||
// Enable & initialize sprites
|
||||
*SPRITES_ENABLE = $ff;
|
||||
for(byte ss: 0..7) {
|
||||
SPRITES_COLS[ss] = GREEN;
|
||||
}
|
||||
}
|
||||
|
||||
// The raster loop
|
||||
void loop() {
|
||||
// The current index into the y-sinus
|
||||
byte sin_idx = 0;
|
||||
while(true) {
|
||||
while(*RASTER!=$ff) {}
|
||||
// Assign sinus positions
|
||||
(*BORDERCOL)++;
|
||||
byte y_idx = sin_idx;
|
||||
for(byte sy: 0..PLEX_COUNT-1) {
|
||||
PLEX_YPOS[sy] = YSIN[y_idx];
|
||||
y_idx += 10;
|
||||
}
|
||||
sin_idx +=1;
|
||||
// Sort the sprites by y-position
|
||||
(*BORDERCOL)++;
|
||||
plexSort();
|
||||
// Show the first 8 sprites
|
||||
(*BORDERCOL)++;
|
||||
for( byte ss: 0..7) {
|
||||
plexShowSprite();
|
||||
}
|
||||
// Show the next 8 sprites
|
||||
for( byte ss2: 8..PLEX_COUNT-1) {
|
||||
*BORDERCOL = BLACK;
|
||||
byte rasterY = plexShowNextYpos()-8;
|
||||
while(*RASTER<rasterY) {}
|
||||
(*BORDERCOL)++;
|
||||
plexShowSprite();
|
||||
}
|
||||
*BORDERCOL = BLACK;
|
||||
}
|
||||
}
|
@ -1,163 +0,0 @@
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
.const PLEX_COUNT = $a
|
||||
.label print_line_cursor = 2
|
||||
.label print_char_cursor = 4
|
||||
jsr main
|
||||
main: {
|
||||
jsr plexInit
|
||||
jsr print_cls
|
||||
lda #<$400
|
||||
sta print_line_cursor
|
||||
lda #>$400
|
||||
sta print_line_cursor+1
|
||||
lda #<$400
|
||||
sta print_char_cursor
|
||||
lda #>$400
|
||||
sta print_char_cursor+1
|
||||
jsr print_plex
|
||||
jsr plexSort
|
||||
lda print_line_cursor
|
||||
sta print_char_cursor
|
||||
lda print_line_cursor+1
|
||||
sta print_char_cursor+1
|
||||
jsr print_plex
|
||||
rts
|
||||
}
|
||||
print_plex: {
|
||||
ldx #0
|
||||
b1:
|
||||
lda PLEX_SORTED_IDX,x
|
||||
tay
|
||||
lda PLEX_YPOS,y
|
||||
sta print_byte.b
|
||||
jsr print_byte
|
||||
lda #' '
|
||||
jsr print_char
|
||||
inx
|
||||
cpx #PLEX_COUNT-1+1
|
||||
bne b1
|
||||
jsr print_ln
|
||||
rts
|
||||
}
|
||||
print_ln: {
|
||||
b1:
|
||||
lda print_line_cursor
|
||||
clc
|
||||
adc #$28
|
||||
sta print_line_cursor
|
||||
bcc !+
|
||||
inc print_line_cursor+1
|
||||
!:
|
||||
lda print_line_cursor+1
|
||||
cmp print_char_cursor+1
|
||||
bcc b1
|
||||
bne !+
|
||||
lda print_line_cursor
|
||||
cmp print_char_cursor
|
||||
bcc b1
|
||||
!:
|
||||
rts
|
||||
}
|
||||
print_char: {
|
||||
ldy #0
|
||||
sta (print_char_cursor),y
|
||||
inc print_char_cursor
|
||||
bne !+
|
||||
inc print_char_cursor+1
|
||||
!:
|
||||
rts
|
||||
}
|
||||
print_byte: {
|
||||
.label b = 6
|
||||
lda b
|
||||
lsr
|
||||
lsr
|
||||
lsr
|
||||
lsr
|
||||
tay
|
||||
lda print_hextab,y
|
||||
jsr print_char
|
||||
lda #$f
|
||||
and b
|
||||
tay
|
||||
lda print_hextab,y
|
||||
jsr print_char
|
||||
rts
|
||||
}
|
||||
plexSort: {
|
||||
.label nxt_idx = 7
|
||||
.label nxt_y = 8
|
||||
.label m = 6
|
||||
lda #0
|
||||
sta m
|
||||
b1:
|
||||
ldy m
|
||||
lda PLEX_SORTED_IDX+1,y
|
||||
sta nxt_idx
|
||||
tay
|
||||
lda PLEX_YPOS,y
|
||||
sta nxt_y
|
||||
ldx m
|
||||
ldy PLEX_SORTED_IDX,x
|
||||
cmp PLEX_YPOS,y
|
||||
bcs b2
|
||||
b3:
|
||||
lda PLEX_SORTED_IDX,x
|
||||
sta PLEX_SORTED_IDX+1,x
|
||||
dex
|
||||
cpx #$ff
|
||||
bne b7
|
||||
b5:
|
||||
inx
|
||||
lda nxt_idx
|
||||
sta PLEX_SORTED_IDX,x
|
||||
b2:
|
||||
inc m
|
||||
lda m
|
||||
cmp #PLEX_COUNT-2+1
|
||||
bne b1
|
||||
rts
|
||||
b7:
|
||||
lda nxt_y
|
||||
ldy PLEX_SORTED_IDX,x
|
||||
cmp PLEX_YPOS,y
|
||||
bcc b3
|
||||
jmp b5
|
||||
}
|
||||
print_cls: {
|
||||
.label sc = 2
|
||||
lda #<$400
|
||||
sta sc
|
||||
lda #>$400
|
||||
sta sc+1
|
||||
b1:
|
||||
lda #' '
|
||||
ldy #0
|
||||
sta (sc),y
|
||||
inc sc
|
||||
bne !+
|
||||
inc sc+1
|
||||
!:
|
||||
lda sc+1
|
||||
cmp #>$400+$3e8
|
||||
bne b1
|
||||
lda sc
|
||||
cmp #<$400+$3e8
|
||||
bne b1
|
||||
rts
|
||||
}
|
||||
plexInit: {
|
||||
ldx #0
|
||||
b1:
|
||||
txa
|
||||
sta PLEX_SORTED_IDX,x
|
||||
inx
|
||||
cpx #PLEX_COUNT-1+1
|
||||
bne b1
|
||||
rts
|
||||
}
|
||||
print_hextab: .text "0123456789abcdef"
|
||||
PLEX_YPOS: .byte $ff, $12, $11, $34, 2, $81, $77, $81, $ef, $11
|
||||
PLEX_SORTED_IDX: .fill PLEX_COUNT, 0
|
@ -1,147 +0,0 @@
|
||||
@begin: scope:[] from
|
||||
[0] phi() [ ] ( )
|
||||
to:@19
|
||||
@19: scope:[] from @begin
|
||||
[1] phi() [ ] ( )
|
||||
[2] call main [ ] ( )
|
||||
to:@end
|
||||
@end: scope:[] from @19
|
||||
[3] phi() [ ] ( )
|
||||
main: scope:[main] from @19
|
||||
[4] phi() [ ] ( main:2 [ ] )
|
||||
[5] call plexInit [ ] ( main:2 [ ] )
|
||||
to:main::@1
|
||||
main::@1: scope:[main] from main
|
||||
[6] phi() [ ] ( main:2 [ ] )
|
||||
[7] call print_cls [ ] ( main:2 [ ] )
|
||||
to:main::@2
|
||||
main::@2: scope:[main] from main::@1
|
||||
[8] phi() [ ] ( main:2 [ ] )
|
||||
[9] call print_plex [ print_line_cursor#1 ] ( main:2 [ print_line_cursor#1 ] )
|
||||
to:main::@3
|
||||
main::@3: scope:[main] from main::@2
|
||||
[10] phi() [ print_line_cursor#1 ] ( main:2 [ print_line_cursor#1 ] )
|
||||
[11] call plexSort [ print_line_cursor#1 ] ( main:2 [ print_line_cursor#1 ] )
|
||||
to:main::@4
|
||||
main::@4: scope:[main] from main::@3
|
||||
[12] (byte*~) print_char_cursor#47 ← (byte*) print_line_cursor#1 [ print_char_cursor#47 print_line_cursor#1 ] ( main:2 [ print_char_cursor#47 print_line_cursor#1 ] )
|
||||
[13] call print_plex [ ] ( main:2 [ ] )
|
||||
to:main::@return
|
||||
main::@return: scope:[main] from main::@4
|
||||
[14] return [ ] ( main:2 [ ] )
|
||||
to:@return
|
||||
print_plex: scope:[print_plex] from main::@2 main::@4
|
||||
[15] (byte*) print_line_cursor#34 ← phi( main::@2/((byte*))(word/signed word/dword/signed dword) 1024 main::@4/(byte*) print_line_cursor#1 ) [ print_char_cursor#44 print_line_cursor#34 ] ( main:2::print_plex:9 [ print_char_cursor#44 print_line_cursor#34 ] main:2::print_plex:13 [ print_char_cursor#44 print_line_cursor#34 ] )
|
||||
[15] (byte*) print_char_cursor#44 ← phi( main::@2/((byte*))(word/signed word/dword/signed dword) 1024 main::@4/(byte*~) print_char_cursor#47 ) [ print_char_cursor#44 print_line_cursor#34 ] ( main:2::print_plex:9 [ print_char_cursor#44 print_line_cursor#34 ] main:2::print_plex:13 [ print_char_cursor#44 print_line_cursor#34 ] )
|
||||
to:print_plex::@1
|
||||
print_plex::@1: scope:[print_plex] from print_plex print_plex::@4
|
||||
[16] (byte*) print_char_cursor#40 ← phi( print_plex/(byte*) print_char_cursor#44 print_plex::@4/(byte*) print_char_cursor#25 ) [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 ] )
|
||||
[16] (byte) print_plex::i#2 ← phi( print_plex/(byte/signed byte/word/signed word/dword/signed dword) 0 print_plex::@4/(byte) print_plex::i#1 ) [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 ] )
|
||||
[17] (byte) print_byte::b#0 ← *((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) print_plex::i#2)) [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 ] )
|
||||
[18] call print_byte [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
to:print_plex::@3
|
||||
print_plex::@3: scope:[print_plex] from print_plex::@1
|
||||
[19] phi() [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
[20] call print_char [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
to:print_plex::@4
|
||||
print_plex::@4: scope:[print_plex] from print_plex::@3
|
||||
[21] (byte) print_plex::i#1 ← ++ (byte) print_plex::i#2 [ print_line_cursor#34 print_plex::i#1 print_char_cursor#25 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#1 print_char_cursor#25 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#1 print_char_cursor#25 ] )
|
||||
[22] if((byte) print_plex::i#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 1+(byte/signed byte/word/signed word/dword/signed dword) 1) goto print_plex::@1 [ print_line_cursor#34 print_plex::i#1 print_char_cursor#25 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_plex::i#1 print_char_cursor#25 ] main:2::print_plex:13 [ print_line_cursor#34 print_plex::i#1 print_char_cursor#25 ] )
|
||||
to:print_plex::@2
|
||||
print_plex::@2: scope:[print_plex] from print_plex::@4
|
||||
[23] phi() [ print_line_cursor#34 print_char_cursor#25 ] ( main:2::print_plex:9 [ print_line_cursor#34 print_char_cursor#25 ] main:2::print_plex:13 [ print_line_cursor#34 print_char_cursor#25 ] )
|
||||
[24] call print_ln [ print_line_cursor#1 ] ( main:2::print_plex:9 [ print_line_cursor#1 ] main:2::print_plex:13 [ print_line_cursor#1 ] )
|
||||
to:print_plex::@return
|
||||
print_plex::@return: scope:[print_plex] from print_plex::@2
|
||||
[25] return [ print_line_cursor#1 ] ( main:2::print_plex:9 [ print_line_cursor#1 ] main:2::print_plex:13 [ print_line_cursor#1 ] )
|
||||
to:@return
|
||||
print_ln: scope:[print_ln] from print_plex::@2
|
||||
[26] phi() [ print_line_cursor#34 print_char_cursor#25 ] ( main:2::print_plex:9::print_ln:24 [ print_line_cursor#34 print_char_cursor#25 ] main:2::print_plex:13::print_ln:24 [ print_line_cursor#34 print_char_cursor#25 ] )
|
||||
to:print_ln::@1
|
||||
print_ln::@1: scope:[print_ln] from print_ln print_ln::@1
|
||||
[27] (byte*) print_line_cursor#12 ← phi( print_ln/(byte*) print_line_cursor#34 print_ln::@1/(byte*) print_line_cursor#1 ) [ print_char_cursor#25 print_line_cursor#12 ] ( main:2::print_plex:9::print_ln:24 [ print_char_cursor#25 print_line_cursor#12 ] main:2::print_plex:13::print_ln:24 [ print_char_cursor#25 print_line_cursor#12 ] )
|
||||
[28] (byte*) print_line_cursor#1 ← (byte*) print_line_cursor#12 + (byte/signed byte/word/signed word/dword/signed dword) 40 [ print_line_cursor#1 print_char_cursor#25 ] ( main:2::print_plex:9::print_ln:24 [ print_line_cursor#1 print_char_cursor#25 ] main:2::print_plex:13::print_ln:24 [ print_line_cursor#1 print_char_cursor#25 ] )
|
||||
[29] if((byte*) print_line_cursor#1<(byte*) print_char_cursor#25) goto print_ln::@1 [ print_line_cursor#1 print_char_cursor#25 ] ( main:2::print_plex:9::print_ln:24 [ print_line_cursor#1 print_char_cursor#25 ] main:2::print_plex:13::print_ln:24 [ print_line_cursor#1 print_char_cursor#25 ] )
|
||||
to:print_ln::@return
|
||||
print_ln::@return: scope:[print_ln] from print_ln::@1
|
||||
[30] return [ print_line_cursor#1 ] ( main:2::print_plex:9::print_ln:24 [ print_line_cursor#1 ] main:2::print_plex:13::print_ln:24 [ print_line_cursor#1 ] )
|
||||
to:@return
|
||||
print_char: scope:[print_char] from print_byte print_byte::@1 print_plex::@3
|
||||
[31] (byte*) print_char_cursor#24 ← phi( print_byte/(byte*) print_char_cursor#40 print_byte::@1/(byte*) print_char_cursor#25 print_plex::@3/(byte*) print_char_cursor#25 ) [ print_char::ch#3 print_char_cursor#24 ] ( main:2::print_plex:9::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:13::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:9::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:13::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:9::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:13::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] )
|
||||
[31] (byte) print_char::ch#3 ← phi( print_byte/(byte) print_char::ch#0 print_byte::@1/(byte) print_char::ch#1 print_plex::@3/(byte) ' ' ) [ print_char::ch#3 print_char_cursor#24 ] ( main:2::print_plex:9::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:13::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:9::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:13::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:9::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] main:2::print_plex:13::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char::ch#3 print_char_cursor#24 ] )
|
||||
[32] *((byte*) print_char_cursor#24) ← (byte) print_char::ch#3 [ print_char_cursor#24 ] ( main:2::print_plex:9::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#24 ] main:2::print_plex:13::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#24 ] main:2::print_plex:9::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char_cursor#24 ] main:2::print_plex:13::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char_cursor#24 ] main:2::print_plex:9::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#24 ] main:2::print_plex:13::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#24 ] )
|
||||
[33] (byte*) print_char_cursor#25 ← ++ (byte*) print_char_cursor#24 [ print_char_cursor#25 ] ( main:2::print_plex:9::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:9::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char_cursor#25 ] main:2::print_plex:13::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char_cursor#25 ] main:2::print_plex:9::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
to:print_char::@return
|
||||
print_char::@return: scope:[print_char] from print_char
|
||||
[34] return [ print_char_cursor#25 ] ( main:2::print_plex:9::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13::print_char:20 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:9::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char_cursor#25 ] main:2::print_plex:13::print_byte:18::print_char:37 [ print_line_cursor#34 print_plex::i#2 print_byte::b#0 print_char_cursor#25 ] main:2::print_plex:9::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13::print_byte:18::print_char:40 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
to:@return
|
||||
print_byte: scope:[print_byte] from print_plex::@1
|
||||
[35] (byte~) print_byte::$0 ← (byte) print_byte::b#0 >> (byte/signed byte/word/signed word/dword/signed dword) 4 [ print_char_cursor#40 print_byte::b#0 print_byte::$0 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 print_byte::$0 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 print_byte::$0 ] )
|
||||
[36] (byte) print_char::ch#0 ← *((const byte[]) print_hextab#0 + (byte~) print_byte::$0) [ print_char_cursor#40 print_byte::b#0 print_char::ch#0 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 print_char::ch#0 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#40 print_byte::b#0 print_char::ch#0 ] )
|
||||
[37] call print_char [ print_char_cursor#25 print_byte::b#0 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 print_byte::b#0 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 print_byte::b#0 ] )
|
||||
to:print_byte::@1
|
||||
print_byte::@1: scope:[print_byte] from print_byte
|
||||
[38] (byte~) print_byte::$2 ← (byte) print_byte::b#0 & (byte/signed byte/word/signed word/dword/signed dword) 15 [ print_char_cursor#25 print_byte::$2 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 print_byte::$2 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 print_byte::$2 ] )
|
||||
[39] (byte) print_char::ch#1 ← *((const byte[]) print_hextab#0 + (byte~) print_byte::$2) [ print_char_cursor#25 print_char::ch#1 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 print_char::ch#1 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 print_char::ch#1 ] )
|
||||
[40] call print_char [ print_char_cursor#25 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
to:print_byte::@return
|
||||
print_byte::@return: scope:[print_byte] from print_byte::@1
|
||||
[41] return [ print_char_cursor#25 ] ( main:2::print_plex:9::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] main:2::print_plex:13::print_byte:18 [ print_line_cursor#34 print_plex::i#2 print_char_cursor#25 ] )
|
||||
to:@return
|
||||
plexSort: scope:[plexSort] from main::@3
|
||||
[42] phi() [ ] ( main:2::plexSort:11 [ print_line_cursor#1 ] )
|
||||
to:plexSort::@1
|
||||
plexSort::@1: scope:[plexSort] from plexSort plexSort::@2
|
||||
[43] (byte) plexSort::m#2 ← phi( plexSort/(byte/signed byte/word/signed word/dword/signed dword) 0 plexSort::@2/(byte) plexSort::m#1 ) [ plexSort::m#2 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 ] )
|
||||
[44] (byte) plexSort::nxt_idx#0 ← *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0+(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) plexSort::m#2) [ plexSort::m#2 plexSort::nxt_idx#0 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 ] )
|
||||
[45] (byte) plexSort::nxt_y#0 ← *((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + (byte) plexSort::nxt_idx#0) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] )
|
||||
[46] (byte) plexSort::cur_idx#0 ← *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::m#2) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::cur_idx#0 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::cur_idx#0 ] )
|
||||
[47] if((byte) plexSort::nxt_y#0>=*((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + (byte) plexSort::cur_idx#0)) goto plexSort::@2 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] )
|
||||
to:plexSort::@10
|
||||
plexSort::@10: scope:[plexSort] from plexSort::@1
|
||||
[48] (byte~) plexSort::s#6 ← (byte) plexSort::m#2 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#6 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#6 ] )
|
||||
to:plexSort::@3
|
||||
plexSort::@3: scope:[plexSort] from plexSort::@10 plexSort::@7
|
||||
[49] (byte) plexSort::s#3 ← phi( plexSort::@7/(byte) plexSort::s#1 plexSort::@10/(byte~) plexSort::s#6 ) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] )
|
||||
[50] *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0+(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) plexSort::s#3) ← *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::s#3) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] )
|
||||
[51] (byte) plexSort::s#1 ← -- (byte) plexSort::s#3 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] )
|
||||
[52] if((byte) plexSort::s#1!=(byte/word/signed word/dword/signed dword) 255) goto plexSort::@7 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] )
|
||||
to:plexSort::@5
|
||||
plexSort::@5: scope:[plexSort] from plexSort::@3 plexSort::@7
|
||||
[53] (byte) plexSort::s#2 ← ++ (byte) plexSort::s#1 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::s#2 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::s#2 ] )
|
||||
[54] *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::s#2) ← (byte) plexSort::nxt_idx#0 [ plexSort::m#2 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 ] )
|
||||
to:plexSort::@2
|
||||
plexSort::@2: scope:[plexSort] from plexSort::@1 plexSort::@5
|
||||
[55] (byte) plexSort::m#1 ← ++ (byte) plexSort::m#2 [ plexSort::m#1 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#1 ] )
|
||||
[56] if((byte) plexSort::m#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 2+(byte/signed byte/word/signed word/dword/signed dword) 1) goto plexSort::@1 [ plexSort::m#1 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#1 ] )
|
||||
to:plexSort::@return
|
||||
plexSort::@return: scope:[plexSort] from plexSort::@2
|
||||
[57] return [ ] ( main:2::plexSort:11 [ print_line_cursor#1 ] )
|
||||
to:@return
|
||||
plexSort::@7: scope:[plexSort] from plexSort::@3
|
||||
[58] if((byte) plexSort::nxt_y#0<*((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::s#1))) goto plexSort::@3 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] ( main:2::plexSort:11 [ print_line_cursor#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] )
|
||||
to:plexSort::@5
|
||||
print_cls: scope:[print_cls] from main::@1
|
||||
[59] phi() [ ] ( main:2::print_cls:7 [ ] )
|
||||
to:print_cls::@1
|
||||
print_cls::@1: scope:[print_cls] from print_cls print_cls::@1
|
||||
[60] (byte*) print_cls::sc#2 ← phi( print_cls/((byte*))(word/signed word/dword/signed dword) 1024 print_cls::@1/(byte*) print_cls::sc#1 ) [ print_cls::sc#2 ] ( main:2::print_cls:7 [ print_cls::sc#2 ] )
|
||||
[61] *((byte*) print_cls::sc#2) ← (byte) ' ' [ print_cls::sc#2 ] ( main:2::print_cls:7 [ print_cls::sc#2 ] )
|
||||
[62] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 [ print_cls::sc#1 ] ( main:2::print_cls:7 [ print_cls::sc#1 ] )
|
||||
[63] if((byte*) print_cls::sc#1!=((byte*))(word/signed word/dword/signed dword) 1024+(word/signed word/dword/signed dword) 1000) goto print_cls::@1 [ print_cls::sc#1 ] ( main:2::print_cls:7 [ print_cls::sc#1 ] )
|
||||
to:print_cls::@return
|
||||
print_cls::@return: scope:[print_cls] from print_cls::@1
|
||||
[64] return [ ] ( main:2::print_cls:7 [ ] )
|
||||
to:@return
|
||||
plexInit: scope:[plexInit] from main
|
||||
[65] phi() [ ] ( main:2::plexInit:5 [ ] )
|
||||
to:plexInit::@1
|
||||
plexInit::@1: scope:[plexInit] from plexInit plexInit::@1
|
||||
[66] (byte) plexInit::i#2 ← phi( plexInit/(byte/signed byte/word/signed word/dword/signed dword) 0 plexInit::@1/(byte) plexInit::i#1 ) [ plexInit::i#2 ] ( main:2::plexInit:5 [ plexInit::i#2 ] )
|
||||
[67] *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexInit::i#2) ← (byte) plexInit::i#2 [ plexInit::i#2 ] ( main:2::plexInit:5 [ plexInit::i#2 ] )
|
||||
[68] (byte) plexInit::i#1 ← ++ (byte) plexInit::i#2 [ plexInit::i#1 ] ( main:2::plexInit:5 [ plexInit::i#1 ] )
|
||||
[69] if((byte) plexInit::i#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 1+(byte/signed byte/word/signed word/dword/signed dword) 1) goto plexInit::@1 [ plexInit::i#1 ] ( main:2::plexInit:5 [ plexInit::i#1 ] )
|
||||
to:plexInit::@return
|
||||
plexInit::@return: scope:[plexInit] from plexInit::@1
|
||||
[70] return [ ] ( main:2::plexInit:5 [ ] )
|
||||
to:@return
|
File diff suppressed because it is too large
Load Diff
@ -1,101 +0,0 @@
|
||||
(label) @19
|
||||
(label) @begin
|
||||
(label) @end
|
||||
(byte) PLEX_COUNT
|
||||
(const byte) PLEX_COUNT#0 PLEX_COUNT = (byte/signed byte/word/signed word/dword/signed dword) 10
|
||||
(byte[PLEX_COUNT#0]) PLEX_SORTED_IDX
|
||||
(const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 PLEX_SORTED_IDX = { fill( PLEX_COUNT#0, 0) }
|
||||
(byte[PLEX_COUNT#0]) PLEX_YPOS
|
||||
(const byte[PLEX_COUNT#0]) PLEX_YPOS#0 PLEX_YPOS = { (byte/word/signed word/dword/signed dword) 255, (byte/signed byte/word/signed word/dword/signed dword) 18, (byte/signed byte/word/signed word/dword/signed dword) 17, (byte/signed byte/word/signed word/dword/signed dword) 52, (byte/signed byte/word/signed word/dword/signed dword) 2, (byte/word/signed word/dword/signed dword) 129, (byte/signed byte/word/signed word/dword/signed dword) 119, (byte/word/signed word/dword/signed dword) 129, (byte/word/signed word/dword/signed dword) 239, (byte/signed byte/word/signed word/dword/signed dword) 17 }
|
||||
(void()) main()
|
||||
(label) main::@1
|
||||
(label) main::@2
|
||||
(label) main::@3
|
||||
(label) main::@4
|
||||
(label) main::@return
|
||||
(void()) plexInit()
|
||||
(label) plexInit::@1
|
||||
(label) plexInit::@return
|
||||
(byte) plexInit::i
|
||||
(byte) plexInit::i#1 reg byte x 16.5
|
||||
(byte) plexInit::i#2 reg byte x 22.0
|
||||
(void()) plexSort()
|
||||
(label) plexSort::@1
|
||||
(label) plexSort::@10
|
||||
(label) plexSort::@2
|
||||
(label) plexSort::@3
|
||||
(label) plexSort::@5
|
||||
(label) plexSort::@7
|
||||
(label) plexSort::@return
|
||||
(byte) plexSort::cur_idx
|
||||
(byte) plexSort::cur_idx#0 reg byte y 22.0
|
||||
(byte) plexSort::m
|
||||
(byte) plexSort::m#1 m zp ZP_BYTE:6 16.5
|
||||
(byte) plexSort::m#2 m zp ZP_BYTE:6 4.230769230769231
|
||||
(byte) plexSort::nxt_idx
|
||||
(byte) plexSort::nxt_idx#0 nxt_idx zp ZP_BYTE:7 3.0
|
||||
(byte) plexSort::nxt_y
|
||||
(byte) plexSort::nxt_y#0 nxt_y zp ZP_BYTE:8 13.666666666666666
|
||||
(byte) plexSort::s
|
||||
(byte) plexSort::s#1 reg byte x 138.33333333333334
|
||||
(byte) plexSort::s#2 reg byte x 22.0
|
||||
(byte) plexSort::s#3 reg byte x 207.5
|
||||
(byte~) plexSort::s#6 reg byte x 22.0
|
||||
(void()) print_byte((byte) print_byte::b)
|
||||
(byte~) print_byte::$0 reg byte a 4.0
|
||||
(byte~) print_byte::$2 reg byte a 4.0
|
||||
(label) print_byte::@1
|
||||
(label) print_byte::@return
|
||||
(byte) print_byte::b
|
||||
(byte) print_byte::b#0 b zp ZP_BYTE:6 3.75
|
||||
(void()) print_char((byte) print_char::ch)
|
||||
(label) print_char::@return
|
||||
(byte) print_char::ch
|
||||
(byte) print_char::ch#0 reg byte a 4.0
|
||||
(byte) print_char::ch#1 reg byte a 4.0
|
||||
(byte) print_char::ch#3 reg byte a 6.0
|
||||
(byte*) print_char_cursor
|
||||
(byte*) print_char_cursor#24 print_char_cursor zp ZP_WORD:4 9.5
|
||||
(byte*) print_char_cursor#25 print_char_cursor zp ZP_WORD:4 2.1764705882352944
|
||||
(byte*) print_char_cursor#40 print_char_cursor zp ZP_WORD:4 3.75
|
||||
(byte*) print_char_cursor#44 print_char_cursor zp ZP_WORD:4 4.0
|
||||
(byte*~) print_char_cursor#47 print_char_cursor zp ZP_WORD:4 4.0
|
||||
(void()) print_cls()
|
||||
(label) print_cls::@1
|
||||
(label) print_cls::@return
|
||||
(byte*) print_cls::sc
|
||||
(byte*) print_cls::sc#1 sc zp ZP_WORD:2 16.5
|
||||
(byte*) print_cls::sc#2 sc zp ZP_WORD:2 16.5
|
||||
(byte[]) print_hextab
|
||||
(const byte[]) print_hextab#0 print_hextab = (string) "0123456789abcdef"
|
||||
(byte*) print_line_cursor
|
||||
(byte*) print_line_cursor#1 print_line_cursor zp ZP_WORD:2 4.111111111111112
|
||||
(byte*) print_line_cursor#12 print_line_cursor zp ZP_WORD:2 24.0
|
||||
(byte*) print_line_cursor#34 print_line_cursor zp ZP_WORD:2 0.4
|
||||
(void()) print_ln()
|
||||
(label) print_ln::@1
|
||||
(label) print_ln::@return
|
||||
(void()) print_plex()
|
||||
(label) print_plex::@1
|
||||
(label) print_plex::@2
|
||||
(label) print_plex::@3
|
||||
(label) print_plex::@4
|
||||
(label) print_plex::@return
|
||||
(byte) print_plex::i
|
||||
(byte) print_plex::i#1 reg byte x 16.5
|
||||
(byte) print_plex::i#2 reg byte x 6.6000000000000005
|
||||
(byte*) print_screen
|
||||
|
||||
reg byte x [ print_plex::i#2 print_plex::i#1 ]
|
||||
zp ZP_WORD:2 [ print_line_cursor#12 print_line_cursor#34 print_line_cursor#1 print_cls::sc#2 print_cls::sc#1 ]
|
||||
reg byte a [ print_char::ch#3 print_char::ch#0 print_char::ch#1 ]
|
||||
zp ZP_WORD:4 [ print_char_cursor#24 print_char_cursor#40 print_char_cursor#44 print_char_cursor#47 print_char_cursor#25 ]
|
||||
zp ZP_BYTE:6 [ plexSort::m#2 plexSort::m#1 print_byte::b#0 ]
|
||||
reg byte x [ plexSort::s#3 plexSort::s#1 plexSort::s#6 ]
|
||||
reg byte x [ plexInit::i#2 plexInit::i#1 ]
|
||||
reg byte a [ print_byte::$0 ]
|
||||
reg byte a [ print_byte::$2 ]
|
||||
zp ZP_BYTE:7 [ plexSort::nxt_idx#0 ]
|
||||
zp ZP_BYTE:8 [ plexSort::nxt_y#0 ]
|
||||
reg byte y [ plexSort::cur_idx#0 ]
|
||||
reg byte x [ plexSort::s#2 ]
|
253
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.asm
Normal file
253
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.asm
Normal file
@ -0,0 +1,253 @@
|
||||
.pc = $801 "Basic"
|
||||
:BasicUpstart(main)
|
||||
.pc = $80d "Program"
|
||||
.label SPRITES_XPOS = $d000
|
||||
.label SPRITES_YPOS = $d001
|
||||
.label SPRITES_XMSB = $d010
|
||||
.label RASTER = $d012
|
||||
.label SPRITES_ENABLE = $d015
|
||||
.label BORDERCOL = $d020
|
||||
.label SPRITES_COLS = $d027
|
||||
.label D011 = $d011
|
||||
.const VIC_DEN = $10
|
||||
.const VIC_RSEL = 8
|
||||
.const BLACK = 0
|
||||
.const GREEN = 5
|
||||
.const PLEX_COUNT = $18
|
||||
.label SPRITE = $2000
|
||||
.label SCREEN = $400
|
||||
.label YSIN = $2100
|
||||
.label PLEX_SCREEN_PTR = SCREEN+$3f8
|
||||
.label plex_sprite_idx = 4
|
||||
.label plex_show_idx = 5
|
||||
.label plex_sprite_msb = 6
|
||||
jsr main
|
||||
main: {
|
||||
sei
|
||||
jsr init
|
||||
jsr loop
|
||||
rts
|
||||
}
|
||||
loop: {
|
||||
.label sin_idx = 2
|
||||
.label ss = 3
|
||||
.label rasterY = 9
|
||||
.label ss2 = 3
|
||||
lda #0
|
||||
sta sin_idx
|
||||
b4:
|
||||
lda RASTER
|
||||
cmp #$ff
|
||||
bne b4
|
||||
inc BORDERCOL
|
||||
ldx sin_idx
|
||||
ldy #0
|
||||
b7:
|
||||
lda YSIN,x
|
||||
sta PLEX_YPOS,y
|
||||
txa
|
||||
clc
|
||||
adc #$a
|
||||
tax
|
||||
iny
|
||||
cpy #PLEX_COUNT-1+1
|
||||
bne b7
|
||||
inc sin_idx
|
||||
inc BORDERCOL
|
||||
jsr plexSort
|
||||
inc BORDERCOL
|
||||
lda #0
|
||||
sta ss
|
||||
lda #1
|
||||
sta plex_sprite_msb
|
||||
lda #0
|
||||
sta plex_show_idx
|
||||
sta plex_sprite_idx
|
||||
b8:
|
||||
jsr plexShowSprite
|
||||
inc ss
|
||||
lda ss
|
||||
cmp #8
|
||||
bne b8
|
||||
lda #8
|
||||
sta ss2
|
||||
b9:
|
||||
lda #BLACK
|
||||
sta BORDERCOL
|
||||
ldy plex_show_idx
|
||||
lda PLEX_SORTED_IDX,y
|
||||
tay
|
||||
lda PLEX_YPOS,y
|
||||
sec
|
||||
sbc #8
|
||||
sta rasterY
|
||||
b10:
|
||||
lda RASTER
|
||||
cmp rasterY
|
||||
bcc b10
|
||||
inc BORDERCOL
|
||||
jsr plexShowSprite
|
||||
inc ss2
|
||||
lda ss2
|
||||
cmp #PLEX_COUNT-1+1
|
||||
bne b9
|
||||
lda #BLACK
|
||||
sta BORDERCOL
|
||||
jmp b4
|
||||
}
|
||||
plexShowSprite: {
|
||||
lda plex_sprite_idx
|
||||
asl
|
||||
tay
|
||||
ldx plex_show_idx
|
||||
lda PLEX_SORTED_IDX,x
|
||||
tax
|
||||
lda PLEX_YPOS,x
|
||||
sta SPRITES_YPOS,y
|
||||
ldx plex_show_idx
|
||||
lda PLEX_SORTED_IDX,x
|
||||
tax
|
||||
lda PLEX_PTR,x
|
||||
ldx plex_sprite_idx
|
||||
sta PLEX_SCREEN_PTR,x
|
||||
ldx plex_show_idx
|
||||
lda PLEX_SORTED_IDX,x
|
||||
asl
|
||||
tax
|
||||
lda PLEX_XPOS,x
|
||||
sta SPRITES_XPOS,y
|
||||
lda PLEX_XPOS+1,x
|
||||
cmp #0
|
||||
bne b1
|
||||
lda plex_sprite_msb
|
||||
eor #$ff
|
||||
and SPRITES_XMSB
|
||||
sta SPRITES_XMSB
|
||||
b2:
|
||||
lda plex_sprite_idx
|
||||
clc
|
||||
adc #1
|
||||
and #7
|
||||
sta plex_sprite_idx
|
||||
inc plex_show_idx
|
||||
asl plex_sprite_msb
|
||||
lda plex_sprite_msb
|
||||
bne breturn
|
||||
lda #1
|
||||
sta plex_sprite_msb
|
||||
breturn:
|
||||
rts
|
||||
b1:
|
||||
lda SPRITES_XMSB
|
||||
ora plex_sprite_msb
|
||||
sta SPRITES_XMSB
|
||||
jmp b2
|
||||
}
|
||||
plexSort: {
|
||||
.label nxt_idx = 4
|
||||
.label nxt_y = 5
|
||||
.label m = 3
|
||||
lda #0
|
||||
sta m
|
||||
b1:
|
||||
ldy m
|
||||
lda PLEX_SORTED_IDX+1,y
|
||||
sta nxt_idx
|
||||
tay
|
||||
lda PLEX_YPOS,y
|
||||
sta nxt_y
|
||||
ldx m
|
||||
ldy PLEX_SORTED_IDX,x
|
||||
cmp PLEX_YPOS,y
|
||||
bcs b2
|
||||
b3:
|
||||
lda PLEX_SORTED_IDX,x
|
||||
sta PLEX_SORTED_IDX+1,x
|
||||
dex
|
||||
cpx #$ff
|
||||
bne b7
|
||||
b5:
|
||||
inx
|
||||
lda nxt_idx
|
||||
sta PLEX_SORTED_IDX,x
|
||||
b2:
|
||||
inc m
|
||||
lda m
|
||||
cmp #PLEX_COUNT-2+1
|
||||
bne b1
|
||||
rts
|
||||
b7:
|
||||
lda nxt_y
|
||||
ldy PLEX_SORTED_IDX,x
|
||||
cmp PLEX_YPOS,y
|
||||
bcc b3
|
||||
jmp b5
|
||||
}
|
||||
init: {
|
||||
.label xp = 7
|
||||
lda #VIC_DEN|VIC_RSEL|3
|
||||
sta D011
|
||||
jsr plexInit
|
||||
lda #<$20
|
||||
sta xp
|
||||
lda #>$20
|
||||
sta xp+1
|
||||
ldx #0
|
||||
b1:
|
||||
lda #$ff&SPRITE/$40
|
||||
sta PLEX_PTR,x
|
||||
txa
|
||||
asl
|
||||
tay
|
||||
lda xp
|
||||
sta PLEX_XPOS,y
|
||||
lda xp+1
|
||||
sta PLEX_XPOS+1,y
|
||||
clc
|
||||
lda xp
|
||||
adc #<$c
|
||||
sta xp
|
||||
lda xp+1
|
||||
adc #>$c
|
||||
sta xp+1
|
||||
inx
|
||||
cpx #PLEX_COUNT-1+1
|
||||
bne b1
|
||||
lda #$ff
|
||||
sta SPRITES_ENABLE
|
||||
ldx #0
|
||||
b2:
|
||||
lda #GREEN
|
||||
sta SPRITES_COLS,x
|
||||
inx
|
||||
cpx #8
|
||||
bne b2
|
||||
rts
|
||||
}
|
||||
plexInit: {
|
||||
ldx #0
|
||||
b1:
|
||||
txa
|
||||
sta PLEX_SORTED_IDX,x
|
||||
inx
|
||||
cpx #PLEX_COUNT-1+1
|
||||
bne b1
|
||||
rts
|
||||
}
|
||||
PLEX_XPOS: .fill 2*PLEX_COUNT, 0
|
||||
PLEX_YPOS: .fill PLEX_COUNT, 0
|
||||
PLEX_PTR: .fill PLEX_COUNT, 0
|
||||
PLEX_SORTED_IDX: .fill PLEX_COUNT, 0
|
||||
.pc = YSIN "Inline"
|
||||
.var min = 51
|
||||
.var max = 250-21
|
||||
.var ampl = max-min;
|
||||
.for(var i=0;i<256;i++)
|
||||
.byte round(min+(ampl/2)+(ampl/2)*sin(toRadians(360*i/256)))
|
||||
|
||||
.pc = SPRITE "Inline"
|
||||
.var pic = LoadPicture("balloon.png", List().add($000000, $ffffff))
|
||||
.for (var y=0; y<21; y++)
|
||||
.for (var x=0;x<3; x++)
|
||||
.byte pic.getSinglecolorByte(x,y)
|
||||
|
204
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.cfg
Normal file
204
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.cfg
Normal file
@ -0,0 +1,204 @@
|
||||
@begin: scope:[] from
|
||||
[0] phi() [ ] ( )
|
||||
to:@28
|
||||
@28: scope:[] from @begin
|
||||
kickasm(location (const byte*) YSIN#0) {{ .var min = 51
|
||||
.var max = 250-21
|
||||
.var ampl = max-min;
|
||||
.for(var i=0;i<256;i++)
|
||||
.byte round(min+(ampl/2)+(ampl/2)*sin(toRadians(360*i/256)))
|
||||
}}
|
||||
kickasm(location (const byte*) SPRITE#0) {{ .var pic = LoadPicture("balloon.png", List().add($000000, $ffffff))
|
||||
.for (var y=0; y<21; y++)
|
||||
.for (var x=0;x<3; x++)
|
||||
.byte pic.getSinglecolorByte(x,y)
|
||||
}}
|
||||
to:@31
|
||||
@31: scope:[] from @28
|
||||
[3] phi() [ ] ( )
|
||||
[4] call main [ ] ( )
|
||||
to:@end
|
||||
@end: scope:[] from @31
|
||||
[5] phi() [ ] ( )
|
||||
main: scope:[main] from @31
|
||||
asm { sei }
|
||||
[7] call init [ ] ( main:4 [ ] )
|
||||
to:main::@1
|
||||
main::@1: scope:[main] from main
|
||||
[8] phi() [ ] ( main:4 [ ] )
|
||||
[9] call loop [ ] ( main:4 [ ] )
|
||||
to:main::@return
|
||||
main::@return: scope:[main] from main::@1
|
||||
[10] return [ ] ( main:4 [ ] )
|
||||
to:@return
|
||||
loop: scope:[loop] from main::@1
|
||||
[11] phi() [ ] ( main:4::loop:9 [ ] )
|
||||
to:loop::@1
|
||||
loop::@1: scope:[loop] from loop loop::@23
|
||||
[12] (byte) loop::sin_idx#6 ← phi( loop/(byte/signed byte/word/signed word/dword/signed dword) 0 loop::@23/(byte) loop::sin_idx#1 ) [ loop::sin_idx#6 ] ( main:4::loop:9 [ loop::sin_idx#6 ] )
|
||||
to:loop::@4
|
||||
loop::@4: scope:[loop] from loop::@1 loop::@4
|
||||
[13] if(*((const byte*) RASTER#0)!=(byte/word/signed word/dword/signed dword) 255) goto loop::@4 [ loop::sin_idx#6 ] ( main:4::loop:9 [ loop::sin_idx#6 ] )
|
||||
to:loop::@6
|
||||
loop::@6: scope:[loop] from loop::@4
|
||||
[14] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ loop::sin_idx#6 ] ( main:4::loop:9 [ loop::sin_idx#6 ] )
|
||||
[15] (byte~) loop::y_idx#3 ← (byte) loop::sin_idx#6 [ loop::sin_idx#6 loop::y_idx#3 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::y_idx#3 ] )
|
||||
to:loop::@7
|
||||
loop::@7: scope:[loop] from loop::@6 loop::@7
|
||||
[16] (byte) loop::sy#2 ← phi( loop::@6/(byte/signed byte/word/signed word/dword/signed dword) 0 loop::@7/(byte) loop::sy#1 ) [ loop::sin_idx#6 loop::y_idx#2 loop::sy#2 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::y_idx#2 loop::sy#2 ] )
|
||||
[16] (byte) loop::y_idx#2 ← phi( loop::@6/(byte~) loop::y_idx#3 loop::@7/(byte) loop::y_idx#1 ) [ loop::sin_idx#6 loop::y_idx#2 loop::sy#2 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::y_idx#2 loop::sy#2 ] )
|
||||
[17] *((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + (byte) loop::sy#2) ← *((const byte*) YSIN#0 + (byte) loop::y_idx#2) [ loop::sin_idx#6 loop::y_idx#2 loop::sy#2 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::y_idx#2 loop::sy#2 ] )
|
||||
[18] (byte) loop::y_idx#1 ← (byte) loop::y_idx#2 + (byte/signed byte/word/signed word/dword/signed dword) 10 [ loop::sin_idx#6 loop::sy#2 loop::y_idx#1 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::sy#2 loop::y_idx#1 ] )
|
||||
[19] (byte) loop::sy#1 ← ++ (byte) loop::sy#2 [ loop::sin_idx#6 loop::y_idx#1 loop::sy#1 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::y_idx#1 loop::sy#1 ] )
|
||||
[20] if((byte) loop::sy#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 1+(byte/signed byte/word/signed word/dword/signed dword) 1) goto loop::@7 [ loop::sin_idx#6 loop::y_idx#1 loop::sy#1 ] ( main:4::loop:9 [ loop::sin_idx#6 loop::y_idx#1 loop::sy#1 ] )
|
||||
to:loop::@18
|
||||
loop::@18: scope:[loop] from loop::@7
|
||||
[21] (byte) loop::sin_idx#1 ← (byte) loop::sin_idx#6 + (byte/signed byte/word/signed word/dword/signed dword) 1 [ loop::sin_idx#1 ] ( main:4::loop:9 [ loop::sin_idx#1 ] )
|
||||
[22] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ loop::sin_idx#1 ] ( main:4::loop:9 [ loop::sin_idx#1 ] )
|
||||
[23] call plexSort [ loop::sin_idx#1 ] ( main:4::loop:9 [ loop::sin_idx#1 ] )
|
||||
to:loop::@26
|
||||
loop::@26: scope:[loop] from loop::@18
|
||||
[24] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ loop::sin_idx#1 ] ( main:4::loop:9 [ loop::sin_idx#1 ] )
|
||||
to:loop::@8
|
||||
loop::@8: scope:[loop] from loop::@26 loop::@27
|
||||
[25] (byte) loop::ss#2 ← phi( loop::@26/(byte/signed byte/word/signed word/dword/signed dword) 0 loop::@27/(byte) loop::ss#1 ) [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] )
|
||||
[25] (byte) plex_sprite_msb#29 ← phi( loop::@26/(byte/signed byte/word/signed word/dword/signed dword) 1 loop::@27/(byte) plex_sprite_msb#17 ) [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] )
|
||||
[25] (byte) plex_show_idx#25 ← phi( loop::@26/(byte/signed byte/word/signed word/dword/signed dword) 0 loop::@27/(byte) plex_show_idx#15 ) [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] )
|
||||
[25] (byte) plex_sprite_idx#24 ← phi( loop::@26/(byte/signed byte/word/signed word/dword/signed dword) 0 loop::@27/(byte) plex_sprite_idx#15 ) [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#24 plex_show_idx#25 plex_sprite_msb#29 loop::ss#2 ] )
|
||||
[26] call plexShowSprite [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] ( main:4::loop:9 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] )
|
||||
to:loop::@27
|
||||
loop::@27: scope:[loop] from loop::@8
|
||||
[27] (byte) loop::ss#1 ← ++ (byte) loop::ss#2 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss#1 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss#1 ] )
|
||||
[28] if((byte) loop::ss#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto loop::@8 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss#1 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss#1 ] )
|
||||
to:loop::@9
|
||||
loop::@9: scope:[loop] from loop::@27 loop::@28
|
||||
[29] (byte) loop::ss2#6 ← phi( loop::@27/(byte/signed byte/word/signed word/dword/signed dword) 8 loop::@28/(byte) loop::ss2#1 ) [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] )
|
||||
[30] *((const byte*) BORDERCOL#0) ← (const byte) BLACK#0 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] )
|
||||
to:loop::plexShowNextYpos1
|
||||
loop::plexShowNextYpos1: scope:[loop] from loop::@9
|
||||
[31] (byte) loop::plexShowNextYpos1_return#0 ← *((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plex_show_idx#15)) [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 loop::plexShowNextYpos1_return#0 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 loop::plexShowNextYpos1_return#0 ] )
|
||||
to:loop::@25
|
||||
loop::@25: scope:[loop] from loop::plexShowNextYpos1
|
||||
[32] (byte) loop::rasterY#0 ← (byte) loop::plexShowNextYpos1_return#0 - (byte/signed byte/word/signed word/dword/signed dword) 8 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 loop::rasterY#0 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 loop::rasterY#0 ] )
|
||||
to:loop::@10
|
||||
loop::@10: scope:[loop] from loop::@10 loop::@25
|
||||
[33] if(*((const byte*) RASTER#0)<(byte) loop::rasterY#0) goto loop::@10 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 loop::rasterY#0 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 loop::rasterY#0 ] )
|
||||
to:loop::@12
|
||||
loop::@12: scope:[loop] from loop::@10
|
||||
[34] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] )
|
||||
[35] call plexShowSprite [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#6 ] )
|
||||
to:loop::@28
|
||||
loop::@28: scope:[loop] from loop::@12
|
||||
[36] (byte) loop::ss2#1 ← ++ (byte) loop::ss2#6 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#1 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#1 ] )
|
||||
[37] if((byte) loop::ss2#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 1+(byte/signed byte/word/signed word/dword/signed dword) 1) goto loop::@9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#1 ] ( main:4::loop:9 [ loop::sin_idx#1 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 loop::ss2#1 ] )
|
||||
to:loop::@23
|
||||
loop::@23: scope:[loop] from loop::@28
|
||||
[38] *((const byte*) BORDERCOL#0) ← (const byte) BLACK#0 [ loop::sin_idx#1 ] ( main:4::loop:9 [ loop::sin_idx#1 ] )
|
||||
to:loop::@1
|
||||
plexShowSprite: scope:[plexShowSprite] from loop::@12 loop::@8
|
||||
[39] (byte) plex_sprite_msb#14 ← phi( loop::@12/(byte) plex_sprite_msb#17 loop::@8/(byte) plex_sprite_msb#29 ) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
[39] (byte) plex_show_idx#13 ← phi( loop::@12/(byte) plex_show_idx#15 loop::@8/(byte) plex_show_idx#25 ) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
[39] (byte) plex_sprite_idx#13 ← phi( loop::@12/(byte) plex_sprite_idx#15 loop::@8/(byte) plex_sprite_idx#24 ) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
[40] (byte) plexShowSprite::plex_sprite_idx2#0 ← (byte) plex_sprite_idx#13 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] )
|
||||
[41] *((const byte*) SPRITES_YPOS#0 + (byte) plexShowSprite::plex_sprite_idx2#0) ← *((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plex_show_idx#13)) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] )
|
||||
[42] *((const byte*) PLEX_SCREEN_PTR#1 + (byte) plex_sprite_idx#13) ← *((const byte[PLEX_COUNT#0]) PLEX_PTR#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plex_show_idx#13)) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 ] )
|
||||
[43] (byte) plexShowSprite::xpos_idx#0 ← *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plex_show_idx#13) << (byte/signed byte/word/signed word/dword/signed dword) 1 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 plexShowSprite::xpos_idx#0 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 plexShowSprite::xpos_idx#0 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 plexShowSprite::xpos_idx#0 ] )
|
||||
[44] (byte~) plexShowSprite::$2 ← < *((const word[PLEX_COUNT#0]) PLEX_XPOS#0 + (byte) plexShowSprite::xpos_idx#0) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 plexShowSprite::xpos_idx#0 plexShowSprite::$2 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 plexShowSprite::xpos_idx#0 plexShowSprite::$2 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::plex_sprite_idx2#0 plexShowSprite::xpos_idx#0 plexShowSprite::$2 ] )
|
||||
[45] *((const byte*) SPRITES_XPOS#0 + (byte) plexShowSprite::plex_sprite_idx2#0) ← (byte~) plexShowSprite::$2 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::xpos_idx#0 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::xpos_idx#0 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::xpos_idx#0 ] )
|
||||
[46] (byte~) plexShowSprite::$3 ← > *((const word[PLEX_COUNT#0]) PLEX_XPOS#0 + (byte) plexShowSprite::xpos_idx#0) [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$3 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$3 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$3 ] )
|
||||
[47] if((byte~) plexShowSprite::$3!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto plexShowSprite::@1 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
to:plexShowSprite::@4
|
||||
plexShowSprite::@4: scope:[plexShowSprite] from plexShowSprite
|
||||
[48] (byte/word/dword~) plexShowSprite::$5 ← (byte/word/signed word/dword/signed dword) 255 ^ (byte) plex_sprite_msb#14 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$5 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$5 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$5 ] )
|
||||
[49] *((const byte*) SPRITES_XMSB#0) ← *((const byte*) SPRITES_XMSB#0) & (byte/word/dword~) plexShowSprite::$5 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
to:plexShowSprite::@2
|
||||
plexShowSprite::@2: scope:[plexShowSprite] from plexShowSprite::@1 plexShowSprite::@4
|
||||
[50] (byte/signed word/word/dword/signed dword~) plexShowSprite::$6 ← (byte) plex_sprite_idx#13 + (byte/signed byte/word/signed word/dword/signed dword) 1 [ plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$6 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$6 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_show_idx#13 plex_sprite_msb#14 plexShowSprite::$6 ] )
|
||||
[51] (byte) plex_sprite_idx#15 ← (byte/signed word/word/dword/signed dword~) plexShowSprite::$6 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ plex_sprite_idx#15 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
[52] (byte) plex_show_idx#15 ← ++ (byte) plex_show_idx#13 [ plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#14 ] )
|
||||
[53] (byte) plex_sprite_msb#26 ← (byte) plex_sprite_msb#14 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] )
|
||||
[54] if((byte) plex_sprite_msb#26!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto plexShowSprite::@7 [ plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] )
|
||||
to:plexShowSprite::@return
|
||||
plexShowSprite::@return: scope:[plexShowSprite] from plexShowSprite::@2 plexShowSprite::@7
|
||||
[55] (byte) plex_sprite_msb#17 ← phi( plexShowSprite::@7/(byte) plex_sprite_msb#26 plexShowSprite::@2/(byte/signed byte/word/signed word/dword/signed dword) 1 ) [ plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] )
|
||||
[56] return [ plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#17 ] )
|
||||
to:@return
|
||||
plexShowSprite::@7: scope:[plexShowSprite] from plexShowSprite::@2
|
||||
[57] phi() [ plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#15 plex_show_idx#15 plex_sprite_msb#26 ] )
|
||||
to:plexShowSprite::@return
|
||||
plexShowSprite::@1: scope:[plexShowSprite] from plexShowSprite
|
||||
[58] *((const byte*) SPRITES_XMSB#0) ← *((const byte*) SPRITES_XMSB#0) | (byte) plex_sprite_msb#14 [ plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] ( main:4::loop:9::plexShowSprite:26 [ loop::sin_idx#1 loop::ss#2 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] main:4::loop:9::plexShowSprite:35 [ loop::sin_idx#1 loop::ss2#6 plex_sprite_idx#13 plex_show_idx#13 plex_sprite_msb#14 ] )
|
||||
to:plexShowSprite::@2
|
||||
plexSort: scope:[plexSort] from loop::@18
|
||||
[59] phi() [ ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 ] )
|
||||
to:plexSort::@1
|
||||
plexSort::@1: scope:[plexSort] from plexSort plexSort::@2
|
||||
[60] (byte) plexSort::m#2 ← phi( plexSort/(byte/signed byte/word/signed word/dword/signed dword) 0 plexSort::@2/(byte) plexSort::m#1 ) [ plexSort::m#2 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 ] )
|
||||
[61] (byte) plexSort::nxt_idx#0 ← *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0+(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) plexSort::m#2) [ plexSort::m#2 plexSort::nxt_idx#0 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 ] )
|
||||
[62] (byte) plexSort::nxt_y#0 ← *((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + (byte) plexSort::nxt_idx#0) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] )
|
||||
[63] if((byte) plexSort::nxt_y#0>=*((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::m#2))) goto plexSort::@2 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 ] )
|
||||
to:plexSort::@10
|
||||
plexSort::@10: scope:[plexSort] from plexSort::@1
|
||||
[64] (byte~) plexSort::s#6 ← (byte) plexSort::m#2 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#6 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#6 ] )
|
||||
to:plexSort::@3
|
||||
plexSort::@3: scope:[plexSort] from plexSort::@10 plexSort::@7
|
||||
[65] (byte) plexSort::s#3 ← phi( plexSort::@7/(byte) plexSort::s#1 plexSort::@10/(byte~) plexSort::s#6 ) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] )
|
||||
[66] *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0+(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) plexSort::s#3) ← *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::s#3) [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#3 ] )
|
||||
[67] (byte) plexSort::s#1 ← -- (byte) plexSort::s#3 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] )
|
||||
[68] if((byte) plexSort::s#1!=(byte/word/signed word/dword/signed dword) 255) goto plexSort::@7 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] )
|
||||
to:plexSort::@5
|
||||
plexSort::@5: scope:[plexSort] from plexSort::@3 plexSort::@7
|
||||
[69] (byte) plexSort::s#2 ← ++ (byte) plexSort::s#1 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::s#2 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::s#2 ] )
|
||||
[70] *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::s#2) ← (byte) plexSort::nxt_idx#0 [ plexSort::m#2 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 ] )
|
||||
to:plexSort::@2
|
||||
plexSort::@2: scope:[plexSort] from plexSort::@1 plexSort::@5
|
||||
[71] (byte) plexSort::m#1 ← ++ (byte) plexSort::m#2 [ plexSort::m#1 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#1 ] )
|
||||
[72] if((byte) plexSort::m#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 2+(byte/signed byte/word/signed word/dword/signed dword) 1) goto plexSort::@1 [ plexSort::m#1 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#1 ] )
|
||||
to:plexSort::@return
|
||||
plexSort::@return: scope:[plexSort] from plexSort::@2
|
||||
[73] return [ ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 ] )
|
||||
to:@return
|
||||
plexSort::@7: scope:[plexSort] from plexSort::@3
|
||||
[74] if((byte) plexSort::nxt_y#0<*((const byte[PLEX_COUNT#0]) PLEX_YPOS#0 + *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexSort::s#1))) goto plexSort::@3 [ plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] ( main:4::loop:9::plexSort:23 [ loop::sin_idx#1 plexSort::m#2 plexSort::nxt_idx#0 plexSort::nxt_y#0 plexSort::s#1 ] )
|
||||
to:plexSort::@5
|
||||
init: scope:[init] from main
|
||||
[75] *((const byte*) D011#0) ← (const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte/signed byte/word/signed word/dword/signed dword) 3 [ ] ( main:4::init:7 [ ] )
|
||||
[76] call plexInit [ ] ( main:4::init:7 [ ] )
|
||||
to:init::@1
|
||||
init::@1: scope:[init] from init init::@1
|
||||
[77] (word) init::xp#2 ← phi( init::@1/(word) init::xp#1 init/(byte/signed byte/word/signed word/dword/signed dword) 32 ) [ init::sx#2 init::xp#2 ] ( main:4::init:7 [ init::sx#2 init::xp#2 ] )
|
||||
[77] (byte) init::sx#2 ← phi( init::@1/(byte) init::sx#1 init/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ init::sx#2 init::xp#2 ] ( main:4::init:7 [ init::sx#2 init::xp#2 ] )
|
||||
[78] *((const byte[PLEX_COUNT#0]) PLEX_PTR#0 + (byte) init::sx#2) ← ((byte))(const byte*) SPRITE#0/(byte/signed byte/word/signed word/dword/signed dword) 64 [ init::sx#2 init::xp#2 ] ( main:4::init:7 [ init::sx#2 init::xp#2 ] )
|
||||
[79] (byte~) init::$6 ← (byte) init::sx#2 << (byte/signed byte/word/signed word/dword/signed dword) 1 [ init::sx#2 init::xp#2 init::$6 ] ( main:4::init:7 [ init::sx#2 init::xp#2 init::$6 ] )
|
||||
[80] *((const word[PLEX_COUNT#0]) PLEX_XPOS#0 + (byte~) init::$6) ← (word) init::xp#2 [ init::sx#2 init::xp#2 ] ( main:4::init:7 [ init::sx#2 init::xp#2 ] )
|
||||
[81] (word) init::xp#1 ← (word) init::xp#2 + (byte/signed byte/word/signed word/dword/signed dword) 12 [ init::sx#2 init::xp#1 ] ( main:4::init:7 [ init::sx#2 init::xp#1 ] )
|
||||
[82] (byte) init::sx#1 ← ++ (byte) init::sx#2 [ init::sx#1 init::xp#1 ] ( main:4::init:7 [ init::sx#1 init::xp#1 ] )
|
||||
[83] if((byte) init::sx#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 1+(byte/signed byte/word/signed word/dword/signed dword) 1) goto init::@1 [ init::sx#1 init::xp#1 ] ( main:4::init:7 [ init::sx#1 init::xp#1 ] )
|
||||
to:init::@3
|
||||
init::@3: scope:[init] from init::@1
|
||||
[84] *((const byte*) SPRITES_ENABLE#0) ← (byte/word/signed word/dword/signed dword) 255 [ ] ( main:4::init:7 [ ] )
|
||||
to:init::@2
|
||||
init::@2: scope:[init] from init::@2 init::@3
|
||||
[85] (byte) init::ss#2 ← phi( init::@2/(byte) init::ss#1 init::@3/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ init::ss#2 ] ( main:4::init:7 [ init::ss#2 ] )
|
||||
[86] *((const byte*) SPRITES_COLS#0 + (byte) init::ss#2) ← (const byte) GREEN#0 [ init::ss#2 ] ( main:4::init:7 [ init::ss#2 ] )
|
||||
[87] (byte) init::ss#1 ← ++ (byte) init::ss#2 [ init::ss#1 ] ( main:4::init:7 [ init::ss#1 ] )
|
||||
[88] if((byte) init::ss#1!=(byte/signed byte/word/signed word/dword/signed dword) 8) goto init::@2 [ init::ss#1 ] ( main:4::init:7 [ init::ss#1 ] )
|
||||
to:init::@return
|
||||
init::@return: scope:[init] from init::@2
|
||||
[89] return [ ] ( main:4::init:7 [ ] )
|
||||
to:@return
|
||||
plexInit: scope:[plexInit] from init
|
||||
[90] phi() [ ] ( main:4::init:7::plexInit:76 [ ] )
|
||||
to:plexInit::plexSetScreen1
|
||||
plexInit::plexSetScreen1: scope:[plexInit] from plexInit
|
||||
[91] phi() [ ] ( main:4::init:7::plexInit:76 [ ] )
|
||||
to:plexInit::@1
|
||||
plexInit::@1: scope:[plexInit] from plexInit::@1 plexInit::plexSetScreen1
|
||||
[92] (byte) plexInit::i#2 ← phi( plexInit::@1/(byte) plexInit::i#1 plexInit::plexSetScreen1/(byte/signed byte/word/signed word/dword/signed dword) 0 ) [ plexInit::i#2 ] ( main:4::init:7::plexInit:76 [ plexInit::i#2 ] )
|
||||
[93] *((const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 + (byte) plexInit::i#2) ← (byte) plexInit::i#2 [ plexInit::i#2 ] ( main:4::init:7::plexInit:76 [ plexInit::i#2 ] )
|
||||
[94] (byte) plexInit::i#1 ← ++ (byte) plexInit::i#2 [ plexInit::i#1 ] ( main:4::init:7::plexInit:76 [ plexInit::i#1 ] )
|
||||
[95] if((byte) plexInit::i#1!=(const byte) PLEX_COUNT#0-(byte/signed byte/word/signed word/dword/signed dword) 1+(byte/signed byte/word/signed word/dword/signed dword) 1) goto plexInit::@1 [ plexInit::i#1 ] ( main:4::init:7::plexInit:76 [ plexInit::i#1 ] )
|
||||
to:plexInit::@return
|
||||
plexInit::@return: scope:[plexInit] from plexInit::@1
|
||||
[96] return [ ] ( main:4::init:7::plexInit:76 [ ] )
|
||||
to:@return
|
7051
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.log
Normal file
7051
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.log
Normal file
File diff suppressed because it is too large
Load Diff
180
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.sym
Normal file
180
src/test/java/dk/camelot64/kickc/test/ref/simple-multiplexer.sym
Normal file
@ -0,0 +1,180 @@
|
||||
(label) @28
|
||||
(label) @31
|
||||
(label) @begin
|
||||
(label) @end
|
||||
(byte) BLACK
|
||||
(const byte) BLACK#0 BLACK = (byte/signed byte/word/signed word/dword/signed dword) 0
|
||||
(byte*) BORDERCOL
|
||||
(const byte*) BORDERCOL#0 BORDERCOL = ((byte*))(word/dword/signed dword) 53280
|
||||
(byte*) D011
|
||||
(const byte*) D011#0 D011 = ((byte*))(word/dword/signed dword) 53265
|
||||
(byte) GREEN
|
||||
(const byte) GREEN#0 GREEN = (byte/signed byte/word/signed word/dword/signed dword) 5
|
||||
(byte) PLEX_COUNT
|
||||
(const byte) PLEX_COUNT#0 PLEX_COUNT = (byte/signed byte/word/signed word/dword/signed dword) 24
|
||||
(byte[PLEX_COUNT#0]) PLEX_PTR
|
||||
(const byte[PLEX_COUNT#0]) PLEX_PTR#0 PLEX_PTR = { fill( PLEX_COUNT#0, 0) }
|
||||
(byte*) PLEX_SCREEN_PTR
|
||||
(const byte*) PLEX_SCREEN_PTR#1 PLEX_SCREEN_PTR = (const byte*) SCREEN#0+(word/signed word/dword/signed dword) 1016
|
||||
(byte[PLEX_COUNT#0]) PLEX_SORTED_IDX
|
||||
(const byte[PLEX_COUNT#0]) PLEX_SORTED_IDX#0 PLEX_SORTED_IDX = { fill( PLEX_COUNT#0, 0) }
|
||||
(word[PLEX_COUNT#0]) PLEX_XPOS
|
||||
(const word[PLEX_COUNT#0]) PLEX_XPOS#0 PLEX_XPOS = { fill( PLEX_COUNT#0, 0) }
|
||||
(byte[PLEX_COUNT#0]) PLEX_YPOS
|
||||
(const byte[PLEX_COUNT#0]) PLEX_YPOS#0 PLEX_YPOS = { fill( PLEX_COUNT#0, 0) }
|
||||
(byte*) RASTER
|
||||
(const byte*) RASTER#0 RASTER = ((byte*))(word/dword/signed dword) 53266
|
||||
(byte*) SCREEN
|
||||
(const byte*) SCREEN#0 SCREEN = ((byte*))(word/signed word/dword/signed dword) 1024
|
||||
(byte*) SPRITE
|
||||
(const byte*) SPRITE#0 SPRITE = ((byte*))(word/signed word/dword/signed dword) 8192
|
||||
(byte*) SPRITES_COLS
|
||||
(const byte*) SPRITES_COLS#0 SPRITES_COLS = ((byte*))(word/dword/signed dword) 53287
|
||||
(byte*) SPRITES_ENABLE
|
||||
(const byte*) SPRITES_ENABLE#0 SPRITES_ENABLE = ((byte*))(word/dword/signed dword) 53269
|
||||
(byte*) SPRITES_XMSB
|
||||
(const byte*) SPRITES_XMSB#0 SPRITES_XMSB = ((byte*))(word/dword/signed dword) 53264
|
||||
(byte*) SPRITES_XPOS
|
||||
(const byte*) SPRITES_XPOS#0 SPRITES_XPOS = ((byte*))(word/dword/signed dword) 53248
|
||||
(byte*) SPRITES_YPOS
|
||||
(const byte*) SPRITES_YPOS#0 SPRITES_YPOS = ((byte*))(word/dword/signed dword) 53249
|
||||
(byte) VIC_DEN
|
||||
(const byte) VIC_DEN#0 VIC_DEN = (byte/signed byte/word/signed word/dword/signed dword) 16
|
||||
(byte) VIC_RSEL
|
||||
(const byte) VIC_RSEL#0 VIC_RSEL = (byte/signed byte/word/signed word/dword/signed dword) 8
|
||||
(byte*) YSIN
|
||||
(const byte*) YSIN#0 YSIN = ((byte*))(word/signed word/dword/signed dword) 8448
|
||||
(void()) init()
|
||||
(byte~) init::$6 reg byte a 22.0
|
||||
(label) init::@1
|
||||
(label) init::@2
|
||||
(label) init::@3
|
||||
(label) init::@return
|
||||
(byte) init::ss
|
||||
(byte) init::ss#1 reg byte x 16.5
|
||||
(byte) init::ss#2 reg byte x 16.5
|
||||
(byte) init::sx
|
||||
(byte) init::sx#1 reg byte x 16.5
|
||||
(byte) init::sx#2 reg byte x 8.8
|
||||
(word) init::xp
|
||||
(word) init::xp#1 xp zp ZP_WORD:7 7.333333333333333
|
||||
(word) init::xp#2 xp zp ZP_WORD:7 8.25
|
||||
(void()) loop()
|
||||
(label) loop::@1
|
||||
(label) loop::@10
|
||||
(label) loop::@12
|
||||
(label) loop::@18
|
||||
(label) loop::@23
|
||||
(label) loop::@25
|
||||
(label) loop::@26
|
||||
(label) loop::@27
|
||||
(label) loop::@28
|
||||
(label) loop::@4
|
||||
(label) loop::@6
|
||||
(label) loop::@7
|
||||
(label) loop::@8
|
||||
(label) loop::@9
|
||||
(label) loop::plexShowNextYpos1
|
||||
(byte) loop::plexShowNextYpos1_return
|
||||
(byte) loop::plexShowNextYpos1_return#0 reg byte a 202.0
|
||||
(byte) loop::rasterY
|
||||
(byte) loop::rasterY#0 rasterY zp ZP_BYTE:9 551.0
|
||||
(byte) loop::sin_idx
|
||||
(byte) loop::sin_idx#1 sin_idx zp ZP_BYTE:2 1.2222222222222223
|
||||
(byte) loop::sin_idx#6 sin_idx zp ZP_BYTE:2 3.666666666666667
|
||||
(byte) loop::ss
|
||||
(byte) loop::ss#1 ss zp ZP_BYTE:3 151.5
|
||||
(byte) loop::ss#2 ss zp ZP_BYTE:3 101.0
|
||||
(byte) loop::ss2
|
||||
(byte) loop::ss2#1 ss2 zp ZP_BYTE:3 151.5
|
||||
(byte) loop::ss2#6 ss2 zp ZP_BYTE:3 28.857142857142858
|
||||
(byte) loop::sy
|
||||
(byte) loop::sy#1 reg byte y 151.5
|
||||
(byte) loop::sy#2 reg byte y 101.0
|
||||
(byte) loop::y_idx
|
||||
(byte) loop::y_idx#1 reg byte x 67.33333333333333
|
||||
(byte) loop::y_idx#2 reg byte x 157.0
|
||||
(byte~) loop::y_idx#3 reg byte x 22.0
|
||||
(void()) main()
|
||||
(label) main::@1
|
||||
(label) main::@return
|
||||
(void()) plexInit((byte*) plexInit::screen)
|
||||
(label) plexInit::@1
|
||||
(label) plexInit::@return
|
||||
(byte) plexInit::i
|
||||
(byte) plexInit::i#1 reg byte x 16.5
|
||||
(byte) plexInit::i#2 reg byte x 22.0
|
||||
(label) plexInit::plexSetScreen1
|
||||
(byte*~) plexInit::plexSetScreen1_$0
|
||||
(byte*) plexInit::plexSetScreen1_screen
|
||||
(byte*) plexInit::screen
|
||||
(void()) plexShowSprite()
|
||||
(byte~) plexShowSprite::$2 reg byte a 4.0
|
||||
(byte~) plexShowSprite::$3 reg byte a 4.0
|
||||
(byte/word/dword~) plexShowSprite::$5 reg byte a 4.0
|
||||
(byte/signed word/word/dword/signed dword~) plexShowSprite::$6 reg byte a 4.0
|
||||
(label) plexShowSprite::@1
|
||||
(label) plexShowSprite::@2
|
||||
(label) plexShowSprite::@4
|
||||
(label) plexShowSprite::@7
|
||||
(label) plexShowSprite::@return
|
||||
(byte) plexShowSprite::plex_sprite_idx2
|
||||
(byte) plexShowSprite::plex_sprite_idx2#0 reg byte y 1.2000000000000002
|
||||
(byte) plexShowSprite::xpos_idx
|
||||
(byte) plexShowSprite::xpos_idx#0 reg byte x 2.0
|
||||
(void()) plexSort()
|
||||
(label) plexSort::@1
|
||||
(label) plexSort::@10
|
||||
(label) plexSort::@2
|
||||
(label) plexSort::@3
|
||||
(label) plexSort::@5
|
||||
(label) plexSort::@7
|
||||
(label) plexSort::@return
|
||||
(byte) plexSort::m
|
||||
(byte) plexSort::m#1 m zp ZP_BYTE:3 151.5
|
||||
(byte) plexSort::m#2 m zp ZP_BYTE:3 42.08333333333333
|
||||
(byte) plexSort::nxt_idx
|
||||
(byte) plexSort::nxt_idx#0 nxt_idx zp ZP_BYTE:4 30.299999999999997
|
||||
(byte) plexSort::nxt_y
|
||||
(byte) plexSort::nxt_y#0 nxt_y zp ZP_BYTE:5 150.375
|
||||
(byte) plexSort::s
|
||||
(byte) plexSort::s#1 reg byte x 1368.3333333333335
|
||||
(byte) plexSort::s#2 reg byte x 202.0
|
||||
(byte) plexSort::s#3 reg byte x 2052.5
|
||||
(byte~) plexSort::s#6 reg byte x 202.0
|
||||
(byte) plex_show_idx
|
||||
(byte) plex_show_idx#13 plex_show_idx zp ZP_BYTE:5 14.999999999999998
|
||||
(byte) plex_show_idx#15 plex_show_idx zp ZP_BYTE:5 16.944444444444443
|
||||
(byte) plex_show_idx#25 plex_show_idx zp ZP_BYTE:5 202.0
|
||||
(byte) plex_sprite_idx
|
||||
(byte) plex_sprite_idx#13 plex_sprite_idx zp ZP_BYTE:4 17.333333333333336
|
||||
(byte) plex_sprite_idx#15 plex_sprite_idx zp ZP_BYTE:4 10.736842105263158
|
||||
(byte) plex_sprite_idx#24 plex_sprite_idx zp ZP_BYTE:4 202.0
|
||||
(byte) plex_sprite_msb
|
||||
(byte) plex_sprite_msb#14 plex_sprite_msb zp ZP_BYTE:6 13.866666666666665
|
||||
(byte) plex_sprite_msb#17 plex_sprite_msb zp ZP_BYTE:6 14.571428571428571
|
||||
(byte) plex_sprite_msb#26 plex_sprite_msb zp ZP_BYTE:6 2.0
|
||||
(byte) plex_sprite_msb#29 plex_sprite_msb zp ZP_BYTE:6 202.0
|
||||
|
||||
zp ZP_BYTE:2 [ loop::sin_idx#6 loop::sin_idx#1 ]
|
||||
reg byte x [ loop::y_idx#2 loop::y_idx#3 loop::y_idx#1 ]
|
||||
reg byte y [ loop::sy#2 loop::sy#1 ]
|
||||
zp ZP_BYTE:3 [ loop::ss#2 loop::ss#1 loop::ss2#6 loop::ss2#1 plexSort::m#2 plexSort::m#1 ]
|
||||
zp ZP_BYTE:4 [ plex_sprite_idx#13 plex_sprite_idx#24 plex_sprite_idx#15 plexSort::nxt_idx#0 ]
|
||||
zp ZP_BYTE:5 [ plex_show_idx#13 plex_show_idx#25 plex_show_idx#15 plexSort::nxt_y#0 ]
|
||||
zp ZP_BYTE:6 [ plex_sprite_msb#14 plex_sprite_msb#29 plex_sprite_msb#17 plex_sprite_msb#26 ]
|
||||
reg byte x [ plexSort::s#3 plexSort::s#1 plexSort::s#6 ]
|
||||
reg byte x [ init::sx#2 init::sx#1 ]
|
||||
zp ZP_WORD:7 [ init::xp#2 init::xp#1 ]
|
||||
reg byte x [ init::ss#2 init::ss#1 ]
|
||||
reg byte x [ plexInit::i#2 plexInit::i#1 ]
|
||||
reg byte a [ loop::plexShowNextYpos1_return#0 ]
|
||||
zp ZP_BYTE:9 [ loop::rasterY#0 ]
|
||||
reg byte y [ plexShowSprite::plex_sprite_idx2#0 ]
|
||||
reg byte x [ plexShowSprite::xpos_idx#0 ]
|
||||
reg byte a [ plexShowSprite::$2 ]
|
||||
reg byte a [ plexShowSprite::$3 ]
|
||||
reg byte a [ plexShowSprite::$5 ]
|
||||
reg byte a [ plexShowSprite::$6 ]
|
||||
reg byte x [ plexSort::s#2 ]
|
||||
reg byte a [ init::$6 ]
|
Loading…
x
Reference in New Issue
Block a user