At a major Canadian bank we wrote the whole banking system, from scratch, using IBM main-frame Assembler language. Development started in the early '70s and involved maybe 60 developers on the application side, and maybe a few dozen on the systems side. It is still running well (2009). It now includes a reporting subsystem written in PL/I that was added later. Strangely enough this part didn't turn out to be any easier to maintain :-)
Reasons for picking Assembler (as far as I can recall):
concerns about performance of higher-level languages - at that time we needed to be able to run the whole bank on a 2 Mips machine
concerns about reliability of compilers - what happens to your app if there is a bug in the compiler, or a new compiler release comes out?
ease of access to system functions - these are always supported by Assembler language, but often not by higher-level languages
this Assembler has a very powerful macro capability, so effectively we were able to design our own transparent higher-level language
The system was fast - here is a quote from http://www.c2.com/cgi/wiki?BmoMech : "In the early 1980s, the average Mech transaction had a path length of some 48,000+ AssemblyLanguage instructions." Note: that means machine instructions! Assembly Language is 1:1 with machine instructions.
By the way, this was the first (and, to my knowledge, so far only) production system built using Flow-Based Programming - it was used extensively for the batch part of the system.
More material can be found on http://www.c2.com/cgi/wiki?BmoMech - it's a fascinating bit of computing history!