show/hide this revision's text 2 emphasise bootstrap

For general computing, I don't think that assembly language has much traction. Compilers these days can actually generate more efficient code than a human in general.

However, if you are in a small critical loop that will be executed millions of time, you might gain some performance advantage by doing it in assembly.

The other case where assembly is absolutely needed is when you are doing bare metal programming on an embedded system. Some of those chips might only be programmable in assembler. Also, even for a 32-bit processor with gobs of memory, the bootstrap code executed when you power on the system will tend to be in assembler, as there is typically no C-stack setup yet, and there are processor registers to initialize.

show/hide this revision's text 1

For general computing, I don't think that assembly language has much traction. Compilers these days can actually generate more efficient code than a human in general.

However, if you are in a small critical loop that will be executed millions of time, you might gain some performance advantage by doing it in assembly.

The other case where assembly is absolutely needed is when you are doing bare metal programming on an embedded system. Some of those chips might only be programmable in assembler. Also, even for a 32-bit processor with gobs of memory, the bootstrap code executed when you power on the system will tend to be in assembler, as there is typically no C-stack setup yet, and there are processor registers to initialize.