代码搜索:interrupt
找到约 10,000 项符合「interrupt」的源代码
代码结果 10,000
www.eeworm.com/read/380406/9150568
lst interrupt.lst
C51 COMPILER V7.50 INTERRUPT 11/24/2008 09:12:34 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE INTERRUPT
OBJECT MODULE PLACED
www.eeworm.com/read/379711/9181969
h interrupt.h
/* interrupt.h */
#ifndef _LINUX_INTERRUPT_H
#define _LINUX_INTERRUPT_H
struct bh_struct {
void (*routine)(void *);
void *data;
};
extern unsigned long bh_active;
extern unsigned long bh
www.eeworm.com/read/182076/9218884
h interrupt.h
//实时中断历程
#pragma CODE_SEG __NEAR_SEG NON_BANKED
interrupt void IRQ_ISR(void)
{
static uchar i = 0;
i++;
if(i < 10)
USB_LED_ON;
else if(i < 20)
{
USB_LED_OFF;
}
else
i = 0
www.eeworm.com/read/378233/9240022
c interrupt.c
#include "s3c24xx.h"
//extern void I2CIntHandle(void);
void (*isr_handle_array[50])(void);
void Dummy_isr(void)
{
while(1);
}
void init_irq(void)
{
int i = 0;
for (i = 0; i < sizeof(is
www.eeworm.com/read/378224/9240580
c interrupt.c
#include
#include "s3c24xx.h"
extern void I2CIntHandle(void);
void (*isr_handle_array[50])(void);
void Dummy_isr(void)
{
printf("Dummy_isr\n\r");
while(1);
}
void init_irq(void)
www.eeworm.com/read/377683/9266151
test interrupt.test
# 2004 Feb 8
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yourself
www.eeworm.com/read/377523/9273054
java interrupt.java
//: c14:Interrupt.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// The alternative approach to using
// stop() when a threa
www.eeworm.com/read/375987/9340522
h interrupt.h
/**********************************************************************************************
Interrupt.h file
作者:lig
建立日期:2006-4-25
修改日期:2006-4-25
版本:V1.0
**************************