Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/exception.S

    rb66cc97 r8c7d5ad  
    2727#
    2828
    29 #include <abi/asmtool.h>
    3029#include <arch/asm/regname.h>
    3130#include <arch/msr.h>
     
    127126
    128127.org 0x100
    129 SYMBOL(exc_system_reset)
     128.global exc_system_reset
     129exc_system_reset:
    130130        CONTEXT_STORE
    131131       
     
    134134
    135135.org 0x200
    136 SYMBOL(exc_machine_check)
     136.global exc_machine_check
     137exc_machine_check:
    137138        CONTEXT_STORE
    138139       
     
    141142
    142143.org 0x300
    143 SYMBOL(exc_data_storage)
     144.global exc_data_storage
     145exc_data_storage:
    144146        CONTEXT_STORE
    145147       
     
    148150
    149151.org 0x400
    150 SYMBOL(exc_instruction_storage)
     152.global exc_instruction_storage
     153exc_instruction_storage:
    151154        CONTEXT_STORE
    152155       
     
    155158
    156159.org 0x500
    157 SYMBOL(exc_external)
     160.global exc_external
     161exc_external:
    158162        CONTEXT_STORE
    159163       
     
    162166
    163167.org 0x600
    164 SYMBOL(exc_alignment)
     168.global exc_alignment
     169exc_alignment:
    165170        CONTEXT_STORE
    166171       
     
    169174
    170175.org 0x700
    171 SYMBOL(exc_program)
     176.global exc_program
     177exc_program:
    172178        CONTEXT_STORE
    173179       
     
    176182
    177183.org 0x800
    178 SYMBOL(exc_fp_unavailable)
     184.global exc_fp_unavailable
     185exc_fp_unavailable:
    179186        CONTEXT_STORE
    180187       
     
    183190
    184191.org 0x900
    185 SYMBOL(exc_decrementer)
     192.global exc_decrementer
     193exc_decrementer:
    186194        CONTEXT_STORE
    187195       
     
    190198
    191199.org 0xa00
    192 SYMBOL(exc_reserved0)
     200.global exc_reserved0
     201exc_reserved0:
    193202        CONTEXT_STORE
    194203       
     
    197206
    198207.org 0xb00
    199 SYMBOL(exc_reserved1)
     208.global exc_reserved1
     209exc_reserved1:
    200210        CONTEXT_STORE
    201211       
     
    204214
    205215.org 0xc00
    206 SYMBOL(exc_syscall)
     216.global exc_syscall
     217exc_syscall:
    207218        CONTEXT_STORE
    208219       
     
    210221
    211222.org 0xd00
    212 SYMBOL(exc_trace)
     223.global exc_trace
     224exc_trace:
    213225        CONTEXT_STORE
    214226       
     
    217229
    218230.org 0x1000
    219 SYMBOL(exc_itlb_miss)
     231.global exc_itlb_miss
     232exc_itlb_miss:
    220233        CONTEXT_STORE
    221234       
     
    224237
    225238.org 0x1100
    226 SYMBOL(exc_dtlb_miss_load)
     239.global exc_dtlb_miss_load
     240exc_dtlb_miss_load:
    227241        CONTEXT_STORE
    228242       
     
    231245
    232246.org 0x1200
    233 SYMBOL(exc_dtlb_miss_store)
     247.global exc_dtlb_miss_store
     248exc_dtlb_miss_store:
    234249        CONTEXT_STORE
    235250       
Note: See TracChangeset for help on using the changeset viewer.