vote up 12 vote down star
2

Is there a programming language "below" Assembly?
Thanks.

flag

16 Answers

vote up 25 vote down

Machine code. Time it was programmers coded in the 1 and 0's of binary. Hex was considered an advance over this. That was before assembly, which uses the code's names and separates the parts of an instruction into its parts.

link|flag
Machine code is a direct translation of Assembly, so I wouldn't say it is below it. – Marius Oct 18 at 12:44
@marius, My pc can run machine code, but not assembly. So it ain't equal ;). – Dykam Oct 19 at 14:23
I don't know what state-of-the-art assembler programs can do these days, but in the Olden Days, a macro assembler could do a fair bit of automatic stuff for you (function entries, keeping track of argument counts, automatic allocation, conditional macro expansion and other Neat Stuff that is a chore to do manually). So I'd say that machine code is "lower" than assembly for taht reason. – vatine Oct 19 at 14:29
vote up 22 vote down

Actually there's a level of code that sits above machine code, called Microcode.

link|flag
I consider microcode to be machine code. Just a different variant that lives on the processor, rather than being run from RAM. – Brian Knoblauch Nov 5 '08 at 19:35
4  
microcode is a block of ROM where each bit is used to toggle some internal circuitry. a sequence of 'words' guide the CPU to perform a single machine language instruction, therefore, it's 'below' even machine language. – Javier Nov 5 '08 at 21:25
I agree with Javier. We built a microcoded processor as part of a university course once. Very fun! – kigurai Nov 5 '08 at 21:30
On the same page as Javier. It's not the same as machine code.. It's realy what machine code uses. – baash05 Nov 6 '08 at 5:11
Sijin and Javier are correct. This should be the accepted answer. – Windows programmer Dec 25 '08 at 8:47
show 2 more comments
vote up 11 vote down

Assembly is a text representation of Machine code. It has a single statement which represents a single instruction within the CPU itself. "MOV X, Y" for example, is a single instruction which passes through the CPU and moves a value X into position Y. To get to machine code, the CPU will have a number that represents 'MOV', and a number that represents 'X' (if it's not already a number), and a number that represents Y. These raw HEX binary values are the Machine code. It's the numbers that cause the CPU to direct voltages / currents through the transistors to make it do what it does.

Machine code is a lower level, but it's very very close to assembly. It's so close, that no one bothers using it due to the advantages of being able to read the instruction "MOV" = move. Variable names also become readable rather than raw addresses in the stack or heap.

link|flag
Well, many assemblers actually allow for labels in subsitution for an address. So assembly is not quite just a text representation of machine code. – Calyth Jan 7 '09 at 1:44
vote up 7 vote down

And to go even lower, (not that the word "language" is appropriate for "machine" language or for even lower physical layers), but below machine language is the configuration of the many gates and switches used to actually implement each binary opcode for the particular hardware (CPU) involved... A great book to read that covers this even lower level is by Charles Petzold, called "CODE"

link|flag
vote up 5 vote down

Machine Code

http://en.wikipedia.org/wiki/Low-level_programming_language

link|flag
vote up 5 vote down

If by below, you mean lower level, then yes. There is machine language. Assembly is turned into machine language before it is run. On many modern processes the machine language is emulated in microcode. See this for more details on microcode.

link|flag
vote up 2 vote down

Depends on why you're asking. There's nothing that you can't do in assembly that you can do via some other method. Machine code is just another representation of the exact same data.

link|flag
Not 100% accurate.. You can't optimize your assembly via another method. I mean even a x*=2; in c++ might not be compiled down to the most efficient assembly. A for loop might not use the cx registry(8086). There are things you can only do in assebly... Tis why it's still used as a language(by sum) – baash05 Nov 6 '08 at 5:17
Actually there are some things that can not even be done with assembly. Some kinds of self-modifying code, or using instructions as data and vice-versa. (on x86 with variable-length instructions... the possibilities...) – Artelius Nov 7 '08 at 21:27
vote up 2 vote down

The very first computers (ENIAC) used hard wiring so that output from one computation could be fed as input to another. To run another program, you had to unplug some cables and re-wire them differently.

link|flag
vote up 2 vote down

Assembler is translated into machine code by the assembler. You could write it with a binary editor. (Ouch!) CISC computers can have microcode, which sequences segments of the chip (ALU, memory fetch, etc). Typically, no one writes microcode, except at the chip manufacturer.

link|flag
vote up 1 vote down

Well, you can always write code in binary (or hex, or some other representation). You'll then have to calculate jump offsets etc in your head. Not recommended. ;)

link|flag
vote up 1 vote down

Sort of. Machines don't read assembly, they read "machine language", which is what assembly is converted into. Machine language has "opcodes" instead of assembly's mnemonics, and these opcodes are usually just binary data. Machine code isn't usually considered human-readable.

On RISC systems, machine code is often a straightforward translation of assembly, but on x86 systems, in particular, the two are quite different.

link|flag
Actually, on x86 it's also a straightforward translation. Do you have any examples that show otherwise? – Nathan Fellman Nov 5 '08 at 20:51
vote up 1 vote down

Sure: "machine code", about which, Wikipedia, in the article on Assembly Language (http://en.wikipedia.org/wiki/Assembly_language), says: "implements a symbolic representation of the numeric machine codes and other constants needed to program a particular CPU architecture."

link|flag
vote up 1 vote down

Even below machine code, one could say, is VHDL - chip design. You don't even need to design the chip to execute code, but just instantly transform inputs into outputs.

(not that I'm an expert - I'm using C++)

link|flag
But after building the chip, you can't really program it. So I don't think it's really relevant. – kigurai Nov 5 '08 at 21:33
When using this on an FPGA, it is reprogrammable. Still, I'm not an expert :) – xtofl Nov 6 '08 at 13:36
vote up 0 vote down

Well, there's machine language, as others have mentioned. Machine language is typically a 1-to-1 translation of what you write in assembly, so it's at the same level of abstraction as assembly code -- just much harder to write by hand.

There are exceptions to this, like the pseudo-instructions provided by the MIPS assembly language.

There is, or maybe I should say was a level below even assembly/machine language: microcode. Modern logic-transistor budgets being what they are, I suspect that microcode is losing its relevance.

link|flag
Microcode is definitely still around; it's too difficult and "bug"-prone to hardwire everything. – Artelius Nov 7 '08 at 21:28
vote up 0 vote down

Assembly language is the lower floor of the programming language building as machine code is not a language because it does not involve any grammatic rules to follow. Machine code may be the only data format to execute microprocessor operations: the CPU fetches data from memory and executes the instruction directly according to the machine code fetched.

However, in some recent designs, such as the Intel Pentium 4 and up, machine code is the expression of a lower level RISC execution unit operations, known as uops or microoperations. So the decoding logic of those designs is to translate CISC-type instructions into small uops which are generally targeted at a simpler load/store unit, RISC-like. In this aspect, we can say (altough this may not be technically exact) that machine code describes the "higher-level" complex instructions of the architecture, not the "real" operations that are carried atomically by the underlying execution logic of the CPU.

So we've an architectural instruction set, or architectural machine code, and an inner-level "micro-instruction" set which is hidden from the outer world. The trace cache of the Intel processors was conceived to store such ops to optimize the superscalar performance of the processor (as the CPU executes uops not the architectural instruction-set available for execution by programs).

link|flag
vote up 0 vote down

I think the lowest you can get is something called Physics or TRW (The Real World). This is what chip designers and manufacturers use to create CPUs and other processors that can take the output of computer languages and turn them into something valuable.

link|flag

Your Answer

Get an OpenID
or

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