Playing Around with ARM Assembly
blog.nobaralabs.com·8h·
Discuss: Hacker News
Flag this post

I started out programming in C, but had no idea what I was doing at the time. Since then, I’ve gone on to a career as a backend developer. But I’ve always missed the simplicity of C, and the awareness of memory and hardware that it gives you.

For fun, I decided to dive back into low level programming, and write some C mixed with some handwritten assembly.

Like any good side project, I started out by spending hours setting up my dev environment so that everything was just right.

I’m more familiar with bash over Make, even though I know Makefiles are very popular in the C community.

After several iterations I ended up with a very simple bash script containing all of the dev commands needed:

  1. test - build and run test suite
  2. fmt - autoformatter
  3. clean - delete build artifacts…

Similar Posts

Loading similar posts...