Changeset 909c6e3 in mainline for arch/mips/src/start.S
- Timestamp:
- 2005-09-07T09:44:30Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d246e7e
- Parents:
- 24bd23a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/start.S
r24bd23a r909c6e3 32 32 #include <arch/mm/page.h> 33 33 #include <arch/asm/boot.h> 34 #include <arch/context .h>34 #include <arch/context_offset.h> 35 35 36 36 .text … … 56 56 sw $a2,EOFFSET_A2(\r) 57 57 sw $a3,EOFFSET_A3(\r) 58 sw $t0,EOFFSET_ A4(\r)58 sw $t0,EOFFSET_T0(\r) 59 59 sw $t1,EOFFSET_T1(\r) 60 60 sw $t2,EOFFSET_T2(\r) … … 87 87 mfc0 $at, $status 88 88 sw $at,EOFFSET_STATUS(\r) 89 mfc0 $at, $epc 90 sw $at,EOFFSET_EPC(\r) 89 91 .endm 90 92 … … 96 98 lw $a2,EOFFSET_A2(\r) 97 99 lw $a3,EOFFSET_A3(\r) 98 lw $t0,EOFFSET_ A4(\r)100 lw $t0,EOFFSET_T0(\r) 99 101 lw $t1,EOFFSET_T1(\r) 100 102 lw $t2,EOFFSET_T2(\r) … … 125 127 lw $at,EOFFSET_STATUS(\r) 126 128 mtc0 $at, $status 129 lw $at,EOFFSET_EPC(\r) 130 mtc0 $at, $epc 127 131 128 132 lw $at,EOFFSET_AT(\r) … … 192 196 add $sp, $k0, 0 193 197 194 jal exception 198 add $a0, $sp, 0 199 jal exception /* exception(register_space) */ 195 200 nop 196 201 … … 206 211 add $sp, $k0, 0 207 212 208 jal tlb_refill 213 add $a0, $sp, 0 214 jal tlb_refill /* tlb_refill(register_space) */ 209 215 nop 210 216
Note:
See TracChangeset
for help on using the changeset viewer.