微信公众号 
图码生活

每天发布有五花八门的文章,各种有趣的知识等,期待您的订阅与参与
电脑报 1992-2001 十年文章全集
电脑报 1992-2001 十年文章全集
包含从 1992 年 - 2001 年间,两万余篇期刊文章,查询最少输入两个字符
随便看看
读取中
读取中
标题打印机的复位
栏目软件操作与技巧
作者上海 庄炯
发布1994-09-02
  程序清单:
  LPT1 equ 0008h
  code segment
  assume cs:code,ds:code
  org 100h
  start: mov ax,j0040h
  mov ds,ax
  mov dx,ds:LPT1   ;dx=LPT1 data port
  inc dx   ;dx=LPT1 state port
   inc dx   ;dx=LPT1 command port
  mov al,08h
  out dx,al
   push dx
   mov dx,0032h
   mov cx,0000h
   mov ah,86h
   int 15h
   pop dx
   mov al,0Ch
   out dx,al
   int 20h
  code ends
   end start
  (上海 庄炯)