mips/include/mlimits.h

21 lines
373 B
C
Raw Normal View History

/* Copyright (c) 2024 Freya Murphy */
#ifndef __MLIMITS_H__
#define __MLIMITS_H__
2024-10-05 14:16:45 +00:00
/* Specifies how long a stirng extension in a
* shdr entry name can be.
*/
2024-10-05 14:16:45 +00:00
#ifndef MAX_EXT_LENGTH
#define MAX_EXT_LENGTH 48
#endif
/* Specifices how many max arguments a
* given directive can hold
*/
#ifndef MAX_ARG_LENGTH
#define MAX_ARG_LENGTH 12
#endif
#endif /* __MLIMITS_H__ */