vote up 5 vote down star
1

As programmers we need to be precise with our verbal and written communication. Why do so many programmers confuse the term "assembler" (the object code generator) with "assembly" (the language you program in)?

The distinction is unambiguous. Could there be historical explanation?

flag

9  
Sorry, I haven't observed that confusion on anybody's part. – duffymo Jun 13 at 16:51
4  
veto regarding the closing, there are much more offtopic questions. To the OP: I suggest to edit the question to bring it more in line with the type of questions that are encouraged here. Apart from that I just took the time to actually answer your last question, can however not post the response now due to the question being closed (and it being too long for comments)... – none Jun 13 at 17:36
2  
Voted for reopening because of what none said and because it always bothers me too when I see someone asking about "assembler"... – Chris Lutz Jun 13 at 17:39
3  
well, then give me an opportunity to provide exactly those facts that you are asking for ;-) Seriously, I was writing a response only to find that the question got closed. This is frustrating and obviously other people are interested in the question, which may not be directly programming related but is certainly related to programming terminology. – none Jun 13 at 17:59
2  
over moderation on harmless questions – Unreality Jun 14 at 4:18
show 4 more comments

6 Answers

vote up 6 vote down check

The reason it's sometimes called "assembler language" is that the assembler, as a program, understands that language.

For example, there are different assemblers generating x86 machine code. Their languages are different, so basically you are writing in say, GAS assembler's language.

link|flag
1  
This is definitely a reasonable explanation, though I suspect some programmers confuse the two out of laziness ^_^ – emddudley Jun 13 at 17:00
5  
@emddudley - yep. 'tis true. For example, in my language (Croatian) it would go "programiranje u asembleru", by direct translation "programming in assembler". Maybe the correct translation would be "in assembly language", but most will use the first one. But why do these things bother anyone anyhow ? It's not that someone will miss the point. – ldigas Jun 13 at 17:21
3  
In German we call both the language and the tool "Assembler", too. In English I tend to keep them separate. – starblue Jun 13 at 17:45
2  
Given that I cannot currently post responses, I have pasted my original response here (using SO markup however): codepad.org/RvPr1jxr – none Jun 13 at 18:09
2  
As starblue says, in Spanish also we use only "assembler". – Eliseo Ocampos Jun 21 at 7:16
show 7 more comments
vote up 10 vote down

I'd guess it's because it's so much quicker to say "assembler" than "assembly language." I remember a lot of people saying "ML" in the 80s. I liked "ML." Nice and short, and it sounds like it could be one of Superman's relatives.

"Assembly language" is long and awkward. It sounds like a term that might have come out of the UN. "Assembler" has a nice "blood and guts" feel that matches the experience of low-level programming.

The usage of "assembler" to mean "assembly language" has been around for decades. "Written in assembly language" just barely beats "written in assembler" in a Google fight, so on the usage front I'd say either is valid. "Code Complete 2" uses the term "assembler" in the description of languages section.

You get many historically interesting pages if you search for "written in 68000 assembler," "written in 6502 assembler," etc.

The usage is mentioned on wikipedia.

Note that, in normal professional usage, the term assembler is often used ambiguously: It is frequently used to refer to an assembly language itself, rather than to the assembler utility. Thus: "CP/CMS was written in S/360 assembler" as opposed to "ASM-H was a widely-used S/370 assembler."

Words often have multiple meanings. English is not assembler.

link|flag
I tend to say "written in assembly" myself, which is marginally shorter and sounds just as good. – Chris Lutz Jun 13 at 17:41
1  
I usually say "assembly" or "azzmmmmmm." If I'm feeling bloated, authoritative, or haughty, I'll say "assembly language." – Nosredna Jun 13 at 17:58
1  
I say "assembly" or even "asm" instead of "assembly language" – d03boy Jun 14 at 3:54
vote up 9 vote down

Because speech errors don't throw stack overflows?

link|flag
vote up 2 vote down

Probably because the words are so similar?

link|flag
vote up 1 vote down

Not sure, but I would say that those programmers are the SAME ones who - when you ask them if their coding is completed, they answere..."well, yes and no..."...arrrghhh!!

link|flag
vote up -1 vote down

From Answers:

Assembly: 5 Computer Science. The automatic translation of symbolic code into machine code. 6 Computer Science. An assembly language.

Assembler: 2 Computer Science. A program that produces executable machine code from symbolic assembly language.

Then, simplifying, an assembler is a tool that help us to translate symbols by assembling them, producing in this way the machine code. IMHO this would be the correct way to use this terms.

link|flag
Why the downvote? – Eliseo Ocampos Jul 25 at 5:50

Your Answer

Get an OpenID
or

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