Top definition
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
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
by Martin August 01, 2004
Apr 25 Word of the Day
v. collectively or individually finding someone/something to blame for a problem, as opposed to brainstorming which connotes finding solutions to a problem
n. the act of finding someone/something to blame for a problem
(from a TV ad for HD television)
n. the act of finding someone/something to blame for a problem
(from a TV ad for HD television)
The committee commenced blamestorming over the situation rather than seeking solutions to the problem.
by TBea April 22, 2008