WTFStopW : a simple stopwatch
x86-64
nasm
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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