项目作者: mkostoevr

项目描述 :
Optimizing BrainFuck MultiCompiler
高级语言: Brainfuck
项目地址: git://github.com/mkostoevr/OBFMC.git
创建时间: 2020-04-19T16:00:54Z
项目社区:https://github.com/mkostoevr/OBFMC

开源协议:MIT License

下载


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)