代码搜索结果

找到约 10,000 项符合 Interrupt 的代码

interrupt.txt

CODE SEGMENT ASSUME CS: CODE NEW_INT: ;接收字符的中断处理程序 STI ;CPU开中断 MOV DX , 3F8H ;接收字符

interrupt.java

//: c14:Interrupt.java // From 'Thinking in Java, 2nd ed.' by Bruce Eckel // www.BruceEckel.com. See copyright notice in CopyRight.txt. // The alternative approach to using // stop() when a threa

interrupt.h

/********************************************************************************************** Interrupt.h file 作者:Computer-lov 建立日期:2006-4-20 修改日期:2006-4-20 最后修改时间:2006-08-25 版本:

interrupt.h

#ifndef _INT_H_ #define _INT_H_ #ifdef _INT_C_ #define EXT_INT #else #define EXT_INT extern #endif EXT_INT void fPortBInterruptSeviceRoutine(void); EXT_INT void fTimer0Interrupt

interrupt.c

#ifndef _INT_C_ #define _INT_C_ #include "global.h" /************************************************************************/ /* High-priority service */ /*********************

interrupt.cc

// interrupt.cc // Routines to simulate hardware interrupts. // // The hardware provides a routine (SetLevel) to enable or disable // interrupts. // // In order to emulate the hardware, we need to ke

interrupt.h

// interrupt.h // Data structures to emulate low-level interrupt hardware. // // The hardware provides a routine (SetLevel) to enable or disable // interrupts. // // In order to emulate the hardware,

interrupt.asm

;/************************************************************************** ;* * ;* Copyright (c) 2006 by JINRUN Tech

interrupt.c

// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft end-user // license agreement (EULA) under which you lic