home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 247 / 247.d81 / e.suppress < prev    next >
Text File  |  2022-08-26  |  402b  |  27 lines

  1. u                            PRINT THIS
  2.  
  3.    SUPPRESS ERROR/CONTROL MESSAGES
  4.    -------------------------------
  5.  
  6.  POKE 157,0
  7.  
  8.     Suppresses error and control
  9.         messages
  10.  
  11.  POKE 157,64
  12.  
  13.     Suppresses error messages
  14.  
  15.  POKE 157,128
  16.  
  17.     Suppresses control messages
  18.  
  19.  POKE 157,192
  20.  
  21.     Enables control and error messages
  22.  
  23.  NOTE: The POKE157 command must be on
  24.  the same line as the LOAD command.
  25.  
  26.  
  27.  
  28.