How to Submit your Programs



If you are submitting under Windows

Follow the following steps.

  1. If you are working from home, download the submission program from the course homepage and go to step 7.
  2. Go to one of the LRC Windows machines.
  3. Double click on  the "My Computer" icon.
  4. Double click on the "LRCApps" drive.
  5. Double click on the "ee379k" folder.
  6. Double click on the "Submit" folder.
  7. Double click on the "Submit-ITC" program.
  8. Type in your ECE login name.
  9. Select the file that you want to submit.
  10. Select the unique number of the discussion section in which you would like the assignment returned to you.
  11. Select the program number. For programming assignment 1, you should select either 1shift or 1rotate depending on whether you are submitting the shift or rotate program.
  12. Click the "submit" button.
  13. Read your ECE email to check for the confirmation that your program has been received correctly.
  14. If you don't get a confirmation after 10 minutes, email your TA.
You are done!



If you are submitting under Unix (This includes using telnet.)

Follow the following steps.

  1. Telnet to one of the ECE machines

    telnet tick.ece.utexas.edu

    Perform the step "Setting your path" below.
  2. Change into the directory containing the program files you want to submit. If your files are located in the current directory, you can skip to the next step.
  3. Submit the program using the submit script submit-itc. The submit script uses the following format.

    submit-itc <name_of_file> <program_number>

    For the program_number, use the same number as the programming assignment. For the 1st programming assignment, you would use the command

    submit-itc shift.bin 1shift

  4. or
    submit-itc rotate.bin 1rotate
     
  5. Read your ECE email to check for the confirmation that your program has been received correctly.
  6. If you don't get a confirmation after 10 minutes, email your TA.
You are done!



Setting your path (for Unix only)

You need to perform the following steps only if you work in Unix.

After you have telnet to an ECE machine, type the following commands.

  1. Change into your home directory

    cd

  2. Open your .cshrc file using the PICO text editor

    pico .cshrc

  3. Add the following line after the last line of this file. This line adds the lc2 directory to your path.

    set path = (/usr/local/packages/lc2/bin $path)

  4. Save and exit the file by typing CTRL-X and pressing 'Y' at the prompt.