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.

README.patch02 2.2 KiB

v2.20pl2 Patch level 2 release by Jon B. Volkoff, 11 October 1997 LIST OF PATCHES TO 2.20: bwb_cmd.c Fixed calling stack level logic in RETURN statement to prevent erroneous "RETURN without GOSUB" messages. bwb_cnd.c bwb_stc.c Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL to be != FALSE, not == TRUE. More in line with common commercial BASIC implementations. bwb_mth.c Fixed initialization in VAL function so that old results are not later returned as values. bwb_var.c Added parenthesis level checking to dim_getparams. Using multi-level expressions as array subscripts was causing the program to bomb. bwx_iqc.c bwx_tty.c bwb_mes.h Added second copyright notice. bwb_dio.c bwb_str.c Added support for strings longer than 255 characters. bwb_prn.c Disabled tab expansion and print width checks when not printing to a file. bwb_inp.c Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE. bwx_ncu.h bwx_ncu.c New files. Code for UNIX ncurses interface, compliments of L.C. Benschop, Eindhoven, The Netherlands. Makefile.ncu New files. Sample makefile for ncurses implementation. bwbasic.h Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits. Revised define for MAXSTRINGSIZE from 255 to 5000 characters. Changed string length from unsigned char to unsigned int to support strings longer than 255 characters. Added support for new ncurses package. Revised VERSION define to reflect above changes. To implement these patches simply replace the old versions of the above source files with the new ones and remake bwbasic.
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. README.patch02 file for
  2. Bywater BASIC Interpreter/Shell, version 2.20
  3. ---------------------------------------------
  4. Copyright (c) 1993, Ted A. Campbell
  5. for bwBASIC version 2.10, 11 October 1993
  6. Version 2.20 modifications by Jon B. Volkoff,
  7. 25 November 1995
  8. Patch level 1 release by Jon B. Volkoff,
  9. 15 March 1996
  10. Patch level 2 release by Jon B. Volkoff,
  11. 11 October 1997
  12. LIST OF PATCHES TO 2.20:
  13. bwb_cmd.c
  14. Fixed calling stack level logic in RETURN statement to prevent erroneous
  15. "RETURN without GOSUB" messages.
  16. bwb_cnd.c
  17. bwb_stc.c
  18. Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL
  19. to be != FALSE, not == TRUE. More in line with common commercial
  20. BASIC implementations.
  21. bwb_mth.c
  22. Fixed initialization in VAL function so that old results are not later
  23. returned as values.
  24. bwb_var.c
  25. Added parenthesis level checking to dim_getparams. Using multi-level
  26. expressions as array subscripts was causing the program to bomb.
  27. bwx_iqc.c
  28. bwx_tty.c
  29. bwb_mes.h
  30. Added second copyright notice.
  31. bwb_dio.c
  32. bwb_str.c
  33. Added support for strings longer than 255 characters.
  34. bwb_prn.c
  35. Disabled tab expansion and print width checks when not printing to a file.
  36. bwb_inp.c
  37. Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE.
  38. bwx_ncu.h
  39. bwx_ncu.c
  40. New files. Code for UNIX ncurses interface, compliments of L.C. Benschop,
  41. Eindhoven, The Netherlands.
  42. Makefile.ncu
  43. New files. Sample makefile for ncurses implementation.
  44. bwbasic.h
  45. Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits.
  46. Revised define for MAXSTRINGSIZE from 255 to 5000 characters.
  47. Changed string length from unsigned char to unsigned int to support strings
  48. longer than 255 characters.
  49. Added support for new ncurses package.
  50. Revised VERSION define to reflect above changes.
  51. To implement these patches simply replace the old versions of the above source
  52. files with the new ones and remake bwbasic.