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
380 B
ArmAsm
25 lines
380 B
ArmAsm
.data
|
|
foo:
|
|
.byte 0
|
|
.byte data1-foo
|
|
.word data1-foo
|
|
.long data1-foo
|
|
.long text1
|
|
.long text2
|
|
.word abs1
|
|
.word abs1+0x10
|
|
.text
|
|
bar:
|
|
nop
|
|
brr tr,text1
|
|
moviq r2,text1-bar+8
|
|
movil r2,%l text2-bar+16
|
|
moviu r2,%u text2-bar+16
|
|
moviq r2,%u text2
|
|
subi r2,%l text2
|
|
addi r2,%u text2
|
|
movil r2, text2 ; with movil, the %l may be omitted
|
|
moviu r2,%u text2
|
|
moviq r2,abs1
|
|
.end
|