Files
RedBear-OS/recipes/tools/gnu-binutils/source/ld/testsuite/ld-riscv-elf/relax-max-align-gp.s
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

29 lines
325 B
ArmAsm

.global _start
_start:
lui a0, %hi(gdata)
addi a0, a0, %lo(gdata)
call func
j .
.size _start, . - _start
.global func
.align 7
func:
ret
.size func, . - func
.data
padding:
.long 0
.long 0
.long 0
.long 0
.size padding, . - padding
.global gdata
.type gdata, object
gdata:
.zero 4
.size gdata, . - gdata