Skip to content

Commit d6d5bb7

Browse files
committed
version 0
1 parent 7776dd1 commit d6d5bb7

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

basic.c

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
/*
2+
*
3+
* _____ ____ __ __ ____ _____ _____ _____
4+
* / ____| _ \| \/ | | _ \ /\ / ____|_ _/ ____|
5+
* | | | |_) | \ / |______| |_) | / \ | (___ | || |
6+
* | | | _ <| |\/| |______| _ < / /\ \ \___ \ | || |
7+
* | |____| |_) | | | | | |_) / ____ \ ____) |_| || |____
8+
* \_____|____/|_| |_| |____/_/ \_\_____/|_____\_____|
9+
* .............................................................
10+
*
11+
* [Version 0.1.0]
12+
*
213
* BASIC interpreter targeting CBM BASIC v2 style programs.
314
* Copyright (C) 2024 Davepl with various AI assists
415
*
@@ -79,10 +90,7 @@ static void init_console_ansi(void)
7990
}
8091
#endif
8192

82-
/* 211BSD-friendly BASIC interpreter targeting CBM BASIC v2 style programs.
83-
* Implements a minimal but compatible feature set: line-numbered programs,
84-
* PRINT/INPUT/LET (implicit), IF/THEN, GOTO, GOSUB/RETURN, FOR/NEXT, DIM,
85-
* REM, END/STOP and statement separators (:). */
93+
// DEFINES
8694

8795
#define MAX_LINES 1024
8896
#define MAX_LINE_LEN 256

0 commit comments

Comments
 (0)