BFC-Compiler
A C23 Brainfuck compiler
Loading...
Searching...
No Matches
bfc_config.h
Go to the documentation of this file.
1
8#ifndef BFC_CONFIG_H
9#define BFC_CONFIG_H
10
11#include <limits.h>
12#include <stddef.h>
13
17static_assert(CHAR_BIT == 8, "bfc requires 8-bit bytes");
18
22#define BFC_TAPE_SIZE ((size_t) 30000)
26#define BFC_INITIAL_ASM_CAPACITY ((size_t) 4096)
27#define BFC_INITIAL_IR_CAPACITY ((size_t) 10)
28#define BFC_INITIAL_IR_STACK_CAPACITY ((size_t) 5)
29
30#endif