mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
Fixed typo
This commit is contained in:
parent
995bc2a522
commit
44669ee990
2 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ Previously, we've unequivocally halted the other cores by spinning them in an in
|
|||
cbz x4, 1b // Loop if zero, otherwise continue
|
||||
|
||||
ldr x2, =__stack_start // Get ourselves a fresh stack - location depends on CPU core asking
|
||||
lsl x1, x1, #9 // Multiple core_number by 512
|
||||
lsl x1, x1, #9 // Multiply core_number by 512
|
||||
add x3, x2, x1 // Add to the address
|
||||
mov sp, x3
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ _start:
|
|||
cbz x4, 1b
|
||||
|
||||
ldr x2, =__stack_start // Get ourselves a fresh stack - location depends on CPU core asking
|
||||
lsl x1, x1, #9 // Multiple core_number by 512
|
||||
lsl x1, x1, #9 // Multiply core_number by 512
|
||||
add x3, x2, x1 // Add to the address
|
||||
mov sp, x3
|
||||
|
||||
|
|
Loading…
Reference in a new issue