vote up 7 vote down star

I think asm-app will forever be in my 'to-do' list, simply because I never had any project in mind that would require benefits I get with assembler...

Simple description of problem you've solved in assembler would be nice, and especially why you choose asm over high-level languages...

flag

35 Answers

prev 1 2
vote up 0 vote down

I wrote a few boot sector intros and a boot sector game (columns) for the Atari ST. I chose assembly since it was the only option for fitting the entire app in less than 512 bytes.

link|flag
vote up 0 vote down

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!

link|flag
vote up 1 vote down

I'm a huge fan of the 6502 processor. I've written a few NES game hacks and some simple NES demo's from scratch, showing things like writing to the VRAM and capturing and acting on joystick action.

If you're looking for a fun hobby project, 6502 ASM is excellent!

link|flag
vote up 0 vote down

I created complete games in it. This was on the Amiga. Games created in C were just too slow. Also, only in assembler could you kick out the entire OS and use all available memory. ah, good old times.

on the C64 I created demos in assembler.

Last thing I did in assembler was on a pocketpc where some routines which had to be executed quick. (like screenclears)

link|flag
vote up 0 vote down

Yes, and I enjoyed every second of it. I have mostly used x86 asm. I recommend doing something little in asm. It's not hard at all if you make e.g. a MS-DOS console program that outputs primes.

What I have only managed to do with asm code is really tiny stuff (256-byte intros are about the largest projects I ever manage to finish), really low level stuff (a toy OS booting from a floppy with a simple shell) and learning C from bottom up (seeing the registers and the stack in a debugger quite efficiently teaches what a pointer is, for us too-smart-for-books types).

And obviously you need to use asm when doing stuff for the C64, Atari VCS and other stuff designed for real men who actually need to shave. I made a simple drum machine for the VCS but that wasn't even programming in asm, more like mending the CRT electron beam.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.