home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / emulate / brdgeclk.lha / ReadMe.DOC < prev    next >
Text File  |  1988-05-07  |  3KB  |  71 lines

  1.  
  2.  
  3.   BRIDGEBOARD  CLOCK
  4.  
  5.   COPYRIGHT:     John Breen
  6.                  Breen & Associates (April 1988)
  7.  
  8.   FREEWARE:      You may freely distribute this info and the attached
  9.                  basic program. You must include this document in
  10.                  any distribution.
  11.  
  12.   PURPOSE:       Automaticly set the date and time on the IBM side
  13.                  of the A2000.
  14.  
  15.   CONTENTS:      1 - This note and setup instructions.
  16.                  2 - GWBASIC source code
  17.                  3 - An example IBM AUTOEXEC.BAT file.
  18.  
  19.  
  20.   OVERVIEW:      To understand these instructions I want to give a
  21.                  brief discription of how I solved the problem of
  22.                  responding to MS-DOS date and time prompts on a
  23.                  system startup.  I redirected the output of the AMIGA
  24.                  date command to a RAM: file then in the IBM autoexec
  25.                  file I did an AREAD to get the file on the IBM side.
  26.                  The next step was to parse, convert, and set the
  27.                  date and time on the IBM side this is done in my basic
  28.                  program STARTUP.BAS.
  29.  
  30.  
  31.   DETAIL:        First, as soon as possible in the AMIGA startup-sequence
  32.                  (after BINDDRIVERS) enter the following:
  33.  
  34.                        Run PC/PCdisk                (needed by AREAD)
  35.                        SetClock >ram:now opt load   (sets the time in
  36.                                                      an AMIGA ram file)
  37.  
  38.                  That should be all that is needed on the AMIGA side.
  39.  
  40.                  On the IBM side add to your AUTOEXEC.BAT file in
  41.                  an appropriate place the following:
  42.  
  43.                        AREAD RAM:NOW A:NOW          (gets the date and
  44.                                                      time info into the
  45.                                                      IBM side)
  46.                        GWBASIC STARTUP              (basic program to
  47.                                                      set and convert the
  48.                                                      date and time)
  49.  
  50.                  Adding these steps and placing the AREAD, GWBASIC, and
  51.                  the STARTUP.BAS files on the IBM boot drive will work.
  52.                  However, many combination are possible I have the aboved
  53.                  mentioned files on a virtual IBM disk and JLINK it
  54.                  before I proceed with the rest of my AUTOEXEC.BAT
  55.                  just watch closly and be careful of the file placements.
  56.  
  57.                  By the way, if your booting the IBM side of the machine
  58.                  and not bringing down the AMIGA side do the following
  59.                  on the AMIGA side as the last thing before the old
  60.                  CNTL-> ALT -> DEL to re-boot:
  61.  
  62.                        DATE >ram:now
  63.  
  64.                  One IMPORTANT note, check the file name on the open
  65.                  statement in the basic program, you most likely need
  66.                  to change the IBM drive (f:) to (a:) or whatever.
  67.                  
  68.  
  69.                  
  70.  
  71.