代码搜索结果

找到约 10,000 项符合 S 的代码

subrout.s

# AREA subrout, CODE, READONLY ; name this block of code # ENTRY ; mark first instruction # ; to execute .text start:

ldrlabel.s

# AREA LDRlabel, CODE,READONLY # ENTRY ; Mark first instruction .text start: BL func1 /* Branch to first subroutine */

tblock.s

# AREA Tblock, CODE, READONLY ; name this block of code .text .equ num, 20 /* Set number of words to be copied */ # ENTRY /* mark first instr

armex.s

# AREA ARMex, CODE, READONLY ; name this block of code # ENTRY ; mark first instruction /* to execute */ .text start:

loadcon.s

# AREA Loadcon, CODE, READONLY # ENTRY ; Mark first instruction .text start: BL func1 /* Branch to first subroutine */

scopy.s

# AREA SCopy, CODE, READONLY .text .global strcopy strcopy: /* r0 points to destination string r1 points to source string */ LDRB

jump.s

# AREA Jump, CODE, READONLY ; name this block of code .text .equ num, 2 /* Number of entries in jump table */ # ENTRY /* mark the first inst

page.s

/* * linux/mm/page.s * * (C) 1991 Linus Torvalds */ /* * page.s contains the low-level page-exception code. * the real work is done in mm.c */ .globl _page_fault _page_fault: xchgl %eax,

setup.s

! ! <mark>s</mark>etup.<mark>s</mark> (C) 1991 Linu<mark>s</mark> Torvald<mark>s</mark> ! ! <mark>s</mark>etup.<mark>s</mark> i<mark>s</mark> re<mark>s</mark>pon<mark>s</mark>ible for getting the <mark>s</mark>y<mark>s</mark>tem data from the BIO<mark>S</mark>, ! and putting them into the appropriate place<mark>s</mark> in <mark>s</mark>y<mark>s</mark>tem memory. ! both <mark>s</mark>etup.<mark>s ...

head.s

/* * linux/boot/head.s * * (C) 1991 Linus Torvalds */ /* * head.s contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00000000, which is also where * the p