代码搜索结果
找到约 10,000 项符合
Interrupt 的代码
interrupt.c
/****************************************************************************/
/* */
/* Reference design : CC1020 RF Modem
interrupt.txt
CODE SEGMENT
ASSUME CS: CODE
NEW_INT: ;接收字符的中断处理程序
STI ;CPU开中断
MOV DX , 3F8H ;接收字符
interrupt.c
/****************************************Copyright (c)**************************************************
** 广州微嵌计算机科技有限公司
**
** http://
interrupt.h
#ifndef _INTERRUPT_H
#define _INTERRUPT_H
void Interrupt_Init(void);
#endif
interrupt.cpp
#include "AvrCalendar.h"
#include "EEprom.h"
#include "Ring.h"
//#include
extern CAvrCalendar AvrCalendar;
//TC2, 64Hz
//ISR(TIMER2_COMP_vect)
#ifdef __ICCAVR__
#pragma vec
interrupt.asm
SECOND EQU 30H
COUNT EQU 31H
ORG 00H
LJMP START
ORG 0BH ;定时器0中断入口
LJMP INT_T0
START: MOV SECOND,#00H
MOV COUNT,#00H
MOV DPTR,#TABLE ;段码表首地址
MOV P0,#3FH
interrupt.lst
A51 MACRO ASSEMBLER INTERRUPT 07/02/2006 20:44:03 PAGE 1
MACRO ASSEMBLER A51 V8.00
OBJECT MODULE PLACED IN Interrupt.OBJ
ASSEMBLE
interrupt.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed thi