Metal ARM x01 - Starting Chasm (Lab Notes)

Project 1 consists of:

Work Completed

The full assembly program is:

; vector table
x2000.8000         ; sp starting address
x0000.0009         ; reset handler address | 1 (thumb mode)

; Reset handler - Initializes and continuously increments R0
MOVS R0 x01

@loop
    ADDS R0 x01
    B @loop

Next Steps

Well for one, it's unlikely that I'll write any more handcrafted binaries. It was a good exercise in Project 0 for getting a grip on encoding, but going forward I'll be adding whatever support is needed to chasm assemble and let the machine handle it.

Implementation-wise, I'd like to interact more with the board itself, probably by cycling the RGB spectrum on the built-in LED.