- Click on Terminal:
This will bring up the
Terminal panel
- Check your
current directory by executing
the pwd command:
- If necessary
(i.e., if you're not currently in the directory where your project files
are stored), use the
cd (change directory) command to
go to the correct
sub-directory
where your program files are
stored:
- Use the ls (list) command
to make sure the correct program files
are present:
In the above example, I changed
the current directory to
/home/cheung/cs255/hw6
- Once you're in the correct directory
(= the directory where your project files are stored), you can
compile your program
with the appropriate
command given in the
homework assignment page:
In the above example, I ran the
command
"as255 hw6 bubblesort" that
compiles assembler files
hw6.s and
bubblesort.s into
the program pj6
|