3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/arch/riscv/boot/loader.lds.S
Scare Crowe 53f3b81e5a T3Q is a slut
Fuck him
2021-10-02 21:09:28 +05:00

18 lines
206 B
ArmAsm

/* SPDX-License-Identifier: GPL-2.0 */
#include <asm/page.h>
#include <asm/pgtable.h>
OUTPUT_ARCH(riscv)
ENTRY(_start)
SECTIONS
{
. = KERNEL_LINK_ADDR;
.payload : {
*(.payload)
. = ALIGN(8);
}
}