A7_file1.asm

;Assignment no. :7 ;Assignment Name :X86/64 Assembly language program (ALP) ;String Manipulation : Concatenation of 2 strings & ;Find...

A7_file2.asm

;--------------------------------------------------------------------- section .data     nline        db    10,10     nline_len:    equ    ...

macro.asm

;macro.asm ;macros as per 64 bit conventions %macro print 2     mov    rax,1        ;print/write     mov    rdi,1        ;stdout/screen    ...

MIT String Operations

%macro Display 2     mov rax,1     mov rdi,1     mov rsi,%1     mov rdx,%2     syscall %endmacro %macro Accept 2     mov rax,0     mov rdi,...