⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isr.c

📁 此為philip 1362 USB DOS下的驅動程式包, 已經共測試並內含有說明文件
💻 C
字号:
/*
   //*************************************************************************
   //
   //                  P H I L I P S   P R O P R I E T A R Y
   //
   //           COPYRIGHT (c)   2000 BY PHILIPS SINGAPORE.
   //                     --  ALL RIGHTS RESERVED  --
   //
   // File Name:	ISR.C
   // Author:		ZhenYu Zhang
   // Created:		Feb. 1, 1999
   // Modified:
   // Revision:		0.0
   //
   //*************************************************************************
   //
   //*************************************************************************
   // Implementation Notes,
   //   ISR hierachy
   //       usb_isr()
   //
*/
#include <stdio.h>
#include <string.h>
#include <dos.h>

#include "BasicTyp.h"
#include "common.h"
#include "SysCnfg.h"


#include "HAL4Sys.h"
#include "HAL4ISA.h"
#include "HAL4IKit.h"
#include "HAL4D13.h"
#include "HAL4HC.h"
#include "Hal4OTG.h"

#include "OTGsvc.h"

#include "isr.h"

int TestCounterI=0;
/*
//*************************************************************************
//  Public static data
//*************************************************************************
*/
extern bIRQL;

/*
//*************************************************************************
//  Private static data
//*************************************************************************
*/


/*
//*************************************************************************
//  ISR Subroutine
//*************************************************************************
*/

void interrupt ISR_4Timer(void)
{
	bIRQL = 1;
	fn_Timer_isr();
	outportb(0x20, 0x20);
	bIRQL = 0;
}

void fn_Timer_isr(void)
{
	OTG_HW_emulator();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -