mirror of
https://github.com/pnx/m16vm
synced 2026-07-03 11:43:39 +02:00
src/as/lexer.h: in struct token: integer value can max be 8 bits wide.
This commit is contained in:
parent
2c1c832493
commit
e75349e7f9
1 changed files with 2 additions and 2 deletions
|
|
@ -62,7 +62,7 @@ struct token {
|
||||||
* this can be a string or unsigned short
|
* this can be a string or unsigned short
|
||||||
*/
|
*/
|
||||||
union {
|
union {
|
||||||
uint16_t n;
|
int8_t n;
|
||||||
char s[32];
|
char s[32];
|
||||||
} value;
|
} value;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue