Alphabet by smkt

.intel_syntax noprefix
.text
A:.ascii "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
.globl main
main:mov eax,4
mov ebx,1
lea ecx,A
mov edx,26
int 0x80
ret

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page