forked from slviajero/tinybasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.h
More file actions
1312 lines (1203 loc) · 30.7 KB
/
basic.h
File metadata and controls
1312 lines (1203 loc) · 30.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
*
* $Id: basic.h,v 1.9 2022/08/15 18:08:56 stefan Exp stefan $
*
* Stefan's basic interpreter
*
* Playing around with frugal programming. See the licence file on
* https://github.com/slviajero/tinybasic for copyright/left.
* (GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007)
*
* Author: Stefan Lenz, sl001@serverfabrik.de
*
* basic.h are the core defintions and function protypes
*
*/
/*
* if the PROGMEM macro is define we compile on the Arduino IDE
* we undef all hardware settings otherwise a little odd
*/
#ifdef ARDUINO_ARCH_MBED
#define PROGMEM
#endif
#ifdef PROGMEM
#define ARDUINOPROGMEM
#else
#undef ARDUINO
#undef ARDUINOSD
#undef ARDUINORF24
#undef ARDUINORTC
#undef ARDUINOEEPROM
#undef ARDUINOEEPROMI2C
#undef ARDUINOWIRE
#endif
/*
* MSDOS, Mac, Linux and Windows
*/
#ifndef ARDUINO
typedef unsigned char uint8_t;
#define PROGMEM
#include <stdio.h>
#include <stdlib.h>
#ifdef HASFLOAT
#include <math.h>
#include <float.h>
#endif
#include <time.h>
#include <sys/types.h>
#include <sys/timeb.h>
#ifndef MSDOS
#include <dirent.h>
#include <unistd.h>
#else
#include <dir.h>
#include <dos.h>
#endif
#ifdef MINGW
#include <windows.h>
#endif
#ifdef RASPPI
#include <wiringPi.h>
#endif
#endif
#if defined(ARDUINO_ARCH_AVR)
/* the small memory model with shallow stacks and small buffers */
#define BUFSIZE 80
#define STACKSIZE 15
#define GOSUBDEPTH 4
#define FORDEPTH 4
#define LINECACHESIZE 4
#else
/* the for larger microcontrollers and real computers */
#define BUFSIZE 128
#define STACKSIZE 64
#define GOSUBDEPTH 8
#define FORDEPTH 8
#define LINECACHESIZE 16
#endif
/* more duffers and vars */
#define SBUFSIZE 32
#define VARSIZE 26
/* default sizes of arrays and strings if they are not DIMed */
#define ARRAYSIZEDEF 10
#define STRSIZEDEF 32
/*
* the time intervall in ms needed for
* ESP8266 yields, network client loops
* and other timing related functions
*/
#define LONGYIELDINTERVAL 1000
#define YIELDINTERVAL 32
#define YIELDTIME 2
/* the default EEPROM dummy size */
#define EEPROMSIZE 1024
/*
* The tokens for the BASIC keywords
*
* All single character operators are their own tokens
* ASCII values above 0x7f are used for tokens of keywords.
* EOL is a token
*/
#define EOL 0
#define NUMBER -127
#define LINENUMBER -126
#define STRING -125
#define VARIABLE -124
#define STRINGVAR -123
#define ARRAYVAR -122
/* multi character tokens - BASEKEYWORD (3) */
#define GREATEREQUAL -121
#define LESSEREQUAL -120
#define NOTEQUAL -119
/* this is the Palo Alto Language Set (19) */
#define TPRINT -118
#define TLET -117
#define TINPUT -116
#define TGOTO -115
#define TGOSUB -114
#define TRETURN -113
#define TIF -112
#define TFOR -111
#define TTO -110
#define TSTEP -109
#define TNEXT -108
#define TSTOP -107
#define TLIST -106
#define TNEW -105
#define TRUN -104
#define TABS -103
#define TRND -102
#define TSIZE -101
#define TREM -100
/* this is the Apple 1 language set in addition to Palo Alto (14) */
#define TNOT -99
#define TAND -98
#define TOR -97
#define TLEN -96
#define TSGN -95
#define TPEEK -94
#define TDIM -93
#define TCLR -92
#define THIMEM -91
#define TTAB -90
#define TTHEN -89
#define TEND -88
#define TPOKE -87
/* Stefan's tinybasic additions (12) */
#define TCONT -86
#define TSQR -85
#define TPOW -84
#define TMAP -83
#define TDUMP -82
#define TBREAK -81
#define TSAVE -80
#define TLOAD -79
#define TGET -78
#define TPUT -77
#define TSET -76
#define TCLS -75
/* Arduino functions (10) */
#define TPINM -74
#define TDWRITE -73
#define TDREAD -72
#define TAWRITE -71
#define TAREAD -70
#define TDELAY -69
#define TMILLIS -68
#define TTONE -67
#define TPULSEIN -66
#define TAZERO -65
#define TLED -64
/* the DOS functions (5) */
#define TCATALOG -63
#define TDELETE -62
#define TOPEN -61
#define TCLOSE -60
#define TFDISK -59
/* low level access of internal routines (2) */
#define TUSR -58
#define TCALL -57
/* mathematical functions (7) */
#define TSIN -56
#define TCOS -55
#define TTAN -54
#define TATAN -53
#define TLOG -52
#define TEXP -51
#define TINT -50
/* graphics - experimental - rudimentary (7) */
#define TCOLOR -49
#define TPLOT -48
#define TLINE -47
#define TCIRCLE -46
#define TRECT -45
#define TFCIRCLE -44
#define TFRECT -43
/* the Dartmouth extensions (6) */
#define TDATA -42
#define TREAD -41
#define TRESTORE -40
#define TDEF -39
#define TFN -38
#define TON -37
/* the latecomer ELSE */
#define TELSE -36
/* darkarts (3) */
#define TMALLOC -35
#define TFIND -34
#define TEVAL -33
/* iot extensions (9) */
#define TASSIGN -32
#define TAVAIL -31
#define TSTR -30
#define TINSTR -29
#define TVAL -28
#define TNETSTAT -27
#define TSENSOR -26
#define TWIRE -25
#define TSLEEP -24
/* constants used for some obscure purposes */
#define TBUFFER -2
/* UNKNOWN is not used in the current code, the
* lexer tokenizes everything blindly. There is a UNKNOWN hook
* in statement for a grammar aware lexer */
#define UNKNOWN -1
/* the number of keywords, and the base index of the keywords */
#define NKEYWORDS 3+19+13+12+11+5+2+7+7+7+12
#define BASEKEYWORD -121
/*
* Interpreter states
* SRUN means running from a programm
* SINT means interactive mode
* SERUN means running directly from EEPROM
* (enum would be the right way of doing this.)
* BREAKCHAR is the character stopping the program on Ardunios
* BREAKPIN can be set, it is a pin that needs to go to low to stop a BASIC program
* This should be done in hardware*.h
*
*/
#define SINT 0
#define SRUN 1
#define SERUN 2
#define BREAKCHAR '#'
/*
* Arduino input and output channels
*/
#define OSERIAL 1
#define ODSP 2
#define OPRT 4
#define OWIRE 7
#define ORADIO 8
#define OMQTT 9
#define OFILE 16
#define ISERIAL 1
#define IKEYBOARD 2
#define ISERIAL1 4
#define IWIRE 7
#define IRADIO 8
#define IMQTT 9
#define IFILE 16
/*
* All BASIC keywords for the tokens
*/
const char sge[] PROGMEM = "=>";
const char sle[] PROGMEM = "<=";
const char sne[] PROGMEM = "<>";
/* Palo Alto language set */
const char sprint[] PROGMEM = "PRINT";
const char slet[] PROGMEM = "LET";
const char sinput[] PROGMEM = "INPUT";
const char sgoto[] PROGMEM = "GOTO";
const char sgosub[] PROGMEM = "GOSUB";
const char sreturn[] PROGMEM = "RETURN";
const char sif[] PROGMEM = "IF";
const char sfor[] PROGMEM = "FOR";
const char sto[] PROGMEM = "TO";
const char sstep[] PROGMEM = "STEP";
const char snext[] PROGMEM = "NEXT";
const char sstop[] PROGMEM = "STOP";
const char slist[] PROGMEM = "LIST";
const char snew[] PROGMEM = "NEW";
const char srun[] PROGMEM = "RUN";
const char sabs[] PROGMEM = "ABS";
const char srnd[] PROGMEM = "RND";
const char ssize[] PROGMEM = "SIZE";
const char srem[] PROGMEM = "REM";
/* Apple 1 language set */
#ifdef HASAPPLE1
const char snot[] PROGMEM = "NOT";
const char sand[] PROGMEM = "AND";
const char sor[] PROGMEM = "OR";
const char slen[] PROGMEM = "LEN";
const char ssgn[] PROGMEM = "SGN";
const char speek[] PROGMEM = "PEEK";
const char sdim[] PROGMEM = "DIM";
const char sclr[] PROGMEM = "CLR";
const char shimem[] PROGMEM = "HIMEM";
const char stab[] PROGMEM = "TAB";
const char sthen[] PROGMEM = "THEN";
const char sbend[] PROGMEM = "END";
const char spoke[] PROGMEM = "POKE";
#endif
/* Stefan's basic additions */
#ifdef HASSTEFANSEXT
const char scont[] PROGMEM = "CONT";
const char ssqr[] PROGMEM = "SQR";
const char spow[] PROGMEM = "POW";
const char smap[] PROGMEM = "MAP";
const char sdump[] PROGMEM = "DUMP";
const char sbreak[] PROGMEM = "BREAK";
#endif
/* LOAD and SAVE is always there */
const char ssave[] PROGMEM = "SAVE";
const char sload[] PROGMEM = "LOAD";
#ifdef HASSTEFANSEXT
const char sget[] PROGMEM = "GET";
const char sput[] PROGMEM = "PUT";
const char sset[] PROGMEM = "SET";
const char scls[] PROGMEM = "CLS";
#endif
/* Arduino functions */
#ifdef HASARDUINOIO
const char spinm[] PROGMEM = "PINM";
const char sdwrite[] PROGMEM = "DWRITE";
const char sdread[] PROGMEM = "DREAD";
const char sawrite[] PROGMEM = "AWRITE";
const char saread[] PROGMEM = "AREAD";
const char sdelay[] PROGMEM = "DELAY";
const char smillis[] PROGMEM = "MILLIS";
const char sazero[] PROGMEM = "AZERO";
const char sled[] PROGMEM = "LED";
#endif
#ifdef HASTONE
const char stone[] PROGMEM = "PLAY";
#endif
#ifdef HASPULSE
const char splusein[] PROGMEM = "PULSEIN";
#endif
/* DOS functions */
#ifdef HASFILEIO
const char scatalog[] PROGMEM = "CATALOG";
const char sdelete[] PROGMEM = "DELETE";
const char sfopen[] PROGMEM = "OPEN";
const char sfclose[] PROGMEM = "CLOSE";
const char sfdisk[] PROGMEM = "FDISK";
#endif
/* low level access functions */
#ifdef HASSTEFANSEXT
const char susr[] PROGMEM = "USR";
const char scall[] PROGMEM = "CALL";
#endif
/* mathematics */
#ifdef HASFLOAT
const char ssin[] PROGMEM = "SIN";
const char scos[] PROGMEM = "COS";
const char stan[] PROGMEM = "TAN";
const char satan[] PROGMEM = "ATAN";
const char slog[] PROGMEM = "LOG";
const char sexp[] PROGMEM = "EXP";
#endif
/* INT is always needed to make float/int programs compatible */
const char sint[] PROGMEM = "INT";
/* elemetars graphics */
#ifdef HASGRAPH
const char scolor[] PROGMEM = "COLOR";
const char splot[] PROGMEM = "PLOT";
const char sline[] PROGMEM = "LINE";
const char scircle[] PROGMEM = "CIRCLE";
const char srect[] PROGMEM = "RECT";
const char sfcircle[] PROGMEM = "FCIRCLE";
const char sfrect[] PROGMEM = "FRECT";
#endif
/* Dartmouth BASIC extensions */
#ifdef HASDARTMOUTH
const char sdata[] PROGMEM = "DATA";
const char sread[] PROGMEM = "READ";
const char srestore[] PROGMEM = "RESTORE";
const char sdef[] PROGMEM = "DEF";
const char sfn[] PROGMEM = "FN";
const char son[] PROGMEM = "ON";
#endif
/* a latecomer the ELSE command */
#ifdef HASSTEFANSEXT
const char selse[] PROGMEM = "ELSE";
#endif
/* The Darkarts commands unthinkable in Dartmouth */
#ifdef HASDARKARTS
const char smalloc[] PROGMEM = "MALLOC";
const char sfind[] PROGMEM = "FIND";
const char seval[] PROGMEM = "EVAL";
#endif
/* iot extensions */
#ifdef HASIOT
const char sassign[] PROGMEM = "ASSIGN";
const char savail[] PROGMEM = "AVAIL";
const char sstr[] PROGMEM = "STR";
const char sinstr[] PROGMEM = "INSTR";
const char sval[] PROGMEM = "VAL";
const char snetstat[] PROGMEM = "NETSTAT";
const char ssensor[] PROGMEM = "SENSOR";
const char swire[] PROGMEM = "WIRE";
const char ssleep[] PROGMEM = "SLEEP";
#endif
/* zero terminated keyword storage */
const char* const keyword[] PROGMEM = {
sge, sle, sne, sprint, slet, sinput,
sgoto, sgosub, sreturn, sif, sfor, sto,
sstep, snext, sstop, slist, snew, srun,
sabs, srnd, ssize, srem,
#ifdef HASAPPLE1
snot, sand, sor, slen, ssgn, speek, sdim,
sclr, shimem, stab, sthen,
sbend, spoke,
#endif
#ifdef HASSTEFANSEXT
scont, ssqr, spow, smap, sdump, sbreak,
#endif
ssave, sload,
#ifdef HASSTEFANSEXT
sget, sput, sset, scls,
#endif
#ifdef HASARDUINOIO
spinm, sdwrite, sdread, sawrite, saread,
sdelay, smillis, sazero, sled,
#endif
#ifdef HASTONE
stone,
#endif
#ifdef HASPULSE
splusein,
#endif
#ifdef HASFILEIO
scatalog, sdelete, sfopen, sfclose, sfdisk,
#endif
#ifdef HASSTEFANSEXT
susr, scall,
#endif
#ifdef HASFLOAT
ssin, scos, stan, satan, slog, sexp,
#endif
sint,
#ifdef HASGRAPH
scolor, splot, sline, scircle, srect,
sfcircle, sfrect,
#endif
#ifdef HASDARTMOUTH
sdata, sread, srestore, sdef, sfn, son,
#endif
#ifdef HASSTEFANSEXT
selse,
#endif
#ifdef HASDARKARTS
smalloc, sfind, seval,
#endif
#ifdef HASIOT
sassign, savail, sstr, sinstr, sval,
snetstat, ssensor, swire, ssleep,
#endif
0
};
/* the zero terminated token dictonary needed for scalability */
const signed char tokens[] PROGMEM = {
GREATEREQUAL, LESSEREQUAL, NOTEQUAL, TPRINT, TLET,
TINPUT, TGOTO, TGOSUB, TRETURN, TIF, TFOR, TTO, TSTEP,
TNEXT, TSTOP, TLIST, TNEW, TRUN, TABS, TRND, TSIZE, TREM,
#ifdef HASAPPLE1
TNOT, TAND, TOR, TLEN, TSGN, TPEEK, TDIM, TCLR,
THIMEM, TTAB, TTHEN, TEND, TPOKE,
#endif
#ifdef HASSTEFANSEXT
TCONT, TSQR, TPOW, TMAP, TDUMP, TBREAK,
#endif
TSAVE, TLOAD,
#ifdef HASSTEFANSEXT
TGET, TPUT, TSET, TCLS,
#endif
#ifdef HASARDUINOIO
TPINM, TDWRITE, TDREAD, TAWRITE, TAREAD, TDELAY, TMILLIS,
TAZERO, TLED,
#endif
#ifdef HASTONE
TTONE,
#endif
#ifdef HASPULSE
TPULSEIN,
#endif
#ifdef HASFILEIO
TCATALOG, TDELETE, TOPEN, TCLOSE, TFDISK,
#endif
#ifdef HASSTEFANSEXT
TUSR, TCALL,
#endif
#ifdef HASFLOAT
TSIN, TCOS, TTAN, TATAN, TLOG, TEXP,
#endif
TINT,
#ifdef HASGRAPH
TCOLOR, TPLOT, TLINE, TCIRCLE, TRECT,
TFCIRCLE, TFRECT,
#endif
#ifdef HASDARTMOUTH
TDATA, TREAD, TRESTORE, TDEF, TFN, TON,
#endif
#ifdef HASSTEFANSEXT
TELSE,
#endif
#ifdef HASDARKARTS
TMALLOC, TFIND, TEVAL,
#endif
#ifdef HASIOT
TASSIGN, TAVAIL, TSTR, TINSTR, TVAL, TNETSTAT,
TSENSOR, TWIRE, TSLEEP,
#endif
0
};
/*
* the message catalog
*/
#define MFILE 0
#define MPROMPT 1
#define MGREET 2
#define MLINE 3
#define MNUMBER 4
#define MVARIABLE 5
#define MARRAY 6
#define MSTRING 7
#define MSTRINGVAR 8
#define EGENERAL 9
#define EUNKNOWN 10
#define ENUMBER 11
#define EDIVIDE 12
#define ELINE 13
#define ERETURN 14
#define ENEXT 15
#define EGOSUB 16
#define EFOR 17
#define EOUTOFMEMORY 18
#define ESTACK 19
#define EDIM 20
#define EORANGE 21
#define ESTRING 22
#define EVARIABLE 23
#define EFILE 24
#define EFUN 25
#define EARGS 26
#define EEEPROM 27
#define ESDCARD 28
const char mfile[] PROGMEM = "file.bas";
const char mprompt[] PROGMEM = "> ";
const char mgreet[] PROGMEM = "Stefan's Basic 1.4a";
const char mline[] PROGMEM = "LINE";
const char mnumber[] PROGMEM = "NUMBER";
const char mvariable[] PROGMEM = "VARIABLE";
const char marray[] PROGMEM = "ARRAY";
const char mstring[] PROGMEM = "STRING";
const char mstringv[] PROGMEM = "STRINGVAR";
const char egeneral[] PROGMEM = "Error";
#ifdef HASERRORMSG
const char eunknown[] PROGMEM = "Syntax";
const char enumber[] PROGMEM = "Number";
const char edivide[] PROGMEM = "Div by 0";
const char eline[] PROGMEM = "Unknown Line";
const char ereturn[] PROGMEM = "Return";
const char enext[] PROGMEM = "Next";
const char egosub[] PROGMEM = "GOSUB";
const char efor[] PROGMEM = "FOR";
const char emem[] PROGMEM = "Memory";
const char estack[] PROGMEM = "Stack";
const char edim[] PROGMEM = "DIM";
const char erange[] PROGMEM = "Range";
const char estring[] PROGMEM = "String";
const char evariable[] PROGMEM = "Variable";
const char efile[] PROGMEM = "File";
const char efun[] PROGMEM = "Function";
const char eargs[] PROGMEM = "Args";
const char eeeprom[] PROGMEM = "EEPROM";
const char esdcard[] PROGMEM = "SD card";
#endif
const char* const message[] PROGMEM = {
mfile, mprompt, mgreet,
mline, mnumber, mvariable, marray,
mstring, mstringv,
egeneral
#ifdef HASERRORMSG
, eunknown, enumber, edivide, eline, ereturn,
enext, egosub, efor, emem, estack, edim, erange,
estring, evariable, efile, efun, eargs,
eeeprom, esdcard
#endif
};
/*
* code for variable numbers and addresses sizes
* the original code was 16 bit but can be extended here
* to arbitrary types
*
* number_t is the type for numerical work - either float or int
* wnumber_t is the type containing the largest printable integer,
* for float keep this int on 32 bit and long on 8 bit unless you
* want to use very long integers, like 64 or 128 bit types.
* address_t is an unsigned type adddressing memory
* mem_t is a SIGNED 8bit character type.
* index_t is a SIGNED minimum 16 bit integer type
*
* works with the tacit assumption that
* sizeof(number_t) >= sizeof(address_t)
* and that the entire memory is smaller than the positive
* part of number type (!!)
*
* we assume that float >= 4 bytes in the following
*
* maxnum: the maximum accurate(!) integer of a
* 32 bit float
* strindexsize: the index size of strings either
* 1 byte or 2 bytes - no other values supported
*
*
*/
#ifdef HASFLOAT
typedef float number_t;
const number_t maxnum=16777216;
typedef long wnumber_t;
#else
typedef int number_t;
typedef int wnumber_t;
const number_t maxnum=(number_t)~((number_t)1<<(sizeof(number_t)*8-1));
#endif
typedef unsigned short address_t; /* this type addresses memory */
const int numsize=sizeof(number_t);
const int addrsize=sizeof(address_t);
const int eheadersize=sizeof(address_t)+1;
const int strindexsize=2; /* default in the meantime, strings up to unsigned 16 bit length */
const address_t maxaddr=(address_t)(~0);
typedef signed char mem_t; /* a signed 8 bit type for the memory */
typedef short index_t; /* this type counts at least 16 bit */
/*
* system type identifiers
*/
#define SYSTYPE_UNKNOWN 0
#define SYSTYPE_AVR 1
#define SYSTYPE_ESP8266 2
#define SYSTYPE_ESP32 3
#define SYSTYPE_RP2040 4
#define SYSTYPE_SAM 5
#define SYSTYPE_POSIX 32
#define SYSTYPE_MSDOS 33
/*
* The basic interpreter is implemented as a stack machine
* with global variable for the interpreter state, the memory
* and the arithmetic during run time.
*
* stack is the stack memory and sp controls the stack.
*
* ibuffer is an input buffer and *bi a pointer to it.
*
* sbuffer is a short buffer for arduino progmem access.
*
* vars is a static array of 26 single character variables.
*
* mem is the working memory of the basic interperter.
*
* x, y, xc, yc are two n*8 bit and two 8 bit accumulators.
*
* ax, ax are address type accumulators.
*
* z is a mixed n*8 bit accumulator
*
* ir, ir2 are general index registers for string processing.
*
* token contains the actually processes token.
*
* er is the nontrapable error status
*
* ert is the trapable error status
*
* st, here and top are the interpreter runtime controls.
*
* nvars is the number of vars the interpreter has stored.
*
* form is used for number formation Palo Alto BASIC style.
*
* charcount counts the printed characters to create a real TAB
* only implemented on the serial stream
* reltab controls if the relative char mechanisms is active
*
* rd is the random number storage.
*
* fnc counts the depth of for - next loop nesting
*
* args is the global arg count variable
*
* id and od are the input and output model for an arduino
* they are set to serial by default
*
* idd and odd are the default values of the above
*
* debuglevel is the statement loop debug level
*
* data is the data pointer of the READ/DATA mechanism
*
* static keyword here is obsolete on most platforms
*
*/
static number_t stack[STACKSIZE];
static address_t sp=0;
static char sbuffer[SBUFSIZE];
static char ibuffer[BUFSIZE] = "\0";
static char *bi;
static number_t vars[VARSIZE];
#if MEMSIZE != 0
static mem_t mem[MEMSIZE];
#else
static mem_t* mem;
#endif
static address_t himem, memsize;
static struct {mem_t varx; mem_t vary; address_t here; number_t to; number_t step;} forstack[FORDEPTH];
static index_t forsp = 0;
static mem_t fnc;
static address_t gosubstack[GOSUBDEPTH];
static index_t gosubsp = 0;
static number_t x, y;
static mem_t xc, yc;
static address_t ax, ay;
/* this union is used to store larger objects into byte oriented memory */
struct twobytes {mem_t l; mem_t h;};
static union accunumber { number_t i; address_t a; struct twobytes b; mem_t c[sizeof(number_t)]; } z;
static char *ir, *ir2;
static mem_t token;
static mem_t er;
static mem_t ert;
static mem_t st;
static address_t here;
static address_t top;
static address_t nvars = 0;
static mem_t form = 0;
#ifdef HASMSTAB
static mem_t charcount = 0;
static mem_t reltab = 0;
#endif
#ifdef HASARRAYLIMIT
static address_t arraylimit = 1;
#else
const static address_t arraylimit = 1;
#endif
static mem_t args;
/* this is unsigned hence address_t */
static address_t rd;
/* output and input vector */
static mem_t id;
static mem_t od;
/* default IO - not constant, can be changed at runtime
through a user call */
static mem_t idd = ISERIAL;
static mem_t odd = OSERIAL;
/* the runtime debuglevel */
static mem_t debuglevel = 0;
/* data pointer */
#ifdef HASDARTMOUTH
static address_t data = 0;
#endif
/*
* process command line arguments in the POSIX world
* bnointafterrun is a flag to remember if called as command
* line argument, in this case we don't return to interactive
*/
#ifndef ARDUINO
int bargc;
char** bargv;
mem_t bnointafterrun = 0;
#endif
/*
* Yield counter, we count when we did yield the last time
* lastyield controlls the client loops of network functions
* like mqtt, scanned keyboard, and USB.
*
* lastlongyield controls longterm functions like DHCP lease
* renewal in Ethernet
*
* there variables are only needed if the platform has background
* tasks
*/
static long lastyield=0;
static long lastlongyield=0;
/* formaters lastouttoken and spaceafterkeyword to make a nice LIST */
static mem_t lastouttoken;
static mem_t spaceafterkeyword;
/*
* the cache for the heap search - helps the string code
* the last found object on the heap is remembered. This is needed
* because the string code sometime searches the heap twice during the
* same operation.
*/
#ifdef HASAPPLE1
static mem_t bfindc, bfindd, bfindt;
static address_t bfinda, bfindz;
#endif
/* the interrupt vector - not yet implemented */
#ifdef HASINTERRUPTS
static short interruptvector;
#endif
/*
* Function prototypes, ordered by layers
* HAL - hardware abstraction
* Layer 0 - memory and I/O
* Layer 1 - Program storage and control
* Layer 2 - Where stuff happens
*/
/*
* HAL - see hardware-*.h
* This is the hardware abstraction layer of the BASIC
* interpreter
*/
/* setup codes */
void timeinit();
void wiringbegin();
/* low level mem and hardware features */
long freeRam();
long freememorysize();
void restartsystem();
void activatesleep(long t);
/* start the spi bus */
void spibegin();
/*
* the hardware interface display driver functions, need to be
* implemented for the display driver to work
* dspupdate() only for display like Epapers
*/
void dspbegin();
void dspprintchar(char, mem_t, mem_t);
void dspclear();
void dspupdate();
/* keyboard code */
void kbdbegin();
int kbdstat(char);
char kbdavailable();
char kbdread();
char kbdcheckch();
/* graphics functions */
void rgbcolor(int, int, int);
void vgacolor(short c);
void vgascale(int*, int*);
void plot(int, int);
void line(int, int, int, int);
void rect(int, int, int, int);
void frect(int, int, int, int);
void circle(int, int, int);
void fcircle(int, int, int);
/* text output to a VGA display */
void vgabegin();
int vgastat(char);
void vgawrite(char);
/* generic display code */
void dspwrite(char);
void dspbegin();
int dspstat(char);
char dspwaitonscroll();
char dspactive();
void dspsetupdatemode(char);
char dspgetupdatemode();
void dspgraphupdate();
void dspsetscrollmode(char, short);
void dspsetcursor(short, short);
void dspbufferclear();
void dspscroll(mem_t, mem_t);
void dspreversescroll(mem_t);
void dspvt52(char *);
/* real time clock */
char* rtcmkstr();
void rtcset(uint8_t, short);
short rtcget(short);
/* network and mqtt functions */
void netbegin();
char netconnected();
void mqttsetname();
void mqttbegin();
int mqttstat(char);
int mqttstate();
void mqttsubscribe(char*);
void mqttsettopic(char*);
void mqttouts(char *, short);
void mqttins(char *, short);
char mqttinch();
/* low level EEPROM handling */
void ebegin();
void eflush();
address_t elength();
short eread(address_t);
void eupdate(address_t, short);
/* arduino io functions */
void aread();
void dread();
void awrite(number_t, number_t);
void dwrite(number_t, number_t);
void pinm(number_t, number_t);
void bmillis();
void bpulsein();
void btone(short);
/* timing control for ESP and network */
void byield();
void yieldfunction();
void longyieldfunction();
/* the file interface */
char* mkfilename(const char*);
const char* rmrootfsprefix(const char*);
void fsbegin(char);
int fsstat(char);
void filewrite(char);
char fileread();
char ifileopen(const char*);
void ifileclose();
char ofileopen(char*, const char*);
void ofileclose();
int fileavailable();
void rootopen();
int rootnextfile();
int rootisfile();
const char* rootfilename();
int rootfilesize();
void rootfileclose();
void rootclose();
void formatdisk(short i);
/* low level serial code */
void picogetchar(char);
void picowrite(char);
void picobegin(uint32_t);
void picoins(char, short);
void serialbegin();
int serialstat(char);
char serialread();
void serialwrite(char);
short serialcheckch();
short serialavailable();
void consins(char*, short);
void prtbegin();
int prtstat(char);
void prtset(int);