vote up 1 vote down star

I've been taught that "assembly" is what you write in your files, to have your "assembler" convert it into binary code.

But I see these two terms mixed and matched in various works. I've even heard that you write "assembler", after which an "assemblator" makes it executable.

Tell me, please, what's the right words to use?

flag

73% accept rate
1  
assembly to assembler, is like c to gcc. – arsane Jul 24 at 7:51
Possible duplicate: stackoverflow.com/questions/991009/… – Eliseo Ocampos Jul 24 at 14:50
Don't forget about .net assemblies, they creates one more "terminology bug" – zxcat Sep 9 at 6:37
Personally I think it went wrong when the term "National Assembly" was introduced during the French revolution :-) – Marco van de Voort yesterday

5 Answers

vote up 7 vote down check

Actually, the language is called "Assembly Language", and the tool to convert it to machine code is the "Assembler".

More info on Wikipedia: http://en.wikipedia.org/wiki/Assembly_language

link|flag
vote up 0 vote down

I'm guessing the origin of these terms goes back to the classic dictionary defintion of assembly: "an assembly of machine instructions to achieve a purpose" which is probably how the computing pioneers thought of a small group of machine instructions. Then an "assembler" is a device that takes individual machine instructions an puts them together into an "assembly".

link|flag
vote up 1 vote down

The assembly is a piece of code/executable that is in machine executable code. This might be an obj, exe, dll, ... It is the result of a compile.

The assembler is the "compiler" that compiles code into machine executable code. This code has been written in the language "Assembly Language". Assembly language in common English is often called Assembler.

Assemblator seems to be a creative word, born out of necessity to reduce confusion caused by missusing the other terms or a term in a foreign language (see other answers).

link|flag
vote up 1 vote down

This might be a (human) language issue - the Swedish word for "assembler" appears to be "assemblator"...

See also: http://sv.wikipedia.org/wiki/Assemblator

link|flag
vote up 4 vote down

The purpose of language is to communicate.

If people say things, and other people understand them, they are using the correct terms.

We have rules to make it easier to understand, but in my opinion, if you say what sounds best for you, and let other people say what sounds best for them, and you all understand what you all mean, then everything will be peachy.

For what it's worth, I prefer to write "assembly" and assemble it with an "assembler." I think "assemblator" should be the word of the day someday, and everyone should try to use it as often as possible.

link|flag
This is true in most cases but sometimes a situation is created where 2 people are talking about the same thing and they have no idea. – smack0007 Jul 24 at 7:10
1  
+1 You just assemblatoratificated my day ;-) – balpha Jul 24 at 7:20
@smack - This is possible, but I've never seen anyone who was genuinely confused about the difference between "assembly language" and "assembler language" - most people who are smart enough to know what assembly language is are smart enough to figure out when someone calls it by a slightly different name. – Chris Lutz Jul 24 at 7:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.