home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / A / CPM3SCB.ZIP / CPM3SCB.DOC < prev   
Text File  |  1990-11-24  |  9KB  |  265 lines

  1.                          Jim Lopushinsky
  2.  
  3.                           June 24, 1986
  4.  
  5. Here  is  a  complete description of the fields in the  CP/M  3.1 System  
  6. Control  Block,   as  far  as  I  can   determine.    The undocumented  fields  
  7. were discovered while dissambling the  CCP, Resident BDOS,  and Banked BDOS.   
  8. Digital Research documents the SCB as 100 decimal bytes,  but in fact it is 
  9. 152 or 98 hex  bytes long.   The  SCB  occupies  the last 152 bytes  of  the  
  10. resident portion of the BDOS (just before the BIOS).   It begins at xx68h, 
  11. where xx is the last page in the BDOS;  therefore, offset 62h-63h (top  of  
  12. TPA  address) is at xxFEh,  just before JMP  BOOT  bios entry.  The address of 
  13. the SCB can also be determined as follows: 
  14.  
  15.                LXI  D,SCBPB
  16.                MVI  C,49
  17.                CALL BDOS      ;page address of SCB in reg H
  18.                   | 
  19.                   |
  20.  
  21.      SCBPB:    DB   3AH       ;this is where SCB address is
  22.                DB   0         ;get operation
  23.  
  24. To access a field in the SCB,  use the above code sequence,  then load  
  25. register  L with the field offset as  determined  from  the table below.  HL 
  26. then contains the address of the field. 
  27.  
  28. To  accomodate  RSXs  that  modify the BIOS  character  I/O  jump vectors  
  29. (GET  and PUT RSXs),  a second jump  vector  for  WBOOT, CONST, CONIN, CONOUT, 
  30. and LIST are included in the SCB.  Only the banked BDOS uses these vectors.   
  31. Each entry consists of 2 3-byte entries  which are normally jumps.   An RSX 
  32. can change the  first JMP to an LXI H,addr, where addr is the redirected 
  33. address of the particular routine in bank 1.   The second JMP always points to 
  34. a Resident BDOS bank switch routine which switches to bank 1, calls the 
  35. routine as loaded in HL, and on return, switches back to bank 0  and returns 
  36. to the banked BDOS.   The banked BDOS always calls these  5 BIOS routines via 
  37. the SCB jump table.   This feature can be  used by BYE RSXs for safely 
  38. redirecting console I/O in  RCP/M systems. 
  39.  
  40. OFFSET TYPE    Description
  41.  
  42. 68H    inst.   Warm   boot  jump  vector  for  the  banked  BDOS.  
  43.                Normally a jump to the BIOS WBOOT vector,  but can 
  44.                be  changed to LXI H,wboot-addr to  redirect  Warm 
  45.                boots to a routine in bank 1.
  46.  
  47. 6BH    inst.   Jump  instruction  to  resident BDOS  bank  switch 
  48.                routine for redirected WBOOT.
  49.  
  50. 6EH    inst.   Console  status jump vector for the  banked  BDOS.  
  51.                Normally a jump to the BIOS CONST vector,  but can 
  52.                be changed to LXI H,const-addr to redirect console 
  53.                status to a routine in bank 1.
  54.  
  55. 71H    inst.   Jump  instruction  to  resident BDOS  bank  switch 
  56.                routine for redirected CONST.
  57.  
  58. 74H    inst.   Console  input  jump vector for the  banked  BDOS.  
  59.                Normally a jump to the BIOS CONIN vector,  but can 
  60.                be changed to LXI H,conin-addr to redirect console 
  61.                input to a routine in bank 1.
  62.  
  63. 77H    inst.   Jump  instruction  to resident  BDOS  bank  switch 
  64.                routine for redirected CONIN.
  65.  
  66. 7AH    inst.   Console  output  jump vector for the banked  BDOS.  
  67.                Normally a jump to the BIOS CONOUT vector, but can 
  68.                be  changed  to  LXI  H,conout-addr  to   redirect 
  69.                console output to a routine in bank 1.
  70.  
  71. 7DH    inst.   Jump  instruction  to  resident BDOS  bank  switch 
  72.                routine for redirected CONOUT.
  73.  
  74. 80H    inst.   List  output  jump  vector for  the  banked  BDOS.  
  75.                Normally a jump to the BIOS LIST vector,  but  can 
  76.                be  changed  to LXI H,list-addr to  redirect  list 
  77.                output to a routine in bank 1.
  78.  
  79. 83H    inst.   Jump  instruction  to  resident BDOS  bank  switch 
  80.                routine for redirected LIST.
  81.  
  82. 86H-8FH        Unknown.
  83.  
  84. 90H    word    Bit mapped vector of drives with open files.
  85.  
  86. 92H    word    Bit mapped vector of drives accessed.
  87.  
  88. 94H-97H        Unknown.
  89.  
  90. 98H    word    BDOS entry point address.
  91.  
  92. 9AH-A0H        Used by directory hashing routines.  Use Unknown.
  93.  
  94. A1H    byte    CP/M version.  Contains 31H.
  95.  
  96. A2H-A5H        4 bytes for user use.   CCP+ as written by me uses 
  97.                offsets A4H and A5H as follows:
  98.  
  99. A4H    byte    Bit mapped:
  100.                0-4  Submit user number+1.  0 = use current user.
  101.                5    reserved.
  102.                6    $$$.SUB needs to be erased by the CCP.
  103.                7    Directory name display flag.  1 = on.
  104.  
  105. A5H    byte    Bit mapped:
  106.                0-4 Load function user number+1. 0= current user.
  107.                5    reserved.
  108.                6    PRL file load
  109.                7    Library member load.
  110.  
  111. A6H-AAH        Unknown.
  112.  
  113. ABH    byte    Submit file drive.
  114.  
  115. ACH    word    Program return code.
  116.  
  117. AEH    byte    Base  page of RSX containing the 2nd  of  multiple 
  118.                commands (next to be executed).
  119.  
  120. AFH    byte    CCP drive.
  121.  
  122. B0H    byte    CCP user number.
  123.  
  124. B1H    word    If non-zero, address of 2nd of multiple commands.
  125.  
  126. B3H    byte    Bit mapped CCP flags:
  127.                0    Submit flag
  128.                1    RSX flag
  129.                2-5  Unknown
  130.                6    Set CCP drive/user to current drive/user.
  131.                7     Chain  flag.   Next  command is  taken  from 
  132.                default DMA buffer (80H).
  133.  
  134. B4H    byte    Bit mapped CCP flags:
  135.                0-1  Display command source drive/user.
  136.                2    Unknown
  137.                3-4  File type search order:
  138.                     00   .COM only
  139.                     01   .COM, then .SUB
  140.                     10   .SUB, then .COM
  141.                     11   .PRL, then .COM
  142.                5    Reset disk system
  143.                6    Reset page mode to default
  144.                7    CCP is executing (used by ^W recall)
  145.  
  146. B5H    byte    Bit mapped CCP flags:
  147.                0    Unknown
  148.                1    Cold start flag (0=cold)
  149.                2-7  Unknown
  150.  
  151. B6H    byte    Console width
  152.  
  153. B7H    byte    Current console column position
  154.  
  155. B8H    byte    Console page length
  156.  
  157. B9H            Unknown
  158.  
  159. BAH    word    If non-zero,  address of redirected console  input 
  160.                characters.
  161.  
  162. BCH    word    If  non-zero,  address of next line of  redirected 
  163.                console input characters.
  164.  
  165. BEH    word    Bit mapped console input physical devices.
  166.  
  167. C0H    word    Bit mapped console output physical devices.
  168.  
  169. C2H    word    Bit mapped auxiliary input physical devices.
  170.  
  171. C4H    word    Bit mapped auxiliary output physical devices.
  172.  
  173. C6H    word    Bit mapped list output physical devices.
  174.  
  175. C8H    byte    Console page mode (0 = page pause).
  176.  
  177. C9H    byte    Default page mode.
  178.  
  179. CAH    byte    Ctrl-H mode (backspace).
  180.  
  181. CBH    byte    Rub/Del mode.
  182.  
  183. CCH-CEH        Used by console routines.  Use unknown.
  184.  
  185. CFH    word    Console mode.
  186.  
  187. D1H    word    Address of 128 byte buffer in common memory.  This 
  188.                buffer  is used only during BDOS function calls by 
  189.                the system,  so it can be used freely between BDOS 
  190.                calls as a scratch buffer.   Also used by the BIOS 
  191.                during warm boot.
  192.  
  193. D3H    byte    Ouput delimiter.
  194.  
  195. D4H    byte    List echo flag (non-zero = echo console output).
  196.  
  197. D5H    byte    Scroll flag (used by console routines).
  198.  
  199. D6H    word    Address of System Control Block.
  200.  
  201. D8H    word    Current DMA address.
  202.  
  203. DAH    byte    Current drive.
  204.  
  205. DBH    word    Current FCB address (in common memory).
  206.  
  207. DDH    byte    FCB error flag.
  208.  
  209. DEH    byte    Same drive flag.
  210.  
  211. DFH    byte    Current BDOS function number.
  212.  
  213. E0H    byte    Current user number.
  214.  
  215. E1H    word    Last directory slot number accessed (first = 0)
  216.  
  217. E3H    word    Address of FCB for function 18 (search next).
  218.  
  219. E5H    byte    Function 17,  18 search type (0 = ? in drive code, 
  220.                0FH = normal search).
  221.  
  222. E6H    byte    Multi-sector count.
  223.  
  224. E7H    byte    BDOS error mode.
  225.  
  226. E8H    4 bytes Drive search chain.
  227.  
  228. ECH    byte    Temporary file drive.
  229.  
  230. EDH    byte    Error drive.
  231.  
  232. EEH-EFH        Unknown.
  233.  
  234. F0H    byte    Drive door open flag.
  235.  
  236. F1-F2H         Unknown.
  237.  
  238. F3H    byte    Bit mapped BDOS flags:
  239.                0-5  Unknown.
  240.                6    Single allocation vectors.
  241.                7    Expanded error messages.
  242.  
  243. F4H    word    Date (days since Jan 0, 1978).
  244.  
  245. F6H    byte    Hour (BCD).
  246.  
  247. F7H    byte    Minute (BCD).
  248.  
  249. F8H    byte    Second (BCD).
  250.  
  251. F9H    word    Common memory base address (non-banked = 0).
  252.  
  253. FBH    inst.   Error message jump instruction to a routine in the 
  254.                banked BDOS.
  255.  
  256. FEH    word    Current  top  of TPA (points to  entry  in  lowest 
  257.                RSX).
  258.  
  259. If anyone has information on any of the "Unknown" fields,  please let me know. 
  260.  
  261. Jim Lopushinsky
  262. Meadowlark RCP/M+
  263. 403-435-6579   (300/1200 baud)
  264.  
  265.