Question: I need help with an assembly program (nasm) 64 bit !! Thank you Expert Q&A Done I need help printing an array in assembly (nasm
Expert Q&A Done I need help printing an array in assembly (nasm x86 in a gl server, 64 bit linux) this is my code so far section .data msg db "The array: len equ $-msg Array DB 1, 2, 3, 4, 5, 6, 7, 8, 10 section.text lobal start start: mov eax, 4 mov ebx, 1 mov ecX, msg mov edx, len jmp printArray int 0x80 jmp Exit rintArray: not sure how to this xit: mov eax, 1 mov ebx, 0 int 0x80 I need the printArray function thank you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
