Still under development
Fasm terminal application to test and train your typing speed.
The application is written in fasm and uses ncurses library and works for linux x86_64.
To make the installation easier, there's a Makefile. To build the app simply run:
$ make
Or you can manually build it:
$ ./fasm ttyper.asm
$ ld ttyper.o -lc -lncurses -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o ttyper
To run it you can either run it directly:
$ ./ttyper
or via makefile:
$ make run
The app isn't creating files other than in the current folder, so removing the folder is enough.
If you want to delete the binaries only, run the following command:
$ make clean