diff options
author | Christian Cunningham <cc@localhost> | 2022-04-04 20:13:59 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-04 20:13:59 -0700 |
commit | 1c2c831e611abd946727cc07291ab412edeca4d8 (patch) | |
tree | 0c61660daabf793d87aebc420dd47e534afeebb7 /kernel/exceptions | |
parent | d7f29c6a748ec1d5fc45cad77c3397aa8d777623 (diff) |
Added Colab instructions
Diffstat (limited to 'kernel/exceptions')
-rw-r--r-- | kernel/exceptions/svc.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/exceptions/svc.S b/kernel/exceptions/svc.S index 452831a..1219413 100644 --- a/kernel/exceptions/svc.S +++ b/kernel/exceptions/svc.S @@ -21,7 +21,7 @@ svc_000000: // SYS_YIELD ldmfd sp!, {r0-r12,lr} b schedule svc_000001: // SYS_TIME - mov r2, #0x3004 + movw r2, #0x3004 movt r2, #0x3F00 ldr r0, [r2, #4] // <- SYS_TIMER_CLO ldr r1, [r2, #0] // <- SYS_TIMER_CHI |