home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol167 / fxt86.dif < prev    next >
Encoding:
Text File  |  1984-04-29  |  1.9 KB  |  55 lines

  1. File 1, Line 59: ;    14 January 1984 - <QIN ds 0>, <QOU ds 0> for sorcim.cnv
  2. File 1, Line 60: ;    14 January 1984 - default extension .REC for 1st file
  3.  
  4. File 1, Line 122: QIN:    ds    0        ;space holder
  5. File 1, Line 123:     DB    0ECH        ;8-bit 8086 static IN instruction
  6. File 2, Line 120: QIN:    DB    0ECH        ;8-bit static IN instruction
  7.  
  8. File 1, Line 127: QOU:    ds    0        ;space holder
  9. File 1, Line 128:     DB    0E6H        ;8-bit 8086 static OUT instruction
  10. File 2, Line 124: QOU:    DB    0E6H        ;8-bit static OUT instruction
  11.  
  12. File 1, Line 213:     db    '        January 23, 1984',0DH,0AH,'$'
  13. File 2, Line 209:     db    '         July 20, 1983',0DH,0AH,'$'
  14.  
  15. File 1, Line 265:     mov    dl,al
  16. File 2, Line 261:     MOV    dl,al
  17.  
  18. File 1, Line 359:     mov    al,CH        ;output must be from accumulator
  19. File 2, Line 355:     MOV    al,CH        ;output must be from accumulator
  20.  
  21. File 1, Line 433:     stob    #00,[bx+1]    ;make high byte a zero
  22. File 2, Line 429:     stob    #ZE,[bx+1]    ;make high byte a zero
  23.  
  24. File 1, Line 471:     sub    al,#'@'        ;normalize to uppercase letters
  25. File 2, Line 467:     SUB    al,#'@'        ;normalize to uppercase letters
  26.  
  27. File 1, Line 518: ;[change]
  28. File 1, Line 519: MAIN:    cli
  29. File 1, Line 520:     mov    ax,cs
  30. File 1, Line 521:     mov    ss,ax
  31. File 1, Line 522:     ld    sp,#STAK
  32. File 1, Line 523:     sti
  33. File 1, Line 524:     sto    #ZE,PD        ;mark bottom of pushdown list
  34. File 1, Line 525:     ld    bx,#TFCB
  35. File 1, Line 526:     cmpb    [bx+1],#' '
  36. File 1, Line 527:     jz    tylo
  37. File 1, Line 528:     cmpb    [bx+9],#' '
  38. File 1, Line 529:     jnz    yext
  39. File 1, Line 530:     stob    #'R',[bx+9]
  40. File 1, Line 531:     stob    #'E',[bx+10]
  41. File 1, Line 532:     stob    #'C',[bx+11]
  42. File 1, Line 533: yext:    ld    cx,#HSIZ
  43. File 1, Line 534: ;[endchange]
  44.  
  45. File 2, Line 514: MAIN:    mov    ax,cs
  46. File 2, Line 515:     mov    ss,ax
  47. File 2, Line 516:     ld    sp,#STAK
  48. File 2, Line 517:     ld    bx,#ZE        ;
  49. File 2, Line 518:     sto    bx,PD        ;mark bottom of pushdown list
  50. File 2, Line 519:     ld    al,TFCB+1
  51. File 2, Line 520:     cmp    al,#' '
  52. File 2, Line 521:     jz    tylo
  53. File 2, Line 522:     ld    cx,#HSIZ
  54.  
  55.