Skip to content

Latest commit

 

History

History
165 lines (126 loc) · 6.38 KB

README.md

File metadata and controls

165 lines (126 loc) · 6.38 KB

FlipJump

FlipJump is the simplest programing language.
It's an Esoteric language (FlipJump esolangs page), with just 1 operation a;b:

  • not *a; jump b

Which means - Flip a bit, then Jump.

The operation takes 2 memory addresses - it flips (inverts) the bit the first address points to, and jumps to (continue execution from) the second address.

This project is a Macro Assembler, an Interpreter and a Tested Standard Library to the language.

Hello, World!

A simple fj hello-world program, not using the standard library:

def startup @ code_start > IO  {
    ;code_start
  IO:
    ;0
  code_start:
}


def output_bit bit < IO {
    IO + bit;
}
def output_char ascii {
    rep(8, i) output_bit ((ascii>>i)&1)
}

def end_loop @ loop_label {
    loop_label:
    ;loop_label
}

    startup
    
    output_char 'H'
    output_char 'e'
    output_char 'l'
    output_char 'l'
    output_char 'o'
    output_char ','
    output_char ' '
    output_char 'W'
    output_char 'o'
    output_char 'r'
    output_char 'l'
    output_char 'd'
    output_char '!'
    
    end_loop

The FlipJump assembly supports a "Hello, World!" syntax for initializing a variable with a string value. Look at the hello_world.fj program for more info.

Note that all of these macros are already implemented in the standard library:

How to download?

>>> git clone https://github.com/tomhea/flip-jump.git
Cloning into 'flip-jump'...
>>> cd flip-jump
>>> pip install -r requirements.txt

How to run?

>>> python src/fj.py programs/hello_world.fj
Hello, World!
>>> python src/fj.py programs/hello_no-stl.fj --no-stl
Hello, World!
  • The --no-stl flag tells the assembler not to include the standard library. The flag is needed as we implemented the macros ourselves.
  • You can use the -o flag to save the assembled file for later use too.
  • you can find all the different flags with python src/fj.py -h

You can also Test the project with the project's tests, and with your tests.

You can also assemble and run separately:

>>> fja.py hello.fj -o hello_world.fjm
>>> fji.py hello.fjm
Hello, World!
  • The first line will assemble your code.
  • The second line will run your code.

You can also use the faster (stable, but still in development) cpp-based interpreter (currently in a different branch):

>>> fji hello.fjm
Hello, World!

Project Structure

src (assembler + interpreter source files):

  • fj_parser.py - pythonic lex/yacc parser.
  • preprocessor.py - unwind all macros and reps.
  • assembler.py - assembles the macroless fj file.
  • fjm_run.py - interpreter assembled fj files.
  • defs.py - classes/functions/constants used throughout the project.
  • fjm.py - read/write .fjm (flip-jump-memory) files.
  • fja.py - the FlipJump Assembler script.
  • fji.py - the FlipJump Interpreter script.
  • fj.py - the FlipJump Assembler & Interpreter script. other branches:
  • cpp_fji/ - the cpp interpreter (much faster, about 2Mfj/s).
  • riscv2fj/ - translates a riscv-executable to an equivalent fj code.

stl (standard library files - macros. list of all macros):

  • runlib.fj - constants and initialization macros.
  • bitlib.fj - macros for manipulating binary variables and vectors (i.e. numbers).
  • mathlib.fj - advanced math macros (mul/div).
  • hexlib.fj - macros for manipulating hexadecimal variables and vectors.
  • declib.fj - macros for manipulating decimal variables and vectors (to be implemented).
  • iolib.fj - input/output macros, bit/hex/dec casting.
  • ptrlib.fj - pointers, stack and functions.
  • conf.json - standard library list file.

programs (FlipJump programs), for example:

tests (FlipJump programs), for example:

  • compiled/ - the designated directory for the assembled tests files.
  • inout/ - .in and .out files for each test in the folder above.
  • conftest.py - pytest configuration file.
  • test_fj.py - tests for compilation and running (how to run).
  • test_compile_*.csv - all compilation tests arguments (compile test format).
  • test_run_*.csv - all running tests arguments (run test format).
  • conf.json - tests list file.

Read More

A very extensive explanation can be found on the GitHub wiki page.

More detailed explanation and the specifications of the FlipJump assembly can be found on the FlipJump esolangs page.

Start by reading the bitlib.fj standard library file. That's where the FlipJump magic begins.

If you want to contribute to this project, open a pull request, and start Discussing.

You can also write and run programs for yourself! It is just that easy :)