source: trunk/debathena/debathena/ldso1-stub/ld-linux-1.asm @ 25863

Revision 25863, 356 bytes checked in by jdreed, 11 years ago (diff)
No trailing NUL
Line 
1section     .text
2global      _start
3
4_start:
5
6    mov     edx,len
7    mov     ecx,msg
8    mov     ebx,2
9    mov     eax,4
10    int     0x80
11
12    mov     ebx,1
13    mov     eax,1
14    int     0x80
15
16section     .data
17
18msg     db  'ERROR: The program you are trying to run is too old for this system.',0xa,'       (libc5 not available)',0xa
19len     equ $ - msg
Note: See TracBrowser for help on using the repository browser.