/[osn-commons]/trunk/uar/selfext_entry.s
ViewVC logotype

Annotation of /trunk/uar/selfext_entry.s

Parent Directory Parent Directory | Revision Log Revision Log


Revision 57 - (hide annotations)
Sat Sep 7 15:02:56 2024 UTC (6 months, 3 weeks ago) by rakinar2
File MIME type: text/x-asm
File size: 743 byte(s)
chore: update files

1 rakinar2 50 .section .data
2    
3     .globl __uar_data_start
4     .globl __uar_data_end
5     .globl __uar_data_size
6    
7     __uar_data_start:
8     .incbin "test-archive.uar"
9     __uar_data_end:
10     .byte 0x00
11     __uar_data_size:
12     .quad __uar_data_end - __uar_data_start
13    
14     .text
15    
16     .globl main
17     .type main, @function
18     main:
19     call uar_init
20     call uar_main
21     push %rax
22     call uar_deinit
23     pop %rax
24     ret
25    
26     .globl uar_get_data_start
27     .type uar_get_data_start, @function
28    
29     uar_get_data_start:
30     lea __uar_data_start(%rip), %rax
31     ret
32    
33     .globl _start
34     _start:
35     call plibc_init
36     mov $0, %rdi
37     mov %rsp, %rsi
38     mov $0, %rdx
39     call main
40     push %rax
41 rakinar2 57 call _plibc_call_exit_handlers
42 rakinar2 50 call plibc_deinit
43     pop %rdi
44 rakinar2 57 call _exit
45 rakinar2 50
46     .section .note.GNU-stack,"",@progbits

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26