vote up 2 vote down star
.section .data

astring: .asciz "11010101"
format: .asciz "%d\n"

.section .text
.globl _start

_start:

xorl %ecx, %ecx

movb astring(%ecx,1), %al
movzbl %al, %eax

pushl %eax
pushl $format
call printf
addl $8, %esp


movl $1, %eax
movl $0, %ebx
int $0x80

Suppose I wanna break the .asciz string 1101011 and get it's first one. How do I go about it? The code above ain't working, it prints 49 or something.

flag

Added the c tag since the question is really about the C's printf function. – Robert Gamble Dec 30 at 2:26
Mindreader, I can't read your mind. What output did you want? 1 or 1101011? – Norman Ramsey Dec 30 at 4:08
"and get its first one". so first one. 1. – dmindreader Dec 30 at 6:14

1 Answer

vote up 2 vote down check

Change the conversion specifier for printf from %d to %c to print the character instead of its ascii value.

link|flag
great, now I wanna get groups of three out of my 10i101010101 chain, how would I go about it? I tried changing the scale of movb astring(%ecx,1), %al to 3 and 2 and didn't work. – dmindreader Dec 30 at 6:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.