源码

首页 » 归档 » 源码 » 使用AT&T语法将整数打印为字符串,使用Linux…

使用AT&T语法将整数打印为字符串,使用Linux…


我写了一个汇编程序来显示AT&之后的数字的阶乘. t syntax.But它不工作.我的代码

.text 

.globl _start

_start:
movq $5,%rcx
movq $5,%rax


Repeat:                     #function to calculate factorial
   decq %rcx
   cmp $0,%rcx
   je print
   imul %rcx,%rax
   cmp $1,%rcx
   jne Repeat
# Now result of factorial stored in rax
print:
     xorq %rsi, %rsi

  # function to print integer result digit by digit by pushing in 
       #stack
  loop:
    movq $0, %rdx
    movq $10, %rbx
    divq %rbx
    addq $48, %rdx
    pushq %rdx
    incq %rsi
    cmpq $0, %rax
    jz   next
    jmp loop

  next:
    cmpq $0, %rsi
    jz   bye
    popq %rcx
    decq %rsi
    movq $4, %rax
    movq $1, %rbx
    movq $1, %rdx
    int  $0x80
    addq $4, %rsp
    jmp  next
bye:
movq $1,%rax
movq $0, %rbx
int  $0x80


.data
   num : .byte 5

这个程序什么都不打印,我也用gdb来直观地显示它工作直到循环功能,但是当它接下来一些随机值开始进入各种寄存器时.帮我调试以便它可以打印阶乘.

(0)

本文由 投稿者 创作,文章地址:https://blog.isoyu.com/archives/shiyongattyufajiangzhengshudayinweizifuchuanshiyonglinux.html
采用知识共享署名4.0 国际许可协议进行许可。除注明转载/出处外,均为本站原创或翻译,转载前请务必署名。最后编辑时间为:9 月 16, 2019 at 11:53 下午

热评文章