| 1. | assembler | ||
|
A program that reads a file written in the assembly language and translate it into a binary representation of the corresponding machine instructions. NASM:
section .text global _start msg db 'Hello, world!',0xa len equ $ - msg _start: mov edx,len mov ecx,msg mov ebx,1 mov eax,4 int 0x80 mov eax,1 int 0x80 |
|||
| 2. | assembler | ||
|
I am an assembler.
|
|||
