0.LST
上传用户:wangli324
上传日期:2020-01-06
资源大小:105k
文件大小:2k
源码类别:

并口编程

开发平台:

Asm

  1. Microsoft (R) Macro Assembler Version 5.00                  12/17/9                                                             Page     1-1
  2.  0000 data segment 
  3.  0000  9D bin db 10011101b 
  4.  0001  03 buff db 3dup(0) 
  5. 0.ASM(3): error A2009: Symbol not defined: UP
  6.  0002 data ends 
  7.  0000 code segment 
  8.  assume cs:code,ds:data 
  9.  0000 start: 
  10.  0000  B8 ---- R mov ax,data 
  11.  0003  8E D8 mov ds,ax 
  12.  0005  A0 0000 R mov al,bin 
  13.  0008  8A E0 mov ah,al 
  14.  000A  24 07 and al,00000111b 
  15.  000C  A2 0003 R mov [buff+2],al 
  16.  000F  8A C4 mov al,ah 
  17.  0011  B1 03 mov cl,3 
  18.  0013  D2 E8 shr al,cl 
  19.  0015  24 07 and al,00000111b 
  20.  0017  A2 0002 R mov [buff+1],al 
  21.  001A  8A C4 mov al,ah 
  22.  001C  D2 E8 shr al,cl 
  23.  001E  24 07 and al,00000111b 
  24.  0020  A2 0001 R mov [buff],al 
  25.  0023  BE 0000 U mov si,offset buf 
  26. 0.ASM(23): error A2009: Symbol not defined: BUF
  27.  0026 pp: 
  28.  0026  8A 94 0001 R mov dl,buff[si] 
  29.  002A  80 C2 30 add dl,30h 
  30.  002D  B4 02 mov ah,02h 
  31.  002F  CD 21 int 21h 
  32.  0031  46 inc si 
  33.  0032  E2 F2 loop pp 
  34.  0034  B8 4C00 mov ax,4c00h 
  35.  0037  CD 21 int 21h 
  36.  0039 code ends 
  37. end start 
  38. Microsoft (R) Macro Assembler Version 5.00                  12/17/9                                                             Symbols-1
  39. Segments and Groups:
  40.                 N a m e          Length  Align Combine Class
  41. CODE . . . . . . . . . . . . . .   0039 PARA NONE
  42. DATA . . . . . . . . . . . . . .   0002 PARA NONE
  43. Symbols:            
  44.                 N a m e          Type  Value  Attr
  45. BIN  . . . . . . . . . . . . . .   L BYTE 0000 DATA
  46. BUFF . . . . . . . . . . . . . .   L BYTE 0001 DATA
  47. PP . . . . . . . . . . . . . . .   L NEAR 0026 CODE
  48. START  . . . . . . . . . . . . .   L NEAR 0000 CODE
  49. @FILENAME  . . . . . . . . . . .   TEXT  0
  50.      34 Source  Lines
  51.      34 Total   Lines
  52.       8 Symbols
  53.   50296 + 416312 Bytes symbol space free
  54.       0 Warning Errors
  55.       2 Severe  Errors