Skip to content

Instantly share code, notes, and snippets.

@LowLevelCodingCH
Created March 13, 2024 20:26

Revisions

  1. LowLevelCodingCH created this gist Mar 13, 2024.
    10 changes: 10 additions & 0 deletions main.c
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    #include <stdio.h>
    #include <stdint.h>

    int main()
    {
    uint64_t dx = 0x77E435B08;
    while (dx) {
    putchar(0x726F6C6564574820 >> (((dx >>= 3) & 7) << 3) & 0xFF);
    }
    }