代码搜索结果
找到约 10,000 项符合
Interrupt 的代码
interrupt.c
/****************************************************************************/
/* Application note AN015 */
/* Reference design : CC1000 RF Modem
interrupt.c
/*********************************************************
Project: ST FST(TDA7540)
File name: interrupt.c
Description:
Write/Modify: Perry Liang
Time: 2006-1-24- 15:32:27
**************
interrupt.h
/*********************************************************
Project: ST FST(TDA7540)
File name: interrupt.h
Description:
Write/Modify: Perry Liang
Time: 2006-1-24- 15:32:45
**************
interrupt.__i
"片上资源管理\Interrupt.c" BROWSE DEBUG OBJECTEXTEND PRINT(.\Interrupt.lst) OBJECT(.\输出文件\Interrupt.obj)
interrupt.c
/*********************************************************************************************
文 件 名:
创 建 人:
创建日期:
组成部分:
描 述:
修 改 人:
修改日期:
修改内容:
*******************************************
interrupt.lst
C51 COMPILER V8.08 INTERRUPT 09/19/2008 21:25:28 PAGE 1
C51 COMPILER V8.08, COMPILATION OF MODULE INTERRUPT
OBJECT MODULE PLACED
interrupt.asm
[BITS 32]
;默认中断处理函数
[GLOBAL interrupt_asm_default_handle_for_interrupt]
[SECTION .text]
interrupt_asm_default_handle_for_interrupt:
;;告诉硬件,中断处理完毕,即发送 EOI 消息
mov al , 0x
interrupt.c
#include "interrupt.h"
#include "io.h"
/*************************************************
* 下面是本函数所要用到的东西的声明 *
*************************************************/
/* idt 表项结构 */
interrupt.h
#ifndef _PYOS_INTERRUPT_H_
#define _PYOS_INTERRUPT_H_
/* 中断初始化函数 */
void interrupt_init() ;
/* 开中断 */
void interrupt_open_interrupt() ;
/* 关中断 */
void interrupt_close_interrupt() ;
/*