40-Year old BASICA utility code for teaching
1–10 of 40 posts
Re: 40-Year old BASICA utility code for teaching
#2Re: 40-Year old BASICA utility code for teaching
#3Re: 40-Year old BASICA utility code for teaching
#4Re: 40-Year old BASICA utility code for teaching
#5How neat! Thanks for sharing. Wish we could get back to everyday people being creators as well as consumers
Re: 40-Year old BASICA utility code for teaching
#6Actually this is not related to CP437. For normal ASCII text, CP437 and UTF-8 are identical... the problem is that BASICA/GW-BASIC were storing the source code in tokenized binary form, probably to save disk space. See for example this decoding utility: https://github.com/rwtodd/bascat
Re: 40-Year old BASICA utility code for teaching
#7> Because DOS systems used CP437 encoding it is unlikely any of your editors will even be able to open the .BAS programming files in the Program directory Actually this is not related to CP437. For normal ASCII text, CP437 and UTF-8 are identical... the problem is that BASICA/GW-BASIC were storing the source code in tokenized binary form, probably to save disk space. See for example this decoding utility: https://git…
Re: 40-Year old BASICA utility code for teaching
#8> Because DOS systems used CP437 encoding it is unlikely any of your editors will even be able to open the .BAS programming files in the Program directory Actually this is not related to CP437. For normal ASCII text, CP437 and UTF-8 are identical... the problem is that BASICA/GW-BASIC were storing the source code in tokenized binary form, probably to save disk space. See for example this decoding utility: https://git…
Re: 40-Year old BASICA utility code for teaching
#9> Because DOS systems used CP437 encoding it is unlikely any of your editors will even be able to open the .BAS programming files in the Program directory Actually this is not related to CP437. For normal ASCII text, CP437 and UTF-8 are identical... the problem is that BASICA/GW-BASIC were storing the source code in tokenized binary form, probably to save disk space. See for example this decoding utility: https://git…
Wasn't there a way to tell BASIC to save in ASCII, rather than tokenized? Something like sticking ",A" onto the end of the save command? Or maybe I'm thinking of gwbasic ..