view interps/linguine/bitwise.lng @ 12500:e48c08805365 draft default tip

<b_jonas> ` learn \'The password of the month is Cthulhuquagdonic Mothraquagdonic Narwhalicorn.\' # https://logs.esolangs.org/libera-esolangs/2024-04.html#lKE Infinite craft
author HackEso <hackeso@esolangs.org>
date Wed, 01 May 2024 06:39:10 +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