Sure there is. Just think of programming drivers or simply doing stuff on real-time embedded devices - or just using embedded stuff without real-time :)
I think upcomming FPGA circuits embedded in COTS hardware will bring up the need for low(est) level languages (asm, vhdl, verilog) to a new revival.
addition:
The knowledge how assembler "works" makes you a better programmer! Since you understand what really happens behind your (high-level) code. Like:
- what are function calls really like
- what is memory (how is it allcoated, freed, what memory leaks are)
- how control flow (for, while ...) is done in hardware (goto, if ...)
- how all the library stuff works (compiling and linking applications)
