Skip to content
Snippets Groups Projects
Commit 1cb46c9d authored by Daniel Friesel's avatar Daniel Friesel
Browse files

treebench: do not use loop mode

parent 71e891f2
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,3 @@
# Copyright 2020 Daniel Friesel
#
# SPDX-License-Identifier: CC0-1.0
ifdef app
loop = 1
endif
......@@ -11,22 +11,21 @@
#include "tree.c.inc"
void loop(void)
int main(void)
{
arch.setup();
gpio.setup();
kout.setup();
counter.start();
counter.stop();
kout << "nop @ " << counter.value << "/" << counter.overflow << " cycles" << endl << endl;
run_benchmark();
}
int main(void)
{
arch.setup();
gpio.setup();
kout.setup();
arch.idle_loop();
while (1) {
arch.idle();
}
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment