dos33fsprogs/utils/asoft_basic-utils
Vince Weaver 53783d0cf0 tokenize_asoft: fix issue with spaces in tokens
the Applesoft tokenizer essentially allows spaces anywhere in tokens
   HCOLOR=3
   HCOLOR = 3
   H C O L O R = 3
   HCOLOR               = 3
are all the same

this fixes an issue when parsing on some code I had, I hope it doesn't
break other things.  Need to add some test cases
2023-12-06 23:29:19 -05:00
..
Makefile utils: fix up so all compiles again 2021-01-05 16:13:43 -05:00
README re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
asoft_compact.c re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
asoft_detoken.c re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
bin2data.c re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
float_convert.c re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
integer_detoken.c re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00
tokenize_asoft.c tokenize_asoft: fix issue with spaces in tokens 2023-12-06 23:29:19 -05:00
version.h re-arranged the entire directory structure 2021-01-05 15:29:31 -05:00

README

%%%%%%%%%%%%
dos33fsprogs
%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
	 

asoft_detoken: takes an applesoft file obtained with dos33
               and converts it to an ASCII text file


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

	       
tokenize_asoft: takes an ASCII text file and converts it
                into a tokenized applesoft file


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


integer_detoken: detokenize an Apple Integer BASIC program


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


asoft_compact: tries to compress your Applesoft basic program
               to make it as small as possible

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

bin2data:	takes binary image and converts it to suitable
		BASIC to poke into memory.

		Useful for getting machine language routines usable
		in BASIC programs