代码搜索结果
找到约 10,000 项符合
Interrupt 的代码
interrupt.txt
CODE SEGMENT
ASSUME CS: CODE
NEW_INT: ;接收字符的中断处理程序
STI ;CPU开中断
MOV DX , 3F8H ;接收字符
interrupt.cc
// interrupt.cc
// Routines to simulate hardware interrupts.
//
// The hardware provides a routine (SetLevel) to enable or disable
// interrupts.
//
// In order to emulate the hardware, we need to ke
interrupt.h
// interrupt.h
// Data structures to emulate low-level interrupt hardware.
//
// The hardware provides a routine (SetLevel) to enable or disable
// interrupts.
//
// In order to emulate the hardware,
interrupt.c
#include "lprps.h"
static void
sig_int(int signo) /* SIGINT handler */
{
intr_flag = 1;
return;
}
/* This function is called after SIGINT has been delivered,
* and the main loop has recognized i
interrupt.c
#include "lpc21xx.h"
#define LIGHT 0x10000
extern float chargequantity;
void __irq IRQ_Exception()
{
// if( (IO1SET&LIGHT) == 0 ) // 北
interrupt.c
#define INTERRUPT_C
#include
#include "FIR_Filter.h"
#include "firLPF200.h"
#include "firLPF1500.h"
#include "firLPF3000.h"
#include "firBPF.h"
#include "interrupt.h"
#include "sw
interrupt.h
#ifndef INTERRUPT_H
#define INTERRUPT_H
#ifdef INTERRUPT_C
#define EXTERN
#else
#define EXTERN extern
#endif
EXTERN void interrupt_init(void);
EXTERN unsigned char SPI_tx_complete;
EXTERN