From: <cap...@us...> - 2007-04-13 17:53:25
|
Revision: 45 http://svn.sourceforge.net/pearcolator/?rev=45&view=rev Author: captain5050 Date: 2007-04-13 10:53:27 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Organize naming a little better Added Paths: ----------- tests/simple/ppc/syscall_exit tests/simple/ppc/syscall_exit.s tests/simple/x86/syscall_exit tests/simple/x86/syscall_exit.s Removed Paths: ------------- tests/simple/ppc/ppc_exit tests/simple/ppc/ppc_exit.s tests/simple/x86/x86_exit tests/simple/x86/x86_exit.s Deleted: tests/simple/ppc/ppc_exit =================================================================== (Binary files differ) Deleted: tests/simple/ppc/ppc_exit.s =================================================================== --- tests/simple/ppc/ppc_exit.s 2007-04-13 17:50:21 UTC (rev 44) +++ tests/simple/ppc/ppc_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -1,5 +0,0 @@ -.text -.global _start -_start: - li 0,1 - sc Copied: tests/simple/ppc/syscall_exit (from rev 42, tests/simple/ppc/ppc_exit) =================================================================== (Binary files differ) Copied: tests/simple/ppc/syscall_exit.s (from rev 42, tests/simple/ppc/ppc_exit.s) =================================================================== --- tests/simple/ppc/syscall_exit.s (rev 0) +++ tests/simple/ppc/syscall_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -0,0 +1,5 @@ +.text +.global _start +_start: + li 0,1 + sc Copied: tests/simple/x86/syscall_exit (from rev 41, tests/simple/x86/x86_exit) =================================================================== (Binary files differ) Copied: tests/simple/x86/syscall_exit.s (from rev 41, tests/simple/x86/x86_exit.s) =================================================================== --- tests/simple/x86/syscall_exit.s (rev 0) +++ tests/simple/x86/syscall_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -0,0 +1,5 @@ +.text +.global _start +_start: + mov $1, %eax + int $0x80 Deleted: tests/simple/x86/x86_exit =================================================================== (Binary files differ) Deleted: tests/simple/x86/x86_exit.s =================================================================== --- tests/simple/x86/x86_exit.s 2007-04-13 17:50:21 UTC (rev 44) +++ tests/simple/x86/x86_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -1,5 +0,0 @@ -.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. |