blob: 12318be0123f752854f53f1a7f6730f210df78df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Copyright (c) 2024 Freya Murphy */
#ifndef __MLIMITS_H__
#define __MLIMITS_H__
/* Specifies how long a ident, register,
* instruction name, or any type of variable
* length text can be inside the lexer.
*/
#ifndef MAX_LEX_LENGTH
#define MAX_LEX_LENGTH 24
#endif
/* Specifices how many max arguments a
* given directive can hold
*/
#ifndef MAX_ARG_LENGTH
#define MAX_ARG_LENGTH 12
#endif
#endif /* __MLIMITS_H__ */
|