├── LICENCE ├── README.md ├── RetroBASIC.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── maury.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── Amazing.xcscheme │ │ ├── RetroBASIC.xcscheme │ │ ├── SST.xcscheme │ │ └── test.xcscheme └── xcuserdata │ └── maury.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── bas ├── ahl.bas ├── amazin.dbas ├── amazing.bas ├── awari.bas ├── files.bas ├── input.bas ├── letter.hpb ├── lunar.bas ├── matrix.bas ├── sieve.bas ├── spacing.bas ├── superstartrek.bas └── test.bas ├── doc ├── AUTHORS ├── COPYING ├── RetroBASIC build notes.md ├── RetroBASIC design.md ├── RetroBASIC reference manual.md ├── TODO ├── VERSIONS ├── pass-fail.txt └── retrobasic.1 ├── git └── .gitignore ├── makefile └── src ├── errors.c ├── errors.h ├── io.c ├── io.h ├── list.c ├── list.h ├── main.c ├── matrix.c ├── matrix.h ├── parse.h ├── parse.y ├── retrobasic.c ├── retrobasic.h ├── scan.l ├── statistics.c ├── statistics.h ├── stdhdr.h ├── strng.c └── strng.h /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/README.md -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/project.xcworkspace/xcuserdata/maury.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/project.xcworkspace/xcuserdata/maury.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/xcshareddata/xcschemes/Amazing.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/xcshareddata/xcschemes/Amazing.xcscheme -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/xcshareddata/xcschemes/RetroBASIC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/xcshareddata/xcschemes/RetroBASIC.xcscheme -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/xcshareddata/xcschemes/SST.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/xcshareddata/xcschemes/SST.xcscheme -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/xcshareddata/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/xcshareddata/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /RetroBASIC.xcodeproj/xcuserdata/maury.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/RetroBASIC.xcodeproj/xcuserdata/maury.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /bas/ahl.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/ahl.bas -------------------------------------------------------------------------------- /bas/amazin.dbas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/amazin.dbas -------------------------------------------------------------------------------- /bas/amazing.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/amazing.bas -------------------------------------------------------------------------------- /bas/awari.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/awari.bas -------------------------------------------------------------------------------- /bas/files.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/files.bas -------------------------------------------------------------------------------- /bas/input.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/input.bas -------------------------------------------------------------------------------- /bas/letter.hpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/letter.hpb -------------------------------------------------------------------------------- /bas/lunar.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/lunar.bas -------------------------------------------------------------------------------- /bas/matrix.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/matrix.bas -------------------------------------------------------------------------------- /bas/sieve.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/sieve.bas -------------------------------------------------------------------------------- /bas/spacing.bas: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bas/superstartrek.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/superstartrek.bas -------------------------------------------------------------------------------- /bas/test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/bas/test.bas -------------------------------------------------------------------------------- /doc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/AUTHORS -------------------------------------------------------------------------------- /doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/COPYING -------------------------------------------------------------------------------- /doc/RetroBASIC build notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/RetroBASIC build notes.md -------------------------------------------------------------------------------- /doc/RetroBASIC design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/RetroBASIC design.md -------------------------------------------------------------------------------- /doc/RetroBASIC reference manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/RetroBASIC reference manual.md -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/TODO -------------------------------------------------------------------------------- /doc/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/VERSIONS -------------------------------------------------------------------------------- /doc/pass-fail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/pass-fail.txt -------------------------------------------------------------------------------- /doc/retrobasic.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/doc/retrobasic.1 -------------------------------------------------------------------------------- /git/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/git/.gitignore -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/makefile -------------------------------------------------------------------------------- /src/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/errors.c -------------------------------------------------------------------------------- /src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/errors.h -------------------------------------------------------------------------------- /src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/io.c -------------------------------------------------------------------------------- /src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/io.h -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/list.c -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/list.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/main.c -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/parse.h -------------------------------------------------------------------------------- /src/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/parse.y -------------------------------------------------------------------------------- /src/retrobasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/retrobasic.c -------------------------------------------------------------------------------- /src/retrobasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/retrobasic.h -------------------------------------------------------------------------------- /src/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/scan.l -------------------------------------------------------------------------------- /src/statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/statistics.c -------------------------------------------------------------------------------- /src/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/statistics.h -------------------------------------------------------------------------------- /src/stdhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/stdhdr.h -------------------------------------------------------------------------------- /src/strng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/strng.c -------------------------------------------------------------------------------- /src/strng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurymarkowitz/RetroBASIC/HEAD/src/strng.h --------------------------------------------------------------------------------