Changeset 32573ff in mainline for boot/arch/mips32/src/asm.S


Ignore:
Timestamp:
2016-05-02T20:58:16Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7c4b26c
Parents:
6adb775f (diff), 5035ba05 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline, which has dltest and fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/mips32/src/asm.S

    r6adb775f r32573ff  
    2727#
    2828
     29#include <abi/asmtool.h>
    2930#include <arch/arch.h>
    3031#include <arch/regname.h>
     
    3435.set nomacro
    3536
    36 .global start
    37 .global halt
    38 .global jump_to_kernel
    39 
    4037.section BOOTSTRAP
    4138
    42 start:
     39SYMBOL(start)
    4340        /*
    4441         * Setup the CP0 configuration
     
    145142.text
    146143
    147 halt:
     144FUNCTION_BEGIN(halt)
    148145        j halt
    149146        nop
     147FUNCTION_END(halt)
    150148
    151 jump_to_kernel:
     149FUNCTION_BEGIN(jump_to_kernel)
    152150        /*
    153151         * TODO:
     
    158156        j $a0
    159157        nop
     158FUNCTION_END(jump_to_kernel)
Note: See TracChangeset for help on using the changeset viewer.