Files
csapp2025/malloclab/clock.h
2025-05-21 14:41:01 +08:00

10 lines
209 B
C

/* Routines for using cycle counter */
/* Start the counter */
void start_counter(void);
/* Get # cycles since counter started */
double get_counter(void);
double mhz(int verbose);
void make_CPU_busy(void);