view interps/linguine/bitwise.lng @ 12268:6bbbe2a95120 draft

<b_jonas> slashlearn euclid//Euclid is a short geeky game in which the goal is to do Euclidean compass and straightedge constructions in as few steps as possible. It runs in the browser, found at "http://www.euclidthegame.com/". It was popular among #esoteric regulars in 2016-07.
author HackEso <hackeso@esolangs.org>
date Mon, 16 Dec 2019 23:02:52 +0000
parents 859f9b4339e6
children
line wrap: on
line source

'General bitwise routines

'NOT: -2 = NOT(*-2)
'Programmed by Jeffry Johnston, 2005
'-1=return jump
300[-2|*-2]*-1

'AND: -2 &= *-3
'Programmed by Jeffry Johnston, 2005
'-1=return jump
301[-2|*-3,-2|*-2]*-1

'OR: -2 |= *-3
'Programmed by Jeffry Johnston, 2005
'-1=return jump, -4=temp
302[-2|*-2,-4=*-3,-4|*-4,-2|*-4]*-1

'XOR: -2 ^= *-3
'Programmed by Jeffry Johnston, 2005
'-1=return jump, -4=temp
303[-4=*-3,-4|*-2,-2|*-4,-4|*-3,-2|*-4]*-1

'NOR: -2 = ~(*-2 | *-3)
'Programmed by Jeffry Johnston, 2005
'-1=return jump, -4=temp
304[-2|*-2,-4=*-3,-4|*-4,-2|*-4,-2|*-2]*-1

'XNOR: -2 = ~(*-2 ^ *-3)
'Programmed by Jeffry Johnston, 2005
'-1=return jump, -4=temp
305[-4=*-3,-4|*-2,-2|*-4,-4|*-3,-2|*-4,-2|*-2]*-1

'NEG: -2 = -*-2, -2 = !*-2
'Programmed by Jeffry Johnston, 2005
'-1=return jump
306[-3=*-2,-2=0,-2-*-3]*-1