scc

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

crt.s (89B)


      1 	.file	"crt.s"
      2 
      3 	.text
      4 	.global	_start
      5 _start:
      6 	call	main
      7 	movl    %eax, %edi
      8 	call	exit