Braindeadcpu

From Esolang
Jump to navigation Jump to search
This article is not detailed enough and needs to be expanded. Please help us by adding some more information.
  • braindeadcpu is an brainfuck like esolang
  • braindeadcpu designed to be a cpu arch with least amount of transistors
  • braindeadcpu only has 2 register for memory location and current instruction

Commands

Command Description bin
inc increases the current ram 0x00
dec Decreases the value of the current memory cell by 1. 0x01
next increases the memory location by 1. 0x02
prev decreases the memory location by 1. 0x03
skip if current memory is 0 increment program counter by 4 skiping next 4 instruciton. 0x04
out output the current memory. 0x05
in read from input buffer then write to current memory. 0x06
jbnz decrement program counter by 5 if currentt cell is not 0 0x07

not turing complate