←back to thread

101 points tomhee | 1 comments | | HN request time: 0s | source

Hi! I've been working on the flipjump project, a programming language with 1 opcode: flip (invert) a bit, then jump (unconditionally). So a bit-flip followed by more bit-flips. It's effectively a bunch of NOT gates. This language, as poor as it sounds, is RICH.

Today I completed my compiler from C to FlipJump. It takes C files, and compiles them into flipjump. I finished testing it all today, and it works! My key interest in this project is to stretch what we know of computing and to prove that anything can be done even with minimal power.

I appreciate you reading my announcement, and be happy to answer questions.

More links:

- The flipjump language: https://github.com/tomhea/flip-jump https://esolangs.org/wiki/FlipJump

- c2fj python package https://pypi.org/project/c2fj/

Show context
platz ◴[] No.42743085[source]
How is a jump realized by Not Gates?
replies(2): >>42743319 #>>42743325 #
1. Jerrrry ◴[] No.42743319[source]
I'm guessing by not jumping into a terminating/ halting NOOP.

The logic is within the branching.