代码搜索结果

找到约 62,480 项符合 Interrupt 的代码

interrupt.lst

C51 COMPILER V7.10 INTERRUPT 04/23/2007 23:22:59 PAGE 1 C51 COMPILER V7.10, COMPILATION OF MODULE INTERRUPT OBJECT MODULE PLACED

interrupt.java

//: c13:Interrupt.java // Using interrupt() to break out of a blocked thread. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt.

dm6430-digital-interrupt.c

/* FILE NAME: dm6430-digital-interrupt.c FILE DESCRIPTION: Example program showing how to use advanced digital interrupts. PROJECT NAME: Linux DM6430 Driver, Library, and Example Programs P

interrupt.h

#ifndef _INTERRUPT_H_ #define _INTERRUPT_H_ #include "sub_fuc.h" interrupt void c_t_int() { int flag; flag = * EVAIFRA&0x0080; if(flag!= 0x0080) { asm(" CLRC INTM"); /*返回前开中断

interrupt.c

//***************************************************************************** // // interrupt.c - Driver for the NVIC Interrupt Controller. // // Copyright (c) 2005,2006 Luminary Micro, Inc. Al

interrupt.cpp

#include "interrupt.h" #pragma vector=TIMERA0_VECTOR //定时器A0中断向量 __interrupt void Timer_A (void) //中断函数 { Timer.CountA ++; if (Timer.CountA == 10) { P1OUT_bit.

interrupt.c

#include #include #include #include "eintdrv.h" static int fd = -1; /* * interrupt application code * compile : * $/usr/local/arm/2.95.3/bin/ar

interrupt.c

#include "hos.h" unsigned long get_current_eflags(void); static void dummy_interrupt_handler() { printk("[kernel]Not implemented interrupt\n"); //dump_interrupt_state(state); STOP(); } /* ====

interrupt.c

#include "hos.h" unsigned long get_current_eflags(void); void do_dummy_interrupt_handler(struct pt_regs *regs) { printk("[kernel]Not implemented interrupt\n"); display_regs(regs); //dump_i

interrupt.h

#include "main.h" #ifndef __DSP5402_INTERRUPT_H #define __DSP5402_INTERRUPT_H #ifdef __cplusplus extern "C" { #endif //在此添加C++代码 extern "C" interrupt void Timer0Isr(); #ifdef __cplusplu