Changeset 4e1d008 in mainline for arch/mips/src/start.S
- Timestamp:
- 2005-05-08T15:13:43Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c4a5207f
- Parents:
- ca90d65
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/start.S
rca90d65 r4e1d008 45 45 kernel_image_start: 46 46 tlb_refill_entry: 47 48 47 j tlb_refill_handler 48 nop 49 49 50 50 .org 0x100 51 51 cache_error_entry: 52 53 52 j cache_error_handler 53 nop 54 54 55 55 .org 0x180 56 56 exception_entry: 57 57 exception_handler: 58 59 58 sub $29, STACK_SPACE 59 REGISTERS_STORE $29 60 60 61 62 61 jal exception 62 nop 63 63 64 65 64 REGISTERS_LOAD $29 65 add $29, STACK_SPACE 66 66 67 67 eret 68 68 69 69 tlb_refill_handler: 70 71 70 sub $29, STACK_SPACE 71 REGISTERS_STORE $29 72 72 73 74 73 jal tlb_refill 74 nop 75 75 76 77 76 REGISTERS_LOAD $29 77 add $29, STACK_SPACE 78 78 79 79 eret 80 80 81 81 cache_error_handler: 82 83 82 sub $29, STACK_SPACE 83 REGISTERS_STORE $29 84 84 85 86 85 jal cache_error 86 nop 87 87 88 89 88 REGISTERS_LOAD $29 89 add $29, STACK_SPACE 90 90 91 91 eret
Note:
See TracChangeset
for help on using the changeset viewer.