文件名称:中断测试程序-河南省第十一届acm程序设计大赛榜单
文件大小:5.61MB
文件格式:PDF
更新时间:2024-06-23 12:42:45
STC11F-10Fxx系列中文资料 STC11F-10Fxx程序 STC11F-10Fxx选型
6.6 中断测试程序 6.6.1 外部中断0(INT0)的测试程序(C程序及汇编程序) 1. 程序�——演示外部中断�的下降沿中断 C程序: /*------------------------------------------------------------------------------------*/ /* --- STC MCU International Limited ---------------------------------------*/ /* --- 演示STC �T 系列单片机外部中断0((下降沿) -----------------------*/ /* --- Mobile: (86)�3922805�90 -----------------------------------------------*/ /* --- Fax: 86-755-82905966 ---------------------------------------------------*/ /* --- Tel: 86-755-829484�2 ----------------------------------------------------*/ /* --- Web: www.STCMCU.com -----------------------------------------------*/ /* 如果要在程序中使用�在文章中引用该程序, -------------------- ---*/ /* 请在程序中�文章中注明使用�STC的资料及程序 -----------*/ /*-------------------------------------------------------------------------------------*/ #include "reg5�.h" //External interrupt0 service routine void exint0() interrupt 0 //INT0, interrupt 0 (location at 0003H) { } void main() { IT0 = �; //set INT0 interrupt type (�:Falling 0:Low level) EX0 = �; //enable INT0 interrupt EA = �; //open global interrupt switch while (�); }