source:
trunk/debathena/debathena/ldso1-stub/ld-linux-1.asm
@
25863
Revision 25863, 356 bytes checked in by jdreed, 11 years ago (diff) |
---|
Line | |
---|---|
1 | section .text |
2 | global _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 | |
16 | section .data |
17 | |
18 | msg db 'ERROR: The program you are trying to run is too old for this system.',0xa,' (libc5 not available)',0xa |
19 | len equ $ - msg |
Note: See TracBrowser
for help on using the repository browser.