Skip to content

Instantly share code, notes, and snippets.

View Gamer92000's full-sized avatar

Julian Imhof Gamer92000

View GitHub Profile
import base64
lookup = ["add", "add", "sub", "cmp", "or", "or", "xor", "xor", "and", "and", "sh/r", "shl", "shr", "ld", "st", "lbl", "jup", "jdn", "io", "mul"]
cmpluk = ["tr", "fa", "eq", "ne", "sl", "sg", "ul", "ug"]
class Instruction:
OPC = 0
A = 0
B = 0
C = 0
import base64
lookup = ["add", "add", "sub", "cmp", "or", "or", "xor", "xor", "and", "and", "sh/r", "shl", "shr", "ld", "st", "lbl", "jup", "jdn", "io", "mul"]
cmpluk = ["tr", "fa", "eq", "ne", "sl", "sg", "ul", "ug"]
def decode(instr):
OPC = (instr & 0b0111111000000000000000000) >> 18
A = (instr & 0b0000000111111000000000000) >> 12
B = (instr & 0b0000000000000111111000000) >> 6
C = (instr & 0b0000000000000000000111111)
/* TeamSpeak (5) Theme */
/* developed by Gamer92000 */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300,600;1,300&display=swap');
:root { /* variables to change */
--custom-color-light-grey: #353844; /* | These color values */
--custom-color-dark-grey: #252A33; /* | may be changed! */
--custom-color-accent-light: RGB(240,147,7); /* | Do not use translucent colors */