Skip to content

Instantly share code, notes, and snippets.

@lfmunoz
lfmunoz / Makefile
Created June 4, 2024 05:19
determine number of cyccles for cpu operations
cpu_cycles.elf: cpu_cycles.asm
nasm -f elf64 -g -F dwarf $< -o cpu_cycles.o
# ld -o $@ lfm.o
gcc -no-pie -o $@ cpu_cycles.o
./$@