avansc wrote: and Im pretty sure I see and work with more assembly than your average "computer engineer", probably you too Falco. (No, im not claiming to know more about hardware, and I'd actually really be interested to know just how much assembly you work with)
I'm a driver developer on a GPON (gigabit passive optical network) ONT. It's a kind of fiber optic-based router delivering voice, video, and data. I work at the MAC layer with PPC and MIPS GPON processors who have special registers, opcodes, and DMAs for transferring/receiving fiber optic data. I generally don't write any assembly, because the registers are all accessed as memory-mapped IO, but I am at about as low of a level as C can go, working with ISRs and talking directly to the devices.
Our company also develops its own operating system (AdtranOS) for its routing/switch products. Since we work on embedded MIPS/PPC platforms, every high-level software engineer is technically also working on the OS itself. The kernel level of the OS is about 80% C with 10% platform-specific assembly routines and 10% C++ wrappers. All higher-level feature-based development is done in C++.
My officially title is "software engineer" as well, but I'm usually down at the driver level in C here.
ALL of our developers are "embedded systems" developers, but almost none of them ever even come into contact with assembly. I really disagree. UNLESS you are working with operating systems, drivers, or specialized embedded platforms you won't even need to drop to C, let alone assembly.
Also, any embedded JTAG-based probe/debugger worth its shit can step you through C/++ symbols from a coredump of the same image without making you have to trudge through assembly.