I have to write a program that loads a string terminated by a full stop from a text file and prints the number of vowels and words with less than 3 vowels.
Ive managed to do the first part but i dont know how to go back to print the word with less than 3 vowels because i can only know if a word has 3 or less vowels after ive gone through the words byte by byte?!
This is my first time ever working with assembler so any help would be greatly appreciated.
Heres what ive got so far:
https://pastebin.com/XpGDbcJwIve added comments which tell where part1 which ive done starts and where part2 starts which is work in progress.