entry-macro.s

来自「linux 内核源代码」· S 代码 · 共 29 行

S
29
字号
/* * include/asm-arm/arch-ns9xxx/entry-macro.S * * Copyright (C) 2006 by Digi International Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. */#include <asm/hardware.h>#include <asm/arch-ns9xxx/regs-sys.h>		.macro	get_irqnr_preamble, base, tmp		.endm		.macro	arch_ret_to_user, tmp1, tmp2		.endm		.macro	get_irqnr_and_base, irqnr, irqstat, base, tmp		ldr	\base, =SYS_ISRADDR		ldr	\irqstat, [\base, #(SYS_ISA - SYS_ISRADDR)]		cmp	\irqstat, #0		ldrne	\irqnr, [\base]		.endm		.macro	disable_fiq		.endm

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?