Files
RedBear-OS/recipes/tools/gnu-binutils/source/binutils/testsuite/binutils-all/disasm.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

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