Changeset 4e1d008 in mainline for arch/mips/src/start.S


Ignore:
Timestamp:
2005-05-08T15:13:43Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c4a5207f
Parents:
ca90d65
Message:

Big indentation update.

Add Jakub Vana to AUTHORS.

Minor fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/src/start.S

    rca90d65 r4e1d008  
    4545kernel_image_start:
    4646tlb_refill_entry:
    47     j tlb_refill_handler
    48     nop
     47        j tlb_refill_handler
     48        nop
    4949
    5050.org 0x100
    5151cache_error_entry:
    52     j cache_error_handler
    53     nop
     52        j cache_error_handler
     53        nop
    5454   
    5555.org 0x180
    5656exception_entry:
    5757exception_handler:
    58     sub $29, STACK_SPACE
    59     REGISTERS_STORE $29
     58        sub $29, STACK_SPACE
     59        REGISTERS_STORE $29
    6060   
    61     jal exception
    62     nop
     61        jal exception
     62        nop
    6363   
    64     REGISTERS_LOAD $29
    65     add $29, STACK_SPACE
     64        REGISTERS_LOAD $29
     65        add $29, STACK_SPACE
    6666
    67     eret
     67        eret
    6868
    6969tlb_refill_handler:
    70     sub $29, STACK_SPACE
    71     REGISTERS_STORE $29
     70        sub $29, STACK_SPACE
     71        REGISTERS_STORE $29
    7272   
    73     jal tlb_refill
    74     nop
     73        jal tlb_refill
     74        nop
    7575   
    76     REGISTERS_LOAD $29
    77     add $29, STACK_SPACE
     76        REGISTERS_LOAD $29
     77        add $29, STACK_SPACE
    7878   
    79     eret
     79        eret
    8080
    8181cache_error_handler:
    82     sub $29, STACK_SPACE
    83     REGISTERS_STORE $29
     82        sub $29, STACK_SPACE
     83        REGISTERS_STORE $29
    8484
    85     jal cache_error
    86     nop
     85        jal cache_error
     86        nop
    8787   
    88     REGISTERS_LOAD $29
    89     add $29, STACK_SPACE
     88        REGISTERS_LOAD $29
     89        add $29, STACK_SPACE
    9090
    91     eret
     91        eret
Note: See TracChangeset for help on using the changeset viewer.