Changeset 4b2c872d in mainline for arch/mips32
- Timestamp:
- 2005-10-18T09:33:02Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8005218
- Parents:
- 22f7769
- Location:
- arch/mips32
- Files:
-
- 2 edited
-
include/context.h (modified) (1 diff)
-
src/context.S (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/include/context.h
r22f7769 r4b2c872d 49 49 */ 50 50 struct context { 51 __ u32sp;52 __ u32pc;51 __address sp; 52 __address pc; 53 53 54 54 __u32 s0; -
arch/mips32/src/context.S
r22f7769 r4b2c872d 37 37 .set nomacro 38 38 39 .global context_save 40 .global context_restore 39 .global context_save_arch 40 .global context_restore_arch 41 41 42 42 .macro CONTEXT_STORE r … … 73 73 74 74 75 context_save :75 context_save_arch: 76 76 CONTEXT_STORE $a0 77 77 … … 80 80 li $2, 1 81 81 82 context_restore :82 context_restore_arch: 83 83 CONTEXT_LOAD $a0 84 84
Note:
See TracChangeset
for help on using the changeset viewer.
