diff options
author | Christian Cunningham <cc@localhost> | 2022-03-19 15:15:11 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-19 15:15:11 -0700 |
commit | 2db90ba9e12c66d786bf17d05210b36052976398 (patch) | |
tree | 9e67a5604758fcc92a19c9219b4fe2920fc7ba92 /src/cpu | |
parent | 22cdaae7a86ff4c457a8770d0af633cbdb310b53 (diff) |
Tick Latency Tracing
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/irq.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c index 4708293..b5f3e03 100644 --- a/src/cpu/irq.c +++ b/src/cpu/irq.c @@ -83,8 +83,6 @@ unsigned long c_fiq_handler(void) counter++; if (counter % 0x6000 == 0) counter = 0; - if (counter % 0x08 == 0) - status(); if (counter % 0x40 == 0) return 1; return 0; |