aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 12114d7..0d6c89f 100644
--- a/src/common.h
+++ b/src/common.h
@@ -260,6 +260,11 @@ u32 profile_stop(void) {
260 return (TIMER_DATA_3 << 16) | TIMER_DATA_2; 260 return (TIMER_DATA_3 << 16) | TIMER_DATA_2;
261} 261}
262 262
263static inline
264u32 profile_measure(void) {
265 return (TIMER_DATA_3 << 16) | TIMER_DATA_2;
266}
267
263// 268//
264// Input handling. 269// Input handling.
265// 270//