Skip to content

Instantly share code, notes, and snippets.

@MrAnno
Created December 1, 2017 22:11
Show Gist options
  • Save MrAnno/15c0c21c95d9e5603dddc7825f26d402 to your computer and use it in GitHub Desktop.
Save MrAnno/15c0c21c95d9e5603dddc7825f26d402 to your computer and use it in GitHub Desktop.
lv.c
#include <stdio.h>
#include <stdint.h>
int main()
{
uint8_t lv[] = {
0x5a, 0xec, 0xc2, 0x83, 0xd6, 0xc9, 0xc5, 0xed, 0xfb, 0xbd, 0xf9, 0xed,
0xff, 0xeb, 0xb8, 0xf4, 0xf9, 0xf8, 0xf1, 0xe0, 0xb2, 0xf0, 0xb0, 0xeb,
0xef, 0xf4, 0xac, 0xfc, 0xe2, 0xec, 0xe6, 0xa7, 0xf1, 0xe0, 0xa4, 0xe0,
0xe3, 0xef, 0xa7, 0x0b, 0x5e, 0x1f, 0x19, 0x5b, 0x0e, 0x16, 0x1f, 0x12,
0x02, 0x1d, 0x11, 0x01, 0x5e, 0x7b, 0x1b, 0x0a, 0x0b, 0x1d, 0x4c, 0x06,
0x0f, 0x49, 0x01, 0x09, 0x46, 0x1c, 0x0b, 0x16, 0x10, 0x41, 0x08, 0x3a,
0x3f, 0x2f, 0x28, 0x75, 0x7a, 0x10, 0x7f, 0x3b, 0x3a, 0x75, 0x27, 0x27,
0x33, 0x28, 0x70, 0x3b, 0x26, 0x28, 0x3e, 0x2e, 0x6a, 0x2f, 0x27, 0x35,
0x23, 0x33, 0x21, 0x31, 0x6c, 0x44, 0x4a, 0x56, 0x4c, 0x58, 0x52, 0x5e,
};
for (uint8_t cret = 'Z', *se=lv;*++se!=0104;)
putchar(~*se^cret++);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment