Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - 8088
Search - 8088 - List
80888的bios源码,是好东西,看看吧!-8088 bios source code,good things.let s look at it.
Update : 2008-10-13 Size : 30940 Publisher : 曾是命

十字路口交通信号灯控制系统的设计基本要求:(利用8088、8254、8255及其它器件实现交通信号灯控制)(1)南北与东西方向,每个方面由红黄绿三个灯控制(2)南北向: 红(30秒),黄(5秒),绿(25秒)   东西向: 红(35秒),黄(5秒),绿(25秒)   上述基本参数可以根据实际情况自行调整,灯的变化规律与实际路口规律相同,绿灯在最后5秒钟时,黄灯亮,然后红灯亮,不允许两个方面同时亮绿灯。(3)绿灯的时间显示在数码管上进行显示。(4)可以通过一个开关控制,当开关信号为0时,整个交通灯全灭提高要求:(1)设计一个紧急控制开关信号,当紧急开关信号为1时,两个方向的灯全为红灯。紧急开关撤消后,按照开关按下之前的状态继续运行(其参数要保存)。(2)设计一个夜间行车开关,当开关按下后,两个方向都只有黄灯闪烁,其它灯熄灭。(3)设计两个方向的亮时时间可调。--A traffic light system. It uses 8088, 8254, 8255 and other modules to control the lights.
Update : 2008-10-13 Size : 3017 Publisher : 罗春威

DL : 0
由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Update : 2008-10-13 Size : 260567 Publisher : 周杰


Update : 2010-10-07 Size : 7337 Publisher : xdm114433

CPU具有的功能:能完成一些简单的指令 MOV AX,ADDRESS4 --将address4中的内容赋给AX寄存器(在8086/8088汇编语言中称这种寻址方式为直接寻址方式) ADD AX,ADDRESS4 -- 将address4中的内容加到AX寄存器中 SUB AX,ADDRESS4 -- 用address4中的内容减去AX寄存器中的内容 OUT -- 输出AX寄存器中的内容 HLT -- CPU停止运行
Update : 2011-11-26 Size : 103424 Publisher : kinglord2006@sina.com

十字路口交通信号灯控制系统的设计基本要求:(利用8088、8254、8255及其它器件实现交通信号灯控制)(1)南北与东西方向,每个方面由红黄绿三个灯控制(2)南北向: 红(30秒),黄(5秒),绿(25秒)   东西向: 红(35秒),黄(5秒),绿(25秒)   上述基本参数可以根据实际情况自行调整,灯的变化规律与实际路口规律相同,绿灯在最后5秒钟时,黄灯亮,然后红灯亮,不允许两个方面同时亮绿灯。(3)绿灯的时间显示在数码管上进行显示。(4)可以通过一个开关控制,当开关信号为0时,整个交通灯全灭提高要求:(1)设计一个紧急控制开关信号,当紧急开关信号为1时,两个方向的灯全为红灯。紧急开关撤消后,按照开关按下之前的状态继续运行(其参数要保存)。(2)设计一个夜间行车开关,当开关按下后,两个方向都只有黄灯闪烁,其它灯熄灭。(3)设计两个方向的亮时时间可调。--A traffic light system. It uses 8088, 8254, 8255 and other modules to control the lights.
Update : 2024-05-03 Size : 3072 Publisher : 罗春威

DL : 0
由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Update : 2024-05-03 Size : 260096 Publisher : 周杰

<>的源代码,intel汇编的优秀参考书。赶快下载。-<<inter Rchagad>> The source code, compile the intel excellent reference books. Quickly download.
Update : 2024-05-03 Size : 361472 Publisher : xia

DL : 0
UcOs ii的多任务操作系统全部原代码 包含这些cpu的原代码: 8051 68H11 8088 AVR XA 196 TI DSP 54XX ARM C167 68H12 68000 SH3 -UcOs ii multi-tasking operating system source code contains all these cpu's original code : 8088 8051 68H11 AVR 196 XA TI DSP 54XX ARM C167 microcontroller 68H12 68000 SH3.
Update : 2024-05-03 Size : 6142976 Publisher : 金卯刀

DL : 0
对学汇编的同学非常有用的! 8088 汇编速查手册-compiled for school students very useful! Check manual compilation 8088
Update : 2024-05-03 Size : 6144 Publisher : 陈淑明

DL : 0
对8088相关指令的介绍,不清楚的人可以看看哦,希望有帮助!-related to the 8088 Directive on, it is not clear who can look at, oh, with the hope of helping!
Update : 2024-05-03 Size : 17408 Publisher : fangshu

