Changeset bae7bdc in mainline for uspace/lib/c/arch/mips32
- Timestamp:
- 2011-04-29T19:44:51Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fcfd002
- Parents:
- afdcc60e
- Location:
- uspace/lib/c/arch/mips32
- Files:
-
- 1 edited
- 1 moved
-
Makefile.inc (modified) (1 diff)
-
src/entryjmp.s (moved) (moved from uspace/srv/loader/arch/mips32/mips32.s ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/mips32/Makefile.inc
rafdcc60e rbae7bdc 29 29 ARCH_SOURCES = \ 30 30 arch/$(UARCH)/src/entry.s \ 31 arch/$(UARCH)/src/entryjmp.s \ 31 32 arch/$(UARCH)/src/thread_entry.s \ 32 33 arch/$(UARCH)/src/syscall.c \ -
uspace/lib/c/arch/mips32/src/entryjmp.s
rafdcc60e rbae7bdc 29 29 .text 30 30 .section .text 31 .global program_run31 .global entry_point_jmp 32 32 .set noreorder 33 33 34 ## void program_run(void *entry_point, void *pcb);34 ## void entry_point_jmp(void *entry_point, void *pcb); 35 35 # 36 36 # $a0 (=$4) contains entry_point 37 37 # $a1 (=$5) contains pcb 38 38 # 39 # Jump to aprogram entry point40 .ent program_run41 program_run:39 # Jump to program entry point 40 .ent entry_point_jmp 41 entry_point_jmp: 42 42 # tmp := entry_point 43 43 move $25, $a0
Note:
See TracChangeset
for help on using the changeset viewer.
