×
微机原理及应用

包邮微机原理及应用

¥38.7 (6.7折) ?
1星价 ¥38.7
2星价¥38.7 定价¥58.0
暂无评论
图文详情
  • ISBN:9787118104103
  • 装帧:一般胶版纸
  • 册数:暂无
  • 重量:暂无
  • 开本:16开
  • 页数:330
  • 出版时间:2016-01-01
  • 条形码:9787118104103 ; 978-7-118-10410-3

本书特色

  丁艳编*的《微机原理及应用》以16位微处理器为核心,全面讲述了微型计算机的基本组成、工作原理以及硬件接口技术。全书共8章,逐一讲述了计算机基础知识、微型计算机的基本组成及工作原理、16 位微处理器8086/8088cpu的寻址方式、指令系统、汇编程序的设计、输入/输出接口、存储器系统和可编程定时/计数控制器等内容。本书是作者多年教学经验的结晶,内容编排合理,由浅入深,体系完整,重点突出并配有丰富的例题及详尽的注释。   本书采用全英文编写,并配有部分汉语注释,适合用作普通高等院校非计算机类各专业学生“微型计算机原理及应用”课程的教材,也可用作成人高等教育的培训教材及广大科技工作者的参考书。  

内容简介

本书内容主要包括:微型计算机基础知识,微型计算机的组成及其基本工作原理,8086/8088微处理器,8088/8086寻址方式与指令系统,程序设计,存储器系统,输入输出接口,A/D及D/A转换器等。 读者对象为电子、自动化等相关领域技术人员。

目录

