Skip to content

Instantly share code, notes, and snippets.

@jpmens
Created September 2, 2021 14:35
Show Gist options
  • Select an option

  • Save jpmens/d4306f6e612c17008f5c4bc124dd3600 to your computer and use it in GitHub Desktop.

Select an option

Save jpmens/d4306f6e612c17008f5c4bc124dd3600 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdint.h>
int main() {
uint64_t dx = 0x357620655410;
while (dx) putchar(0x726f6c6564574820 >> (((dx >>= 4) & 0377) << 3));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment