Simple assembly linked-list implementation with functions running on RARS 1.1 (RISC-V Assembler and Runtime Simulator)
- Reads integers from console input until a negative integer is given.
- For every integer, it creates a linked list node and saves it in its 'data' field.
- Reads an integer, and prints all the elements in the list that are smaller than the given integer. If the integer we read is negative, the program ends.
- Loops back to step 3.
RARS can be found here: https://github.com/TheThirdOne/rars