Before you continue, you must clone the module-0-mips-examples
repository.
From the terminal, navigate to a directory where you want the cloned directory to be created and execute the following command.
$> git clone https://github.com/uu-dsp-os-ospp-2020/module-0-mips-examples.git
Now you should see something similar to this written to the terminal.
Cloning into 'module-0-mips-examples'...
remote: Counting objects: 9, done.
remote: Compressing objects: 100% (7/7), done.
remote: Total 9 (delta 0), reused 9 (delta 0), pack-reused 0
Unpacking objects: 100% (9/9), done.
Checking connectivity... done.
To get an overview of the cloned repository, use the tree
command.
$> tree module-0-mips-examples
Now you should see a tree view of all files and directories in the
module-0-mips-examples
directory.
module-0-mips-examples/
├── README.md
├── arrays.s
├── basics.s
├── hello.s
└── jump_and_branches.s
0 directories, 5 files
You are now ready to continue with the Introduction to MARS tutorial.