Assignment_1_MIC
Assignment_1_MIC
section .data
hello: db 'Hello harsh..!',10
helloLen: equ $-hello
section .text
global _start
_start:
mov eax,4
mov ebx,1
mov ecx,hello
mov edx,helloLen
int 80h
mov eax,1
mov ebx,0
int 80h
Output :
Q. Write an X86/64 ALP to accept five 64 bit Hexadecimal numbers from user
and store them in an array and display the accepted numbers.
Output :