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.asm
gcc -o bf-interpreter bf-interpreter.obj
nasm -f win32 bf-interpreter-console.asm
gcc -o bf-interpreter-console bf-interpreter-console.obj