Hi All,
Just another program I wrote to help me understand how to program in Linux
assembly.
Any feedback is welcome I am still learning how to do assembly.
This program counts the number of times bytes 00-FF show up in a file, text or binary.
It uses sys_brk to allocate memory then the program reads file data to allocated memory.
We scan the bytes in allocated memory and count the number of times bytes 00-FF are in file then display info to screen.
Make terminal full screen because i use columns to display info.
usage on Linux command line: ./bytect filename
Best Regards
John