You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
333 B
19 lines
333 B
/* |
|
* Copyright (c) 2021 Antony Pavlov <antonynpavlov@gmail.com> |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <zephyr/toolchain.h> |
|
#include <mips/regdef.h> |
|
|
|
/* Imports */ |
|
GTEXT(__initialize) |
|
|
|
/* Exports */ |
|
GTEXT(__start) |
|
|
|
SECTION_FUNC(vectors, __start) |
|
/* Call into Zephyr initialization. */ |
|
la v0, __initialize |
|
jal v0
|
|
|