Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkostoevr/obfmc
Optimizing BrainFuck MultiCompiler.
https://github.com/mkostoevr/obfmc
brainfuck brainfuck-compiler compiler dos kolibrios win32
Last synced: about 1 month ago
JSON representation
Optimizing BrainFuck MultiCompiler.
- Host: GitHub
- URL: https://github.com/mkostoevr/obfmc
- Owner: mkostoevr
- License: mit
- Created: 2020-04-19T16:00:54.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T09:43:04.000Z (almost 5 years ago)
- Last Synced: 2024-10-30T03:45:33.265Z (3 months ago)
- Topics: brainfuck, brainfuck-compiler, compiler, dos, kolibrios, win32
- Language: Brainfuck
- Homepage:
- Size: 50.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Optimizing BrainFuck MultiCompiler
## Optimizations
List of performing optimiations:
* Sequences like ++++... are translating into +n
* \[-\] is translating into =0## Targets
OBFMC Can generate 8086 and i386 machine code. It allows to build apps for:
* 16 bit DOS (.com)
* 32 bit KolibriOS (.kex)
* 32 bit Windows (.exe)OBFMC also supports translation into another programming languages:
* C## Why Multi?
Because you can generate code for whatever supported platform in whatever platform where the compiler works. In one execution! (```obfmc hello.bf --win32 --kos32 --dos16 --c```)