Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3131 → Rev 3132

/branches/dynload/uspace/app/iloader/arch/mips32/mips32.s
26,10 → 26,17
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
 
.globl program_run
.text
.section .text
.global program_run
.set noreorder
 
## void program_run(uintptr_t entry_point);
#
# Jump to a program entry point
.ent program_run
program_run:
j $4
move $25, $4
jr $25
nop
.end