代码搜索:硬件中断

找到约 10,000 项符合「硬件中断」的源代码

代码结果 10,000
www.eeworm.com/read/291779/8396385

cpp 微机中断的资料.cpp

// 微机中断的资料如下: // IRQ0系统时钟(系统保留)  // IRQ1键盘(系统保留) // IRQ2系统的第二个中断请示控制器(IRQ8-15) // IRQ3串行口2(可用)  // IRQ4串行口1(可用) // IRQ5并行口2(可用)(一般用来设置声卡) // IRQ6软盘(系统保留)  // IRQ7并行口1(一般用作打印机) // IRQ8实时时钟 ...
www.eeworm.com/read/290271/8492046

txt 中断控制器.txt

// This is a simple Programmable Interrupt Controller. // The number of interrupts is depending on the databus size. // There's one interrupt input per databit (i.e. 16 interrupts for a 16 // bit d
www.eeworm.com/read/290020/8511105

txt 文档 (8)含有中断.txt

#include #include #define uint unsigned int #define uchar unsigned char #define ulong unsigned long /*****数据口定义****/ #define lcd1602_bus P0 /*定义9850端口*/ sbit sclk=P2^
www.eeworm.com/read/188163/8565830

bak 中断_uv2.bak

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, File 1,1,
www.eeworm.com/read/179841/9335349

pdf 结构8_中断.pdf

www.eeworm.com/read/374941/9378390

txt 串口中断接收.txt

#include"DSP281x_Device.h" #include"DSP281x_Examples.h" #define SCI_IO 0x0030 void IO_function(void); void Scib_init(void); void Scib_xmit(int a); interrupt void scibRxFifoIsr(void); void
www.eeworm.com/read/374641/9391480

txt cap中断程序参考.txt

#include "DSP281x_Device.h"// DSP281x Headerfile Include File #include "DSP281x_Examples.h"// DSP281x Examples Include File // Prototype statements for functions found within this file. inter
www.eeworm.com/read/371150/9564458

txt 键盘输入中断.txt

1 这个程序能接受256个字符,如果你还想输入更多的字符,只需要把空间留的更多一点就行 data segment keyboard db 256 dup (?) ;为输入的字符串预留空间 data ends code segment assume cs:code,ds:data main proc far mov ax,data mov ds,ax lea d