aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2021-12-08 17:28:15 -0700
committerChristian Cunningham <cc@localhost>2021-12-08 17:28:15 -0700
commit15b93ed9c47691ae0b7241100509159a38c36049 (patch)
tree475f29aea3abdadfc7338178283f152d08949c23 /src/cpu
parent70875c2c095576489cb88836a7e176c83c298f03 (diff)
Standardized Format
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c
index 2673cc8..c00ce8c 100644
--- a/src/cpu/irq.c
+++ b/src/cpu/irq.c
@@ -15,7 +15,7 @@ void c_irq_handler(void) {
if(load32(IRQ_PENDING2) & (1 << 25)) {
if(load32(UART0_MIS) & (1<<4)) {
unsigned long data = load32(UART0_DR);
- // Tab to toggle timer
+ // Ctrl+Tab to toggle timer
if(data == 0x14) {
unsigned long timer_status;
asm volatile("mrc p15, 0, %0, c14, c3, 1" : "=r"(timer_status));