A simple word search program that searches through a .txt and prints the matches line, total number of lines, and the number of matches
Find a file
Hariss-Gills c2defbd0bf
Update README.md
fixed md error
2021-06-04 00:47:14 +03:00
README.md Update README.md 2021-06-04 00:47:14 +03:00
word-search.s Final Working Version 2021-06-04 00:12:33 +03:00

Arm-word-search

A simple word search program that searches through a .txt file and prints the matches line, total number of lines, and the number of matches

To run the program

  1. Go to where the file is in your directory via cdcommand
  2. Make an executable with the .s file: arm-linux-gnueabi-gcc -o word-search word-search.s
  3. run the program: cat [filename].txt | qemu-arm -L /usr/arm-linux-gnueabi/ word-search