尝试在装配体中使用嵌套循环打印星形三角形

时间:2019-03-13 18:18:37

标签: nasm

我刚开始用汇编语言编写代码。但是我的代码不起作用。这是我的代码:

section .text
    global _start 

_start :

    mov eax, 3       
    mov ebx, 0      
    mov ecx, num2       
    mov edx, 2
    int 80h

    mov ecx,1

    l1 :

    cmp ecx,[num2]
    jg _exit
    push ecx

    l2:     

    cmp ecx,0
    je _exitloop
    push ecx

    mov edx,len
    mov ecx,msg
    mov eax,4
    mov ebx,1
    int 0x80

    pop ecx
    dec ecx
    loop l2


  _exitloop:

    mov edx,len1
    mov ecx,linebreak
    mov eax,4
    mov ebx,1
    int 0x80

    pop ecx
    inc ecx
    loop l1

  _exit:
    mov eax,1
    int 0x80


section .data
msg db '*' ,
len equ $ -msg
linebreak db ' ' , 0xa
len1 equ $ -linebreak


section .bss
num resb 2
num2 resb 2

0 个答案:

没有答案