brainfuck
0.1
A full fledged brainfuck compiler
|
File containing the important compile function. More...
Go to the source code of this file.
Macros | |
#define | BUF_SIZE 256 |
The size of the stack buffer. | |
Functions | |
int | compile (FILE *in, FILE *out, int stack_size, int array_size) |
compiler function More... | |
File containing the important compile function.
Definition in file compiler.c.
int compile | ( | FILE * | in, |
FILE * | out, | ||
int | stack_size, | ||
int | array_size | ||
) |
compiler function
in | Where to get the source code from |
out | Where to print the assembly code |
stack_size | The size of the loop stack |
array_size | The size of the brainfuck internal array |
Definition at line 28 of file compiler.c.
References BUF_SIZE.
Referenced by main().