scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

crt.s (272B)


      1 	.file	"crt.s"
      2 
      3 	.section ".note.openbsd.ident", "a"
      4 	.p2align 2
      5 	.long	8
      6 	.long	4
      7 	.long	1
      8 	.ascii	"OpenBSD\0"
      9 	.long	0
     10 	.p2align 2
     11 
     12 	.text
     13 	.align	8
     14 	.global	_start
     15 _start:
     16 	call	main
     17 	movl    %eax, %edi
     18 	call	exit
     19 
     20 	.data
     21 	.global	__guard_local
     22 __guard_local:
     23 	.long	0