DL : 0
实现原理是由8279的8*2键盘控制373扩展输出口,由一位片选信号线连接的8088CPU的一个地址上,8279的每一个键值控制8088里面的每一套方案,由8088控制373扩展口输出给单色灯,实现节日灯的效果。-Principle is that by 8279 to achieve the 8* 2 keyboard to control the expansion of output 373, by a chip select signal lines connected to an address on 8088CPU, 8279 every 8088 key control inside each set of program control 373 by 8088 expansion of output to the monochrome lights, festive lights to achieve results.
Update : 2024-05-03 Size : 41984 Publisher : GFQ

1.将LED模块的CSLED接8088地址的200H。 2.编译原文件,连接并全速运行。 由8279处小键盘按下 Key 1 欢迎使用AEDKT598实验台 Key 2 圣诞快乐 Key 3 新年愉快 Key 4自左à右逐列显示“各位同学好” -1. CSLED the LED module 8088 then address 200H. 2. Compile the original document, connect and run at full speed. 8279 keypad by pressing Key 1 Welcome to Key 2 test-bed AEDKT598 Merry Christmas and a Happy New Year Key 3 from the left-脿 Key 4-by-right column shows the
Update : 2024-05-03 Size : 226304 Publisher : GFQ

8086 8088汇编语言程序设计.pdf
Update : 2024-05-03 Size : 8493056 Publisher : 彭程

DL : 0
80386处理器是Intel公司80x86发展史上的里程碑,它不但兼容先前的8086/8088,80186,80286处理器,而且也为后来的486,Pentium(586),Pentium Pro(686)的发展打下了坚实的基础,对于我们程序员来讲更重要的是:我们关心80386在指令上到底有哪些扩展呢?80386有哪些寻址方式呢?毫无疑问,它不但兼容了8086的所有指令,而且还对它们进行增强. -80386 processor is Intel Corporation 80x86 milestone in the history of the development, it is not only compatible with the previous 8086/8088, 80186,80286 processors, but also for the subsequent 486, Pentium (586), Pentium Pro (686) the development of a solid the basis for our programmers in terms of more important is: 80386 What we are concerned about the directive on which to expand it in the end? 80386 What are the addressable way? There is no doubt that it is not only compatible with the 8086 all the instructions, but also enhance them.
Update : 2024-05-03 Size : 30720 Publisher : haoyu

cpu86是用VHDL描述的8088IP核,很经典的,有做硬件的同学可以参考-cpu86 is described in VHDL nuclear 8088IP, very classic, and so students can refer to the hardware
Update : 2024-05-03 Size : 245760 Publisher : ninghuiming

DL : 0
(1)用微机原理实验箱FD-8088提供的数码管和芯片做。 (2)假设有一个十字路口,1,3为南北方向,2,4为东西方向,每个路口各有红、黄、绿三个交通信号灯。 (3)用红黄绿三个彩色发光二极管模拟控制交通信号。红、黄、绿灯接通时间分别为5秒、2秒、5秒。 -(1) Microcomputer Principle Experiment Box FD-8088 provides digital control and chip done. (2) It is assumed that there is a crossroads for the north-south direction 1,3, 2,4 for the east-west direction, each intersection have red, yellow and green three traffic lights. (3) with red, yellow, and green three color light-emitting diode analog control traffic signals. Red, yellow and green respectively connected to 5 seconds, 2 seconds, 5 seconds.
Update : 2024-05-03 Size : 118784 Publisher : hudal

Otherhb
DL : 0
一、实验目的 《汇编语言程序设计》是计算机专业的重要的专业基础课,通过本综合性、设计性实验使学生进一步巩固课堂所学,全面熟悉、掌握8088宏汇编语言程序设计的基本方法和技巧,进一步提高编写程序、阅读分析程序及上机操作、调试程序的能力。 二、实验要求 功能: 1建立成绩文档 2计算总分和平均分 3显示成绩报表 三、实验原理分析 这个程序根据其主要功能可分为输入、计算、排序和分类、输出四大模块 四、流程图 .. 五、源程序(加必要注释) -First, the experiment was
Update : 2024-05-03 Size : 25600 Publisher : eugune

DL : 0
ead file "YD.DOC". Who is the intended user Beginners in assembly and programmers. Features of the program: Yilmaz Disassembler:is an interactive disassembler which lets the user be a part of the disassembling process,is flexible, the user can disassemble in different formats,has user friendly interface, mouse support, pop-up menu commands, short cut key commands, context-sensitive on-line help,and it is cheap. Program s capacity and limitations: Max executable file size is 64 KB. Can not disassemble program of EXE-format.Only 8086/8088 CPU instructions can be disassembled. Disassemble 8087 Math Co-processor s instructions.
Update : 2024-05-03 Size : 100352 Publisher : 刘清

Other5-1
DL : 0
8088/8086的指令及分类;代码指令的格式及字段构成-8088/8086 instructions and classification code instruction format and field constitute
Update : 2024-05-03 Size : 21504 Publisher : 牛牛
« 1 2 3 45 6 7 8 9 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.