Started implementing dm_start.c
This commit is contained in:
parent
464e969389
commit
96df9b4710
|
@ -0,0 +1,15 @@
|
||||||
|
/****************************************************************
|
||||||
|
* *
|
||||||
|
* Copyright 2001, 2009 Fidelity Information Services, Inc *
|
||||||
|
* *
|
||||||
|
* This source code contains the intellectual property *
|
||||||
|
* of its copyright holder(s), and is made available *
|
||||||
|
* under a license. If you do not know the terms of *
|
||||||
|
* the license, please stop and do not read further. *
|
||||||
|
* *
|
||||||
|
****************************************************************/
|
||||||
|
|
||||||
|
int dm_start(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -16,7 +16,7 @@
|
||||||
.align 2
|
.align 2
|
||||||
.global dm_start
|
.global dm_start
|
||||||
.type dm_start, %function
|
.type dm_start, %function
|
||||||
dm_start:
|
dm_start_arm:
|
||||||
@ args = 0, pretend = 0, frame = 0
|
@ args = 0, pretend = 0, frame = 0
|
||||||
@ frame_needed = 1, uses_anonymous_args = 0
|
@ frame_needed = 1, uses_anonymous_args = 0
|
||||||
@ link register save eliminated.
|
@ link register save eliminated.
|
||||||
|
|
Loading…
Reference in New Issue