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.
38 lines
404 B
ArmAsm
38 lines
404 B
ArmAsm
.text
|
|
.global _start
|
|
_start:
|
|
1:
|
|
bl far
|
|
nop
|
|
bl far2far
|
|
nop
|
|
bl huge
|
|
nop
|
|
.long 0
|
|
b 1b
|
|
.space 0x1bf0000
|
|
|
|
.section .text.pad1,"ax"
|
|
.space 0x1bf0000
|
|
|
|
.section .text.far,"ax"
|
|
.globl far
|
|
far:
|
|
blr
|
|
|
|
.section .text.pad2,"ax"
|
|
.space 0x40fff0
|
|
|
|
.section .text.far2far,"ax"
|
|
.globl far2far
|
|
far2far:
|
|
blr
|
|
|
|
.section .text.pad3,"ax"
|
|
.space 0x1bf0000
|
|
|
|
.section .text.huge,"ax"
|
|
.globl huge
|
|
huge:
|
|
blr
|