WTFStopW : a simple stopwatch
x86-64
nasm
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Yann Weber 36abef3e4e More main_loop and _start code enhancement 5 gadus atpakaļ
Makefile Updated comments, Makefile and REAMDE.txt 5 gadus atpakaļ
README.txt Updated comments, Makefile and REAMDE.txt 5 gadus atpakaļ
wtfstopw.asm More main_loop and _start code enhancement 5 gadus atpakaļ

README.txt

WTFStopW : a simple stopwatch
=============================

Build :
-------
make
or
nasm -felf64 wtfstopw.asm
ld -s -melf_x86_64 wtfstopw.o -o wtfstopw

Usage :
-------
./wtfstopw [-h] [-r NDIGITS]
Options :
---------
-h print an help message and exit
-r number of digits bellow seconds to display, default is 2

Interactions :
--------------
press enter to exit or close stdin
send SIGINT (with kill -2 or ctrl + c) for new lap on stdout
elapsed time is sent on stderr and laps infos on stdout


Build with debugging symbols :
------------------------------
nasm -g -F dwarf -felf64 -l wtfstopw.lst wtfstopw.asm
ld -melf_x86_64 wtfstopw.o -o wtfstopw