mirror of
https://github.com/pnx/m16vm
synced 2026-06-16 03:44:55 +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,8 +62,8 @@ struct token {
|
|||
* this can be a string or unsigned short
|
||||
*/
|
||||
union {
|
||||
uint16_t n;
|
||||
char s[32];
|
||||
int8_t n;
|
||||
char s[32];
|
||||
} value;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue