aboutsummaryrefslogtreecommitdiff
path: root/debug/programs/run_halt_timing.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/programs/run_halt_timing.c')
-rw-r--r--debug/programs/run_halt_timing.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/debug/programs/run_halt_timing.c b/debug/programs/run_halt_timing.c
deleted file mode 100644
index 1c9a8ba..0000000
--- a/debug/programs/run_halt_timing.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <stdint.h>
-#include <stdlib.h>
-
-#include "init.h"
-
-int main()
-{
- int counter = 0;
- volatile uint64_t mtime_value;
-
- while (1) {
- counter = counter + 1;
- mtime_value = MTIME;
- }
-}