Search Results

30
votes

Palindrome Golf

Here's mine; it's written in a domain-specific language I invented, called 'palindrome'. p Edit: Less flippant version (i386 asm, AT&T syntax) …
6
votes

Code Golf: Factorials

9 bytes of i386 machine-code. Input is EAX, output is EAX. #AT&T syntax mov %eax, %ebx again: dec %ebx .byte 0x74, 4 #jz (short) done mul %ebx .byte 0xEB, -7 …