Skip to content

CS 2810 - Project #8

Write a MIPS Assembly Language Program that uses a linked list to manage a collection of integer values. Your program should allow the user to add to, remove from, and print the data in a linked list. Page A-44 describes the system call sbrk which dynamically allocates memory from the dynamic data section of the data segment of memory. Appendix B does not tell us how to dynamically deallocate, so your remove option only needs to remove the node from the list, it doesn't need to deallocate the memory. Name your file LlllProj08.asm.