A Brainfuck Interpreter written in Assembly.
This program is intended to run under Windows in 32-bit protected mode on a recent Intel CPU.
The program assumes you have NASM and MinGW's GCC Compiler installed. Both the nasm and gcc executables should be available on the classpath.
You can obtain the bf-interpreter.exe and bf-interpreter-console.exe executables by executing the following commands:
nasm -f win32 bf-interpreter.asmgcc -o bf-interpreter bf-interpreter.objnasm -f win32 bf-interpreter-console.asmgcc -o bf-interpreter-console bf-interpreter-console.obj