ff4ff35918
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.
25 lines
392 B
ArmAsm
25 lines
392 B
ArmAsm
.text
|
|
|
|
.globl start_of_text
|
|
start_of_text:
|
|
.type start_of_text, "function"
|
|
.long 1
|
|
.size start_of_text, . - start_of_text
|
|
|
|
.globl func
|
|
func:
|
|
.type func, "function"
|
|
.long 2
|
|
.global global_non_func_sym
|
|
global_non_func_sym:
|
|
.long 3
|
|
local_non_func_sym:
|
|
.long 4
|
|
.size func, . - func
|
|
|
|
.globl next_func
|
|
next_func:
|
|
.type next_func, "function"
|
|
.long 5
|
|
.size next_func, . - next_func
|