chapter 1  fundamentals of computer    1.1  number system        1.1.1  basic number systems        1.1.2  conversions between different number systems        1.1.3  common data units    1.2  logic algebra and logic gates        1.2.1  "or" operation and "or" gate        1.2.2  "and" operation and "and" gate        1.2.3  "not" operation and the not-inverter        1.2.4  basic rules of boolean algebra    1.3  binary numbers and binary addition/subtraction        1.3.1   negative binary numbers        1.3.2  binary addition        1.3.3  binary subtraction        1.3.4  adder circuits        1.3.5  switchable inverter and binary addition/subtraction circuit    1.4  computer data formats        1.4.1  acsii code        1.4.2  bcd ( binary-coded decimal) format    1.5  logic circuit        1.5.1  logic gates        1.5.2  flip-flops        1.5.3  registers        1.5.4  tri-state gate and bus structure    tips    exercisechapter 2  system organization of microcomputer    2.1  the basic system components        2.1.1  cpu (central processing unit)        2.1.2  the system bus        2.1.3  the memory subsystem        2.1.4  the i/o subsystem    2.2  a simple computer        2.2.1  introduction        2.2.2  architecture of the simple computer        2.2.3  instruction set of the simple computer        2.2.4  encoding instructions        2.2.5  organization of the control unit        2.2.6  step-by-step instruction execution    tips    exercisechapter 3  intel 8086 microprocessor    3.1  the history of intel microprocessor family    3.2  8086 cpu architecture        3.2.1  execution unit and bus interface unit        3.2.2  organization of execution unit        3.2.3  organization of bus interface unit (biu)    3.3  internal memory        3.3.1  addressing data in memory        3.3.2  memory segment        3.3.3  segment boundary        3.3.4  segment offset        3.3.5  about stack segment    3.4  system timing        3.4.1  the system clock        3.4.2  memory access time        3.4.3  wait states        3.4.4  bus cycle    3.5  8086 pin assignments and working modes        3.5.1  pins and their function descriptions        3.5.2  working modes    3.6  basic operations of 8086/8088        3.6.1  reset operation        3.6.2  input and output for 8086 minimum mode        3.6.3  bus request and bus grant timing in minimum mode        3.6.4  interrupt operation        3.6.5  interrupt operations in maximum mode    tips    exercisechapter 4  8086 address mode and assembly instructions    4.1  8086 assembly instruction format    4.2  8086 addressing modes       4.2.1  immediate addressing       4.2.2  direct addressing       4.2.3  register addressing       4.2.4  register indirect addressing       4.2.5  register relative addressing       4.2.6  base-plus-index addressing       4.2.7  base relative-plus-index addressing    4.3  data movement instructions       4.3.1  mov instruction       4.3.2  push and pop       4.3.3  xchg instruction       4.3.4  xlat instruction       4.3.5  lea instruction       4.3.6  ldsandles       4.3.7  flags register movement instruction       4.3.8  in and out    4.4  arithmetic instructions and logic instructions       4.4.1  add and sub function       4.4.2  inc and dec function       4.4.3  neg and cmp function       4.4.4  mul and div function       4.4.5  type conversion functions       4.4.6  bcd conversion functions       4.4.7  boolean operations       4.4.8  shifting and rotation    4.5  string instructions        4.5.1  the direction flag        4.5.2  string data transfers        4.5.3  string comparisons    4.6  program control instructions        4.6.1  program flow control instructions        4.6.2  machine control and miscellaneous instructions    4.7  the symbolic instruction set    tips    exercisechapter 5  directives and macro processing    5.1  the format of the directives    5.2  operators and expression    5.3  directives       5.3.1  data definition and storage allocation       5.3.2  equ directive       5.3.3  segment definition directive       5.3.4  assume directive       5.3.5  proc directive       5.3.6  end directive       5.3.7  org directive       5.3.8  structures       5.3.9  records       5.3.10  the page and title listing directives       5.3.11  extrn/extern directive       5.3.12  group directive       5.3.13  include directive       5.3.14  label directive    5.4  macro processing       5.4.1  macro definition        5.4.2  macro sequence and procedure calling        5.4.3  macro directives    5.5  dos function calls        5.5.1  the ibm pcbios        5.5.2  an introduction to ms-dos' services        5.5.3  ms-dos calling sequence        5.5.4  frequently used ms-dos functions    5.6  assembling, linking and executing a program        5.6.1  the assembler and linker        5.6.2  assembling a source program        5.6.3  linking an object program        5.6.4  executing a program        5.6.5  using the debug program        5.6.6  debug commands exercise    tips    exercisechapter 6  programming with assembly language    6.1  design of assembly program    6.2  simple procedures designing    6.3  branch and looping procedures    6.4  procedure call and return    6.5  programming examples    tips    exercisechapter 7  memory system    7.1   overview of the memory        7.1.1  non-volatile memory        7.1.2  volatile memory        7.1.3  performance index of memory system    7.2  memory devices        7.2.1  sram 6264        7.2.2  sram6116        7.2.3  dram 2164a        7.2.4  eprom 2764a    7.3  memory module design        7.3.1   memory pin connections        7.3.2  memory module design        7.3.3  memory expansion examples    tips    exercisechapter 8  i/o interfaces    8.1  l/o instructions    8.2  l/o interfacing methods    8.3  serial interface and serial communication        8.3.1  serial interface        8.3.2  basic serial transmission lines        8.3.3  asynchronous and synchronous communication    8.4  8251a programmable communication interface        8.4.1  the architecture of the 8251a        8.4.2  the application of the 8251 a        8.4.3  the initialization of the 8251a    8.5  parallel communication interface    8.6  8255a programmable peripheral interface        8.6.1  the architecture of the 8255a        8.6.2  the function description of the 8255a        8.6.3  the communication mode of 8255a        8.6.4  the initialization and programming of 8255a    8.7  programmable timer and event counter    8.8  intel's 8253 programmable timer/counter        8.8.1  the architecture of 8253        8.8.2  the operation mode definition of 8253        8.8.3  examples of 8253 timer/counter    tips    exerciseappendix a  8086/8088 instruction set summaryappendix b  vocabulary and termsreference
展开全部

预估到手价 ×

预估到手价是按参与促销活动、以最优惠的购买方案计算出的价格(不含优惠券部分),仅供参考,未必等同于实际到手价。

确定
快速
导航