I can't imagine an electrical engineering program that doesn't teach some form of assembly language. Although tedious, I think if you are going into embedded systems you should learn it at some point. You may never use it again, but it will give you insight into microprocessors. In fact, I think you should decode assembly language into machine language so that you gain a deep understanding of what these microprocessors are actually doing. The more abstracted you are from the program, the less you actually understand what it is doing.
Edit:
In many 8051 based microcontrollers, of which there are still new designs created, there is a watchdog timer. The job of the watchdog timer is to reset the system if a certain time has passed. This timer allows systems that have locked up to reset themselves. If too many variables are declared before the main function can be reached, the system you are programming will reset indefinitely. This is because the watchdog timer is on by default on boot and must be disabled if you want to turn it off. The only way to shut that watchdog timer off before reaching main is by making an assembly file (usually startup.a51) that disables the watchdog timer before the system initializes.
I can't imagine an electrical engineering program that doesn't teach some form of assembly language. Although tedious, I think if you are going into embedded systems you should learn it at some point. You may never use it again, but it will give you insight into microprocessors. In fact, I think you should decode assembly language into machine language so that you gain a deep understanding of what these microprocessors are actually doing. The more abstracted you are from the program, the less you actually understand what it is doing.
I get the impression that if you want to do ASM, you go to EE rather than CS. When I was an undergrad it was considered important for a CS major to master assembly language as a fundamental part of the science. However, years later it seemed that CS no longer had faculty who were themselves masters of ASM, and the subject atrophied in CS and it was up to EEs to fill the gap.
Regarding ASM versus machine language: some ASMs have nice, clean machine-language codings and it can be beneficial to read octal/hex dumps. Then there's ARM...
I can't imagine an electrical engineering program that doesn't teach some form of assembly language. Although tedious, I think if you are going into embedded systems you should learn it at some point. You may never use it again, but it will give you insight into microprocessors. In fact, I think you should decode assembly language into machine language so that you gain a deep understanding of what these microprocessors are actually doing. The more abstracted you are from the program, the less you actually understand what it is doing.
I get the impression that if you want to do ASM, you go to EE rather than CS. When I was an undergrad it was considered important for a CS major to master assembly language as a fundamental part of the science. However, years later it seemed that CS no longer had faculty who were themselves masters of ASM, and the subject atrophied in CS and it was up to EEs to fill the gap.
Regarding ASM versus machine language: some ASMs have nice, clean machine-language codings and it can be beneficial to read octal/hex dumps. Then there's ARM...
Top Comments