├── .gitignore ├── Makefile ├── README.md ├── bf_init.h.in ├── bf_iter.h ├── bf_run.h ├── bf_to_main.sh ├── cat.bf ├── gen_init.sh ├── gen_literal.sh ├── gen_rshift.sh ├── gen_runloop.sh ├── gen_shift.sh ├── hello.bf ├── main.h ├── print.h └── simple.bf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/README.md -------------------------------------------------------------------------------- /bf_init.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/bf_init.h.in -------------------------------------------------------------------------------- /bf_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/bf_iter.h -------------------------------------------------------------------------------- /bf_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/bf_run.h -------------------------------------------------------------------------------- /bf_to_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/bf_to_main.sh -------------------------------------------------------------------------------- /cat.bf: -------------------------------------------------------------------------------- 1 | ,[.,] 2 | -------------------------------------------------------------------------------- /gen_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/gen_init.sh -------------------------------------------------------------------------------- /gen_literal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/gen_literal.sh -------------------------------------------------------------------------------- /gen_rshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/gen_rshift.sh -------------------------------------------------------------------------------- /gen_runloop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/gen_runloop.sh -------------------------------------------------------------------------------- /gen_shift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/gen_shift.sh -------------------------------------------------------------------------------- /hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/hello.bf -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/main.h -------------------------------------------------------------------------------- /print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/print.h -------------------------------------------------------------------------------- /simple.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ferdi265/preprocessor_brainfuck/HEAD/simple.bf --------------------------------------------------------------------------------