home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #3.1 / RBBSIABOX31.cdr / colo / color.bas < prev    next >
BASIC Source File  |  1984-04-19  |  1KB  |  28 lines

  1. Basica resets the screen attribute as part of its initialization to white
  2. on black.  If you are using a color monitor, with the screen already set
  3. to a different color combination, this may not be desirable.
  4.  
  5. The following debug modifications will allow Basica 1.1 to start with
  6. the screen colors previously set:
  7.         debug basica.com
  8.         -e 3feb
  9.         xxxx:3FEB 22.23
  10.         -e 3c74
  11.         xxxx:3C74 BD.aa 02.05
  12.         -e 4220
  13.         xxxx:4220 00.32 00.ff 00.b4 00.08 00.cd 00.10 00.8a 00.c4
  14.         xxxx:4228 00.a3 00.4e 00.00 00.e9 00.05 00.fd
  15.         -w
  16.         -q
  17.  
  18. The in memory length is increased by one paragraph (16 bytes). There is
  19. no change to the number of disk sector clusters used.  The first change
  20. above, at 3feb, changes the program length vector basica uses. The
  21. second change, at 3c74, modifies an existing branch to point to a
  22. new subroutine. The third change, at 4220, is the new subroutine. It
  23. modifies the video parameters read from cassette basic in ROM before
  24. they are used, thus avoiding a 'black hole' on the screen.  It is not
  25. necessary to redo the border (overscan) because basic doesn't mess with
  26. it unless asked to do so.
  27.                                  Eric Olsen  WEST1VM(CBE22)
  28.