gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-support/romusage/src/noi_file.h
1 // This is free and unencumbered software released into the public domain.
2 // For more information, please refer to <https://unlicense.org>
3 // bbbbbr 2020
4
5 #define MAX_STR_LEN 4096
6 // #define MAX_STR_AREALEN 100
7 #define MAX_SPLIT_WORDS 6
8
9 #define NOI_REC_COUNT_MATCH 4
10
11 #define ERR_NO_AREAS_LEFT -1
12 #define AREA_VAL_UNSET 0xFFFFFFFF
13
14 #define NOI_REC_START_LEN 7 // length of "DEF l__"
15 #define NOI_REC_START 's'
16 #define NOI_REC_LENGTH 'l'
17
18
19 int noi_file_process_areas(char * filename_in);
20
21 void noi_init(void);
22 void noi_cleanup(void);
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.