"Assembly" vs. "Assembler"

30,381

Solution 1

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

Solution 2

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.

Solution 3

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).

Solution 4

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

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

Solution 5

I honestly don't know if there is a 'standard' terminology that suitably differentiates all these concepts. (Example: If I say "ASM" what am I talking about?)

I can give you my definitions, if that helps any.

Machine Code

This is the compiled output of an assembler or compiler.

Assembly

This is the human readable form of machine code. (Or, machine code as we know it.)

I sometimes use the term assembly in place of machine code because it's implied that I'm not going to actually read the machine code, but rather the assembly.

Assembly Language

This refers to a specific machine code language such as x86 assembly.

Assembler

This is a tool like MASM\FASM used for compiling source code into machine code.

Assembler Language

This is the language used by any given assembler.

I view this as being different from assembly language because assemblers can add their own syntactic sugar which does not exist in the underlying assembly language. (High level functions, macros, etc,.)

Share:
30,381

Related videos on Youtube

Henrik Paul
Author by

Henrik Paul

Currently programming mainly in PHP in the spare time, but writing Java for a living. Started writing 5-liners of BASIC on a C64 when I was about 6, and hooked in programming ever since.

Updated on November 25, 2020

Comments

  • Henrik Paul
    Henrik Paul over 3 years

    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?

    • Marco van de Voort
      Marco van de Voort over 14 years
      Personally I think it went wrong when the term "National Assembly" was introduced during the French revolution :-)
  • ShinjiOno
    ShinjiOno almost 14 years
    In microsoft-land, that may be true, but long before .NET came out, people used the word assembly as short-hand for "assembly code" - that is, the source code you provide as input to an assembler to generate a file containing machine code.
  • Ralph M. Rickenbach
    Ralph M. Rickenbach almost 14 years
    @George I am an old timer, started programming on computers that almost filled rooms, and this was the use and definition of the words. People started to use them in a sloppy way pretty soon.
  • ShinjiOno
    ShinjiOno almost 14 years
    @Ralph Rickenbach Sorry, I didn't mean to sound condescending in my previous comment. That's just how I'd always heard the terms used until .NET came along and decided to use the word "assembly" to mean something different.