自考

各地资讯
当前位置:考试网 >> 自学考试 >> 模拟试题 >> 工学类 >> 微型计算机接口技术 >> 文章内容

排行热点

2012年自考微型计算机及接口技术题四

来源:考试网 [ 2012年2月29日 ] 【大 中 小】
12月26日 接口上机试题 (中午) 
  题目:用计数器/定时器8253,通道1,方式0,计数器初值为0fh,手动单脉冲控制从8255a口输出到数码器,以递增的顺序显示0~f。要求:写出控制方式字,初值和连线图。
  程序如下:
  1:8255方式字=10000000=80h;
  8253方式字=01010000=50h;
  2:初值=0fh;
  3:连线图略;
  4:程序:
  data segment
  led  db 71h,79h,3fh,39h,7fh,77h,67h,7fh
  db 07h,7ch,6dh,6eh,4fh,5bh,06h,3fh
  data ends
  code segment
  assume  cs:code,ds:data
  start: mov ax,data
  mov ds,ax
  mov dx,28bh
  mov al,80h
  out dx,al
  mov dx,283h
  mov al,50h
  out dx,al
  mov dx,281h
  mov al,0fh
  out dx,al
  inout:in al,dx
  and al,0fh
  mov bx,offset led
  xlat
  mov dx,288h
  out dx,al
  mov ah,1
  int 16h
  je inout
  mov ah,4ch
  int 21h
  code ends
  end start
 
首页 1 2 3 4 尾页
责编:snrvge