Question: I need help printing an array in assembly (nasm x86 in a gl server, 64 bit linux) this is my code so far I need
I need help printing an array in assembly (nasm x86 in a gl server, 64 bit linux)
this is my code so far

I need the printArray function.
thank you!!
section .data msg db "The array: len equ $- msq Array DB 1, 2, 3, 4, 5, 6, 7, 8, 10 section .texit global _start start: mov eax, 4 mov ebx, 1 mov ecx, msg mov edx, len jmp printArray int 0x80 jmp Exit printArray: not sure how to do this Exit: mov eax, 1 mov ebx, 0 int 0x80
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
