home *** CD-ROM | disk | FTP | other *** search
/ ftp.update.uu.se / ftp.update.uu.se.2014.03.zip / ftp.update.uu.se / pub / pdp8 / os278-src.tar.Z / os278-src.tar / setup.pa < prev    next >
Text File  |  1992-09-18  |  1KB  |  57 lines

  1. /SETUP.PA
  2.  
  3.     /***************************************************************
  4.     /
  5.     /            C O P Y R I G H T
  6.     /
  7.     /            Copyright (C) 1982
  8.     /                by
  9.     /       Digital Equipment Corporation, Maynard, Mass.
  10.     /
  11.     / This software is furnished under a license and may be used and
  12.     / copied  only  in accordance with the terms of such license and
  13.     / with the  inclusion  of  the  above  copyright  notice.   This
  14.     / software  or  any  other copies thereof may not be provided or
  15.     / otherwise made available to any other person.  No title to and
  16.     / ownership of the software is hereby transferred.
  17.     /
  18.     / The information in this software is subject to change  without
  19.     / notice  and should not be construed as a commitment by Digital
  20.     / Equipment Corporation.
  21.     /
  22.     / DIGITAL assumes no responsibility for the use  or  reliability
  23.     / of its software on equipment that is not supplied by DIGITAL.
  24.     /
  25.     /***************************************************************
  26.  
  27.  
  28. /SETUP PUTS DEMCATE II INTO SETUP MODE
  29.  
  30. /Assembly instructions
  31.  
  32. /PAL SETUP/L
  33. /SA SYS SETUP;200=3501
  34.  
  35.     *0
  36.     0260        /VERSION B0
  37.     HLT        /TRAP INTERRUPTS
  38.  
  39.  
  40. CLKSET=6130        /SET CLOCK FLAG (DECMATE II)
  41. CLKSKP=6131        /SKIP IS CLOCK IS SET
  42. PRQ3=6236        /PANEL REQUEST 3
  43.  
  44.     *0200
  45.  
  46. START,    CLL CLA
  47.     CLKSET        /SET CLOCK FLAG
  48.     CLKSKP        /SKIP IF CLOCK FLAG IS SET
  49.     JMP    MONITR    /NOT A DECMATE II RETURN TO SYSTEM
  50.     PRQ3        /CALL SETUP FUNCTION
  51.       0006
  52.       7777
  53. MONITR,    CLL CLA        /SETUP WILL RETURN HERE
  54.     JMP I .+1
  55.     7605        /RETURN TO SYSTEM
  56.  
  57.