Skip to content

Instantly share code, notes, and snippets.

@LowLevelCodingCH
Created March 13, 2024 20:26
Show Gist options
  • Save LowLevelCodingCH/e42d361a170f554e9dfb58e2164bbf44 to your computer and use it in GitHub Desktop.
Save LowLevelCodingCH/e42d361a170f554e9dfb58e2164bbf44 to your computer and use it in GitHub Desktop.
My first HelloWorld in C, not enough good though, gonna have to get better..
#include <stdio.h>
#include <stdint.h>
int main()
{
uint64_t dx = 0x77E435B08;
while (dx) {
putchar(0x726F6C6564574820 >> (((dx >>= 3) & 7) << 3) & 0xFF);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment