CS1521 | COMP1521 | Assignment 1: Breakout in MIPS
Aims to give you experience writing MIPS assembly code to give you experience translating C to MIPS to give you experience with data and control structures in MIPS Getting Started Create a new directory for this assignment called breakout , change to this directory, and fetch the provided code by running these commands: mkdir -m 700 breakout cd breakout 1521 fetch breakout If you're not working at CSE, you can download the provided files as a zip file or a tar file . This will add the following files into the directory: breakout.s : a stub MIPS assembly file to complete. breakout.c : a reference implementation of Breakout in C. breakout.simple.c : a copy of the reference implementation of Breakout, for you to simplify. input.txt : example input file. breakout.mk : a make fragment for compiling breakout.c .