WTFStopW : a simple stopwatch
x86-64
nasm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 184B

1234567891011
  1. all: wtfstopw
  2. wtfstopw: wtfstopw.o
  3. ld -s -melf_x86_64 wtfstopw.o -o wtfstopw
  4. wtfstopw.o: wtfstopw.asm
  5. nasm -felf64 wtfstopw.asm
  6. .PHONY: clean
  7. clean:
  8. -rm -fv wtfstopw wtfstopw.o