mips/include/mlimits.h
2024-10-05 10:16:45 -04:00

20 lines
373 B
C

/* Copyright (c) 2024 Freya Murphy */
#ifndef __MLIMITS_H__
#define __MLIMITS_H__
/* Specifies how long a stirng extension in a
* shdr entry name can be.
*/
#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__ */