PageRenderTime 28ms CodeModel.GetById 29ms RepoModel.GetById 1ms app.codeStats 0ms

/support/sprinter/environ.fth

https://bitbucket.org/garryl/camelforth
Forth | 52 lines | 49 code | 3 blank | 0 comment | 3 complexity | 4f7bb0ca07c030598544e592b9105dbb MD5 | raw file
Possible License(s): GPL-3.0
  1. \ ****************************************************************************
  2. \ CamelForth for the Zilog Z80
  3. \ Copyright (c) 1994,1995 Bradford J. Rodriguez
  4. \ With contributions by Douglas Beattie Jr., 1998
  5. \ Widely extended and reorganised by Garry Lancaster, 1999-2011
  6. \ Z88, Sprinter, ZX Spectrum +3/+3e ports by Garry Lancaster, 1999-2011
  7. \
  8. \ This program is free software; you can redistribute it and/or modify
  9. \ it under the terms of the GNU General Public License as published by
  10. \ the Free Software Foundation; either version 3 of the License, or
  11. \ (at your option) any later version.
  12. \
  13. \ This program is distributed in the hope that it will be useful,
  14. \ but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. \ GNU General Public License for more details.
  17. \
  18. \ You should have received a copy of the GNU General Public License
  19. \ along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. \ ****************************************************************************
  21. CR .( Loading environment variables...)
  22. \ ANS Forth environment variables for Sprinter CamelForth
  23. 255 1 ENVVAR /COUNTED-STRING
  24. 40 1 ENVVAR /HOLD
  25. 88 1 ENVVAR /PAD
  26. 8 1 ENVVAR ADDRESS-UNIT-BITS
  27. 255 1 ENVVAR MAX-CHAR
  28. 32767 1 ENVVAR MAX-N
  29. 65535 1 ENVVAR MAX-U
  30. 65535 32767 2 ENVVAR MAX-D
  31. 65535 65535 2 ENVVAR MAX-UD
  32. 64 1 ENVVAR RETURN-STACK-CELLS
  33. 128 1 ENVVAR STACK-CELLS
  34. TRUE 1 ENVVAR FLOORED
  35. TRUE 1 ENVVAR CORE
  36. FALSE 1 ENVVAR CORE-EXT
  37. TRUE 1 ENVVAR BLOCK
  38. TRUE 1 ENVVAR BLOCK-EXT
  39. TRUE 1 ENVVAR EXCEPTION
  40. TRUE 1 ENVVAR EXCEPTION-EXT
  41. TRUE 1 ENVVAR FACILITY
  42. TRUE 1 ENVVAR FACILITY-EXT
  43. TRUE 1 ENVVAR FILE
  44. TRUE 1 ENVVAR FILE-EXT
  45. TRUE 1 ENVVAR SEARCH-ORDER
  46. TRUE 1 ENVVAR SEARCH-ORDER-EXT
  47. 8 1 ENVVAR WORDLISTS
  48. TRUE 1 ENVVAR STRING
  49. TRUE 1 ENVVAR STRING-EXT