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:
$ makeOr you can manually build it:
$ ./fasm ttyper.asm
$ ld ttyper.o -lc -lncurses -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o ttyperTo run it you can either run it directly:
$ ./ttyperor via makefile:
$ make runThe 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