home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / packet / mulrpt.lbr / RCONFIG.LZB / RCONFIG.LIB
Text File  |  1985-11-24  |  768b  |  33 lines

  1. ;  Number of physical channels in the repeater.
  2.  
  3. NUMCH    EQU    2
  4.  
  5. ;  RAM constants.
  6. ;  Size of available RAM may be patched after linking
  7. ;  but is specified here for default.
  8.  
  9. RAMSIZ    EQU    4000H
  10. IPAGE    EQU    0FF00H        ;Interrupt page base address
  11.  
  12. ;  Port addresses of SIO hardware
  13.  
  14. SIOBC    EQU    7    ;Channel B control register
  15.  
  16.             ;CHANNEL 0
  17. DPORT0    EQU    5
  18. CPORT0    EQU    7
  19.  
  20.             ;CHANNEL 1
  21. DPORT1    EQU    4
  22. CPORT1    EQU    6
  23.  
  24. ;  Port addresses of CTC timer hardware
  25.  
  26. CTC    EQU    18H    ;CTC base address
  27. CTCCH    EQU    18H    ;CTC timer channel address
  28.  
  29. ;  CTC timer programming constants
  30.  
  31. CTCMOD    EQU    0A7H        ;Int enable, 256X prescalar
  32. CTCDIV    EQU    100        ;12.8 msec interrupts
  33.