Changeset 4e1d008 in mainline for arch/mips/src
- Timestamp:
- 2005-05-08T15:13:43Z (21 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c4a5207f
- Parents:
- ca90d65
- Location:
- arch/mips/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/asm.s
rca90d65 r4e1d008 30 30 31 31 .macro cp0_read reg 32 mfc0 $2,\reg33 j $3134 nop32 mfc0 $2,\reg 33 j $31 34 nop 35 35 .endm 36 36 37 37 .macro cp0_write reg 38 mtc0 $4,\reg39 j $3140 nop38 mtc0 $4,\reg 39 j $31 40 nop 41 41 .endm 42 42 -
arch/mips/src/fake.s
rca90d65 r4e1d008 39 39 calibrate_delay_loop: 40 40 asm_delay_loop: 41 j $3142 nop41 j $31 42 nop -
arch/mips/src/start.S
rca90d65 r4e1d008 45 45 kernel_image_start: 46 46 tlb_refill_entry: 47 j tlb_refill_handler48 nop47 j tlb_refill_handler 48 nop 49 49 50 50 .org 0x100 51 51 cache_error_entry: 52 j cache_error_handler53 nop52 j cache_error_handler 53 nop 54 54 55 55 .org 0x180 56 56 exception_entry: 57 57 exception_handler: 58 sub $29, STACK_SPACE59 REGISTERS_STORE $2958 sub $29, STACK_SPACE 59 REGISTERS_STORE $29 60 60 61 jal exception62 nop61 jal exception 62 nop 63 63 64 REGISTERS_LOAD $2965 add $29, STACK_SPACE64 REGISTERS_LOAD $29 65 add $29, STACK_SPACE 66 66 67 eret67 eret 68 68 69 69 tlb_refill_handler: 70 sub $29, STACK_SPACE71 REGISTERS_STORE $2970 sub $29, STACK_SPACE 71 REGISTERS_STORE $29 72 72 73 jal tlb_refill74 nop73 jal tlb_refill 74 nop 75 75 76 REGISTERS_LOAD $2977 add $29, STACK_SPACE76 REGISTERS_LOAD $29 77 add $29, STACK_SPACE 78 78 79 eret79 eret 80 80 81 81 cache_error_handler: 82 sub $29, STACK_SPACE83 REGISTERS_STORE $2982 sub $29, STACK_SPACE 83 REGISTERS_STORE $29 84 84 85 jal cache_error86 nop85 jal cache_error 86 nop 87 87 88 REGISTERS_LOAD $2989 add $29, STACK_SPACE88 REGISTERS_LOAD $29 89 add $29, STACK_SPACE 90 90 91 eret91 eret
Note:
See TracChangeset
for help on using the changeset viewer.
