|
Last change
on this file since 8624d1f was cb7be8f, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 4 years ago |
|
Update headers in .S files that incorrectly use #-style comments
|
-
Property mode
set to
100644
|
|
File size:
341 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * SPDX-FileCopyrightText: 2006 Jakub Jermar
|
|---|
| 3 | *
|
|---|
| 4 | * SPDX-License-Identifier: BSD-3-Clause
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | #include <abi/asmtool.h>
|
|---|
| 8 |
|
|---|
| 9 | .text
|
|---|
| 10 |
|
|---|
| 11 | ## User-space thread entry point for all but the first threads.
|
|---|
| 12 | #
|
|---|
| 13 | #
|
|---|
| 14 | SYMBOL(__thread_entry)
|
|---|
| 15 | #
|
|---|
| 16 | # Create the first stack frame.
|
|---|
| 17 | #
|
|---|
| 18 | mov fp, #0
|
|---|
| 19 | mov ip, sp
|
|---|
| 20 | push {fp, ip, lr, pc}
|
|---|
| 21 | sub fp, ip, #4
|
|---|
| 22 |
|
|---|
| 23 | b __thread_main
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.