.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