From: <cap...@us...> - 2007-04-13 16:55:17
|
Revision: 41 http://svn.sourceforge.net/pearcolator/?rev=41&view=rev Author: captain5050 Date: 2007-04-13 09:55:18 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Simple x86 test Added Paths: ----------- tests/ tests/simple/ tests/simple/x86/ tests/simple/x86/x86_exit tests/simple/x86/x86_exit.s Added: tests/simple/x86/x86_exit =================================================================== (Binary files differ) Property changes on: tests/simple/x86/x86_exit ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/octet-stream Added: tests/simple/x86/x86_exit.s =================================================================== --- tests/simple/x86/x86_exit.s (rev 0) +++ tests/simple/x86/x86_exit.s 2007-04-13 16:55:18 UTC (rev 41) @@ -0,0 +1,5 @@ +.text +.global _start +_start: + mov $1, %eax + int $0x80 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |