home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / articles / archives / limanews.exe / CCPRSET.TXT < prev    next >
Text File  |  2006-10-19  |  3KB  |  79 lines

  1. ORIGINALLY PUBLISHED IN LIMA NEWSLETTER MAY 1990
  2.  
  3.            PRINTER SETUP PROGRAM FOR ITEM #4 ON 
  4.         THE CORCOMP DISK CONTROLLER POWERUP SCREEN 
  5.                    by Charles Good 
  6.                  Lima Ohio User Group 
  7.       
  8.      Do you have a CorComp disk controller with the original
  9. CorComp  eprom?  Have you  ever  wondered   if you  could do
  10. something  useful with  the  normally empty  item  #4 on the
  11. CorComp  powerup menu?   You can if you  have a GramKracker,
  12. PGRAM card, or other  gram  device.   The GramKracker  comes
  13. with a short utility  called MSAVE which allows you to write
  14. short TI BASIC  (not extended basic)  programs and have them
  15. show  up on  the powerup  menu  with  a title  of  your  own
  16. choosing  right after extended basic.   With a TI controller
  17. and one MSAVEd program, your powerup menu would read:  PRESS
  18. 1 FOR TI BASIC,  2 FOR TI EXTENDED BASIC,  3 FOR YOUR TITLE.
  19. Those  with a  CorComp controller  with CorComp  eprom would
  20. have a powerup menu that lists your first  MASVEd program as
  21. item  #4.    With  MSAVE, your  short  TI BASIC  program  is
  22. attached to the end of the extended basic code and loaded in
  23. to the gram  device along with  extended basic.    Such a TI
  24. BASIC  program  will  show  up as  #4  on the  CorComp  disk
  25. controller  powerup menu.    I don't know if the PGRAM comes
  26. with something  like MSAVE,  but extended  basic  disk files
  27. modified with   MSAVE on  a GramKracker  should  work  on  a
  28. PGRAM. 
  29.       
  30.      Here is a printer  setup program for  MSAVE which I have
  31. showing on my  CorComp controller powerup menu as  "4 PRINTER
  32. SETUP."^^^It is designed  for the Star SG10,  so you may have
  33. to modify the NLQ code  on line 300.   The MSAVE utility adds
  34. CALL BYE to TI BASIC programs  added to the powerup menu.  By
  35. pressing #7 from the program below,  the program goes to line
  36. 360 which resets the computer and brings up the powerup menu.
  37.       
  38.           100 OPEN #1:"PIO" 
  39.           110 PRINT "PRESS 1 for NLQ":
  40.           : 
  41.           120 PRINT "PRESS 2 for CONDE
  42.           NSED":: 
  43.           130 PRINT "PRESS 3 for EMPHA
  44.           SIZED"::
  45.           140 PRINT "PRESS 4 for DOUBL
  46.           E STRIKE"::
  47.           150 PRINT "PRESS 5 for EXPAN
  48.           DED"::
  49.           160 PRINT "PRESS 6 for PRINT
  50.           ER RESET"::
  51.           170 PRINT "PRESS 7 for POWER
  52.           UP MENU"::::
  53.           180 CALL KEY(0,K,S)
  54.           190 IF S=0 THEN 180
  55.           200 IF K=49 THEN 300
  56.           210 IF K=50 THEN 310
  57.           220 IF K=51 THEN 320
  58.           230 IF K=52 THEN 330
  59.           240 IF K=53 THEN 340
  60.           250 IF K=54 THEN 350
  61.           260 IF K=55 THEN 360
  62.           270 GOTO 180
  63.           300 PRINT #1:CHR$(27)&"B"&CH
  64.           R$(4)
  65.           305 GOTO 180
  66.           310 PRINT #1:CHR$(27)&CHR$(1
  67.           5)
  68.           315 GOTO 180
  69.           320 PRINT #1:CHR$(27)&"E"
  70.           325 GOTO 180
  71.           330 PRINT #1:CHR$(27)&"G"
  72.           335 GOTO 180
  73.           340 PRINT #1:CHR$(27)&"W"&CH
  74.           R$(1)
  75.           345 GOTO 180
  76.           350 PRINT #1:CHR$(27)&"@"
  77.           355 GOTO 180
  78.           360 CALL BYE
  79.