?? isr.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 + -