If you haven't noticed, ARM processors are everywhere. If you look around you, there are probably more ARM CPU's than there are Intel CPU's. They are used in many IoT devices and due to their relatively inexpensive cost, their usage and importance will only increase.
To get started, I suggest you purchase a Raspberry Pi and start from there. I'm sorry but if you do not know what a Raspberry Pi is, then you got a long educational journey ahead of you, but don't get discouraged! Any Raspberry Pi will do, as long as you can either SSH into it or have some kind of terminal/command prompt to interact with. If you don't have a Raspberry Pi, then you can also emulate one with QEMU.
Currently, at the time of writing this, I have a root shell on a home router that is manufactured by the company I work for, and it uses an ARM7L CPU. The only downside to using this, is that I have to install the Cross Compilation ARM utilities onto an Ubuntu VM, assemble and link the code in the VM, then SCP the binaries over to the router to execute them. I've included a small section below with some steps to get started using this method. Honestly, as long as you have some type of hardware that you have access to and can run privileged code, then you can use whatever you'd like. But I honestly and highly recommend sticking with a Raspberry Pi.
Coming Soon...
Coming Soon...
Coming Soon...
NOTE: The libraries are platform dependent. Because I am using a home router, and it has an ARM7L CPU, I'll be installing the specific architecture libraries listed below. I've also included the C/C++ libraries to help with the C/C++ to ARM disassembly. Also, this is running from Ubuntu 16.04.6 LTS -> Rooted Home Router.
First, install the GCC, G++ and utilities for the ARMEL Platform:
sudo apt-get install g++-arm-linux-gnueabi gcc-arm-linux-gnueabi binutils-arm-linux-gnueabi libncurses5-dev libc6-armel-cross
IF you have the ARMHF Platform:
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf binutils-arm-linux-gnueabihf libncurses5-dev libc6-armhf-cross
A link to a reference I used to help me get started can be found here. I don't have an ACME board but the process is completely the same.
Taking the helloworld.s code for example, the first thing we need to do is use the assembler to create the object file. Since we are coding this from an Intel-based Ubuntu VM, we will use a different assembler.
user@ubuntu:~/asm$ arm-linux-gnueabi-as -o hello.o hello.s
We will then use the ARM linker to create the executable binary.
user@ubuntu:~/asm$ arm-linux-gnueabi-ld -o hello hello.o
Then, we will SCP the executable over to the box and run it.
user@ubuntu:~/asm$ scp hello root@192.168.1.1:/tmp
user@ubuntu:~/asm$ ssh root@192.168.1.1
...
root@OpenWrt:~# cd /tmp
root@OpenWrt:~# ./hello
Hello World!
root@OpenWrt:~#