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.
59 lines
479 B
ArmAsm
59 lines
479 B
ArmAsm
.text
|
|
; .org 0
|
|
|
|
.globl label1
|
|
.globl label2
|
|
.globl label3
|
|
.globl label4
|
|
.globl label5
|
|
.globl label6
|
|
|
|
djnz label1
|
|
|
|
jr label2
|
|
jr nz,label3
|
|
jr z,label4
|
|
jr nc,label5
|
|
jr c,label6
|
|
|
|
djnz .
|
|
jr .
|
|
jr nz,.
|
|
jr z,.
|
|
jr nc,.
|
|
jr c,.
|
|
|
|
.Ll1:
|
|
djnz .Ll1
|
|
.Ll2:
|
|
jr .Ll2
|
|
.Ll3:
|
|
jr nz,.Ll3
|
|
.Ll4:
|
|
jr z,.Ll4
|
|
.Ll5:
|
|
jr nc,.Ll5
|
|
.Ll6:
|
|
jr c,.Ll6
|
|
|
|
djnz .Lf1
|
|
jr .Lf2
|
|
jr nz,.Lf3
|
|
jr z,.Lf4
|
|
jr nc,.Lf5
|
|
jr c,.Lf6
|
|
|
|
.Lf1:
|
|
ret
|
|
.Lf2:
|
|
ret
|
|
.Lf3:
|
|
ret
|
|
.Lf4:
|
|
ret
|
|
.Lf5:
|
|
ret
|
|
.Lf6:
|
|
ret
|
|
.end
|