Filling un array in x86 assembly

前端 未结 0 1738
遥遥无期
遥遥无期 2021-01-21 06:10

I wrote the following code to fill an array in x86 assembly

global _start 

section .text:

_start:

    mov ecx, 0 
    mov ebx, array 

    loop:
        mov [e         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题