I am recently learning assembly language and I am trying to implement a function, that takes two parameters, first one being a value and 2nd one being an array with length 3. Then I want to store value%16, and (value/16)%16 in the array respectively. However when I implement it, it generates a floating point exception:
subq $8,%rsp
movq $0,%r10
movq %rdi,%rax /*store input into %rax*/
movq $16,%rbx /*store 16 into %rbx*/
idivq %rbx /*store dividend in rax, and remainder in rdx*/
movq %rdx,(%rsi,%r10) /*store remainder in %rsi[0]*/
addq $1,%r10 /*increase %r10 by 1*/
idivq %rbx /*do the division again*/
movq %rdx,(%rsi,%r10)
addq $8,%rsp
When I test it with
char buf[16];
hex_format_byte_as_hex("h", buf);
ASSERT(0 == strcmp(buf, "48"));
it generates a floating point exception. Why is this the case? Can someone point out what I am doing wrong in my function? Thank you in advance.