Examples
The repository already contains a nice set of real examples:
examples/hello.s32examples/fibo.s32examples/int2dec.s32examples/int2hex.s32examples/prime_sieve_u8.s32
Suggested reading order
If you are new to T32, this order works well:
hello.s32int2dec.s32fibo.s32int2hex.s32prime_sieve_u8.s32
That progression starts with simple output, then moves through data handling, subroutines, loops, and larger algorithmic programs.
A note about style
The examples in this repository already follow a helpful style:
- labels are descriptive
- sublabels keep loops local
- comments explain intent
- data is grouped near the bottom