alizameller / Project2

ECE-251 Computer Architecture - Project 2 (Cooper Union Spring 2021)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Computer Architecture ECE251 Project 2

Purpose / Goal

  • Read file that contains a list of numbers (One number per line - limited to 32 bits; Line terminated by '\n'
  • Create another file that has the numbers in ascending order

Help

Usage: Sort linefeed delimited numbers in a file in ascending order then output to a file

Example:

  • input.txt output.txt It is also possible to replace the file with the sorted version:
  • numbers.txt numbers.txt

Installation Method

  1. Download the assembly file from GitHub using curl:
curl https://raw.githubusercontent.com/alizameller/Project2/main/jag2.s --output jag2.s
  1. Download the Makefile from GitHub using curl:
curl https://raw.githubusercontent.com/alizameller/Project2/main/Makefile --output Makefile
  1. Run the Makefile in the directory downloaded:
make
  1. Run the exectutable generated followed by the input and output file names:
./jag2.out input.txt output.txt

If you do not include an input/output file a help message will be displayed

File Format

Your input file should look something like this:

1248293
-23472394
2384
2347
234
1
33423
23478
-6789
-2346
23487
-2342374

Running jag2.out will then output this into the output file:

-23472394
-2342374
-6789
-2346
1
234
2347
2384
23478
23487
33423
1248293

Design Document

The Design Document can be found here

About

ECE-251 Computer Architecture - Project 2 (Cooper Union Spring 2021)

License:GNU General Public License v3.0


Languages

Language:Assembly 98.7%Language:Makefile 1.3%