PaCo v1.0

This commit is contained in:
2017-02-03 13:32:13 +01:00
parent 6831f39d55
commit fa4abcbf2c
11 changed files with 279 additions and 0 deletions

View File

@@ -64,6 +64,10 @@ t_token_op tkn_tokens[] = {
{ "border", TOKEN_BORDER },
{ "cls", TOKEN_CLS },
{ "wait", TOKEN_WAIT },
{ "setmusic", TOKEN_SETMUSIC },
{ "playmusic", TOKEN_PLAYMUSIC },
{ "stopmusic", TOKEN_STOPMUSIC },
{ "ismusicplaying", TOKEN_ISMUSICPLAYING },
};
static char hex_digit(const char digit) { return digit - (digit <= 57 ? 48 : 55); }