ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.9 KiB

  1. /***************************************************************
  2. bwx_tty.h Header file for TTY-style hardware
  3. implementation of bwBASIC
  4. This file may be used as a template
  5. for developing more sophisticated
  6. hardware implementations
  7. Copyright (c) 1993, Ted A. Campbell
  8. Bywater Software
  9. email: tcamp@delphi.com
  10. Copyright and Permissions Information:
  11. All U.S. and international rights are claimed by the author,
  12. Ted A. Campbell.
  13. This software is released under the terms of the GNU General
  14. Public License (GPL), which is distributed with this software
  15. in the file "COPYING". The GPL specifies the terms under
  16. which users may copy and use the software in this distribution.
  17. A separate license is available for commercial distribution,
  18. for information on which you should contact the author.
  19. ***************************************************************/
  20. /*---------------------------------------------------------------*/
  21. /* NOTE: Modifications marked "JBV" were made by Jon B. Volkoff, */
  22. /* 11/1995 (eidetics@cerf.net). */
  23. /*---------------------------------------------------------------*/
  24. #define IMP_IDSTRING "TTY" /* unique ID string for this implementation */
  25. /* Definitions indicating which commands and functions are implemented */
  26. #define IMP_FNCINKEY 0 /* 0 if INKEY$ is not implemented, 1 if it is */
  27. #define IMP_CMDCLS 0 /* 0 if CLS is not implemented, 1 if it is */
  28. #define IMP_CMDLOC 0 /* 0 if LOCATE is not implemented, 1 if it is */
  29. #define IMP_CMDCOLOR 0 /* 0 if COLOR is not implemented, 1 if it is */
  30. #define UNIX_CMDS TRUE /* It better be for UNIX systems (JBV) */
  31. #define MKDIR_ONE_ARG FALSE /* TRUE if your mkdir has but one argument;
  32. FALSE if it has two */
  33. #define PERMISSIONS 644 /* permissions to set in Unix-type system */