summaryrefslogtreecommitdiff
path: root/cpu/memtest
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/memtest')
-rw-r--r--cpu/memtest/memtest.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/memtest/memtest.hh b/cpu/memtest/memtest.hh
index bda807d11..3e7dff968 100644
--- a/cpu/memtest/memtest.hh
+++ b/cpu/memtest/memtest.hh
@@ -66,7 +66,7 @@ class MemTest : public BaseCPU
MemTest *cpu;
public:
TickEvent(MemTest *c)
- : Event(&mainEventQueue, 100), cpu(c) {}
+ : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c) {}
void process() {cpu->tick();}
virtual const char *description() { return "tick event"; }
};