代码搜索:中断处理
找到约 10,000 项符合「中断处理」的源代码
代码结果 10,000
www.eeworm.com/read/442514/7650146
dsn 中断产生音乐.dsn
www.eeworm.com/read/440764/7681869
m51 中断.m51
BL51 BANKED LINKER/LOCATER V5.03 04/14/2008 11:59:59 PAGE 1
BL51 BANKED LINKER/LOCATER V5.03, INVOKED BY:
C:\KEIL\C51\BIN\BL51.EXE 中断.obj
www.eeworm.com/read/440764/7681873
uv2 中断.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
Options 1,0,0 // Target 'Ta
www.eeworm.com/read/295934/8132505
asm 外部中断实验.asm
;
ORG 0000H
AJMP START
ORG 0003H ;外部中断地直入口
AJMP INTO
ORG 30H
START: MOV SP,#5FH
MOV P0,#0FFH ;灯全灭
MOV P3,#0FFH ;P3口置高电平
SETB EA
SETB EX0
AJMP $
www.eeworm.com/read/245744/12782559
c baseimer中断测试.c
#include
void y()
{
unsigned long tmp;
for(tmp=70;tmp>0;tmp--);
}
void init_BT(void)
{
BTCTL = 0x06; //
www.eeworm.com/read/245744/12782563
c timea中断测试.c
#include
void y()
{
unsigned long tmp;
for(tmp=750;tmp>0;tmp--);
}
void Init_Timer_A(void)
{
www.eeworm.com/read/245744/12782568
c p口中断.c
//在p1.3电压上升时候,激活中断程序,因在p1.3有外部模块提供0.2v的电压,当接地时后,电压降低,不激活
//当接地撤消后,电压上升,中断程序激活 当P1IES=0x08时;情况反之
//注意:P1IES如果不给它赋值,则默认为上次调试时的值。
#include
void y()
{
unsigned long tmp;
www.eeworm.com/read/245020/12826336
doc 实验三 中断.doc
www.eeworm.com/read/141486/13009323
asm 中断陷阱技术.asm
ORG 0000H
LJMP MAIN
ORG 0003H
LJMP PGINT0
NOP
NOP
LJMP ERR
ORG 000BH
LJMP PGT0
NOP
NOP
LJMP ERR
O
www.eeworm.com/read/140688/13067435
txt 中断服务程序.txt
Interrupt Service Routine (ISR)
.title “Interrupt Service Routine”
.mmregs
int1:
CONTEXT_STORE ; push the contents of accumulators and registers on stack
STM #K_INT0,IMR ; Unmask only INT0~
R