├── .gitattributes ├── CONTRIBUTING.md ├── FILES ├── README.md ├── WORKFLOW ├── grammar ├── FIRST.txt ├── FOLLOW.txt ├── m2ast-grammar.gll ├── m2bsk-grammar.gll ├── m2cli-grammar.gll ├── m2fnxlat-grammar.gll ├── m2libconfig-grammar.gll ├── primitive-trie-analysis.txt └── resword-trie-analysis.txt ├── ide-support └── m2bsk.vim ├── src ├── AST.def ├── ArgLexer.def ├── ArgParser.def ├── AstNodeType.def ├── AstQueue.def ├── BuildParams.def ├── CompilerOptions.def ├── DepGraph.def ├── LexQueue.def ├── Lexer.def ├── MatchLex.def ├── ModuleKey.def ├── NonTerminals.def ├── Parser.def ├── Primitive.def ├── Resword.def ├── Symbol.def ├── Token.def ├── TokenSet.16bit.def ├── TokenSet.32bit.def ├── TokenSet.64bit.def ├── imp │ ├── AST.mod │ ├── ArgParser.mod │ ├── AstNodeType.mod │ ├── CompilerOptions.mod │ ├── Lexer.mod │ ├── M2BSK.mod │ ├── MatchLex.mod │ ├── NonTerminals.16bit.mod │ ├── NonTerminals.32bit.mod │ ├── NonTerminals.64bit.mod │ ├── Parser.mod │ ├── Primitive.mod │ ├── Resword.mod │ ├── Token.mod │ ├── TokenSet.16bit.mod │ ├── TokenSet.32bit.mod │ └── TokenSet.64bit.mod └── lib │ ├── AOC.def │ ├── CARD64 │ ├── CARD64.CARDINAL32.def │ ├── CARD64.LONGINT32.def │ ├── Card64BitOps.def │ ├── Card64Math.def │ ├── README.md │ └── imp │ │ ├── CARD64.CARDINAL32.mod │ │ ├── CARD64.LONGINT32.mod │ │ ├── Card64BitOps.CARDINAL32.mod │ │ ├── Card64BitOps.LONGINT32.mod │ │ ├── Card64Math.CARDINAL32.mod │ │ └── Card64Math.LONGINT32.mod │ ├── CardBitOps.def │ ├── CardMath.def │ ├── Char.def │ ├── Hash │ ├── Hash.CARDINAL32.def │ ├── Hash.LONGINT32.def │ ├── LongHash.CARD64.def │ ├── LongHash.LONGINT64.def │ ├── README.md │ └── imp │ │ ├── Hash.CARDINAL32.mod │ │ ├── Hash.LONGINT32.mod │ │ ├── LongHash.CARD64.mod │ │ └── LongHash.LONGINT64.mod │ ├── IO │ ├── BasicFileIO.def │ ├── Console.def │ ├── Consolidate │ │ ├── FileSystem.def │ │ ├── Fileutils.def │ │ ├── SimpleFileIO.def │ │ ├── Source.def │ │ └── imp │ │ │ └── Source.mod │ ├── FilenameXlat.def │ ├── Infile.iso.def │ ├── Infile.pim.def │ ├── Newline.def │ ├── Outfile.iso.def │ ├── Outfile.pim.def │ ├── Tabulator.def │ ├── Terminal.iso.def │ └── imp │ │ ├── Console.mod │ │ ├── Infile.mod │ │ ├── Newline.mod │ │ ├── Tabulator.mod │ │ ├── Terminal.duplicate.iso.mod │ │ └── Terminal.iso.mod │ ├── ISO646.def │ ├── IntBitOps.def │ ├── IntMath.def │ ├── LONGCARD.def │ ├── LongIntBitOps.def │ ├── LongIntMath.def │ ├── Octet.def │ ├── Pathnames │ ├── Pathname.def │ ├── PathnamePolicy.amigaos.def │ ├── PathnamePolicy.default.def │ ├── PathnamePolicy.macos.def │ ├── PathnamePolicy.msdos.def │ ├── PathnamePolicy.openvms.def │ ├── PathnamePolicy.os2.def │ ├── PathnamePolicy.posix.def │ ├── PathnamePolicy.windows.def │ ├── README.md │ └── imp │ │ ├── Pathname.posix.mod │ │ └── Pathname.windows.mod │ ├── String.def │ ├── String.gen.def │ ├── UnsignedInt.def │ ├── imp │ ├── CardBitOps.mod │ ├── CardMath.mod │ ├── Char.mod │ ├── IntBitOps.mod │ ├── LONGCARD.mod │ ├── LongIntBitOps.mod │ ├── String.iso.mod │ └── String.pim.mod │ └── unicode │ ├── Unichar.def │ ├── Unichar.mod │ ├── Unichar0.cardinal32.def │ ├── Unichar0.longint32.def │ ├── Utf8.def │ └── Utf8.mod ├── syntax_diagrams.tcl └── xeq └── LAUNCHSCRIPTS.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.def linguist-language=modula-2 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/FILES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/README.md -------------------------------------------------------------------------------- /WORKFLOW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/WORKFLOW -------------------------------------------------------------------------------- /grammar/FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/FIRST.txt -------------------------------------------------------------------------------- /grammar/FOLLOW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/FOLLOW.txt -------------------------------------------------------------------------------- /grammar/m2ast-grammar.gll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/m2ast-grammar.gll -------------------------------------------------------------------------------- /grammar/m2bsk-grammar.gll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/m2bsk-grammar.gll -------------------------------------------------------------------------------- /grammar/m2cli-grammar.gll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/m2cli-grammar.gll -------------------------------------------------------------------------------- /grammar/m2fnxlat-grammar.gll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/m2fnxlat-grammar.gll -------------------------------------------------------------------------------- /grammar/m2libconfig-grammar.gll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/m2libconfig-grammar.gll -------------------------------------------------------------------------------- /grammar/primitive-trie-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/primitive-trie-analysis.txt -------------------------------------------------------------------------------- /grammar/resword-trie-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/grammar/resword-trie-analysis.txt -------------------------------------------------------------------------------- /ide-support/m2bsk.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/ide-support/m2bsk.vim -------------------------------------------------------------------------------- /src/AST.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/AST.def -------------------------------------------------------------------------------- /src/ArgLexer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/ArgLexer.def -------------------------------------------------------------------------------- /src/ArgParser.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/ArgParser.def -------------------------------------------------------------------------------- /src/AstNodeType.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/AstNodeType.def -------------------------------------------------------------------------------- /src/AstQueue.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/AstQueue.def -------------------------------------------------------------------------------- /src/BuildParams.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/BuildParams.def -------------------------------------------------------------------------------- /src/CompilerOptions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/CompilerOptions.def -------------------------------------------------------------------------------- /src/DepGraph.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/DepGraph.def -------------------------------------------------------------------------------- /src/LexQueue.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/LexQueue.def -------------------------------------------------------------------------------- /src/Lexer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/Lexer.def -------------------------------------------------------------------------------- /src/MatchLex.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/MatchLex.def -------------------------------------------------------------------------------- /src/ModuleKey.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/ModuleKey.def -------------------------------------------------------------------------------- /src/NonTerminals.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/NonTerminals.def -------------------------------------------------------------------------------- /src/Parser.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/Parser.def -------------------------------------------------------------------------------- /src/Primitive.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/Primitive.def -------------------------------------------------------------------------------- /src/Resword.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/Resword.def -------------------------------------------------------------------------------- /src/Symbol.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/Symbol.def -------------------------------------------------------------------------------- /src/Token.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/Token.def -------------------------------------------------------------------------------- /src/TokenSet.16bit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/TokenSet.16bit.def -------------------------------------------------------------------------------- /src/TokenSet.32bit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/TokenSet.32bit.def -------------------------------------------------------------------------------- /src/TokenSet.64bit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/TokenSet.64bit.def -------------------------------------------------------------------------------- /src/imp/AST.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/AST.mod -------------------------------------------------------------------------------- /src/imp/ArgParser.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/ArgParser.mod -------------------------------------------------------------------------------- /src/imp/AstNodeType.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/AstNodeType.mod -------------------------------------------------------------------------------- /src/imp/CompilerOptions.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/CompilerOptions.mod -------------------------------------------------------------------------------- /src/imp/Lexer.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/Lexer.mod -------------------------------------------------------------------------------- /src/imp/M2BSK.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/M2BSK.mod -------------------------------------------------------------------------------- /src/imp/MatchLex.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/MatchLex.mod -------------------------------------------------------------------------------- /src/imp/NonTerminals.16bit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/NonTerminals.16bit.mod -------------------------------------------------------------------------------- /src/imp/NonTerminals.32bit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/NonTerminals.32bit.mod -------------------------------------------------------------------------------- /src/imp/NonTerminals.64bit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/NonTerminals.64bit.mod -------------------------------------------------------------------------------- /src/imp/Parser.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/Parser.mod -------------------------------------------------------------------------------- /src/imp/Primitive.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/Primitive.mod -------------------------------------------------------------------------------- /src/imp/Resword.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/Resword.mod -------------------------------------------------------------------------------- /src/imp/Token.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/Token.mod -------------------------------------------------------------------------------- /src/imp/TokenSet.16bit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/TokenSet.16bit.mod -------------------------------------------------------------------------------- /src/imp/TokenSet.32bit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/TokenSet.32bit.mod -------------------------------------------------------------------------------- /src/imp/TokenSet.64bit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/imp/TokenSet.64bit.mod -------------------------------------------------------------------------------- /src/lib/AOC.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/AOC.def -------------------------------------------------------------------------------- /src/lib/CARD64/CARD64.CARDINAL32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/CARD64.CARDINAL32.def -------------------------------------------------------------------------------- /src/lib/CARD64/CARD64.LONGINT32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/CARD64.LONGINT32.def -------------------------------------------------------------------------------- /src/lib/CARD64/Card64BitOps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/Card64BitOps.def -------------------------------------------------------------------------------- /src/lib/CARD64/Card64Math.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/Card64Math.def -------------------------------------------------------------------------------- /src/lib/CARD64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/README.md -------------------------------------------------------------------------------- /src/lib/CARD64/imp/CARD64.CARDINAL32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/imp/CARD64.CARDINAL32.mod -------------------------------------------------------------------------------- /src/lib/CARD64/imp/CARD64.LONGINT32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/imp/CARD64.LONGINT32.mod -------------------------------------------------------------------------------- /src/lib/CARD64/imp/Card64BitOps.CARDINAL32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/imp/Card64BitOps.CARDINAL32.mod -------------------------------------------------------------------------------- /src/lib/CARD64/imp/Card64BitOps.LONGINT32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/imp/Card64BitOps.LONGINT32.mod -------------------------------------------------------------------------------- /src/lib/CARD64/imp/Card64Math.CARDINAL32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/imp/Card64Math.CARDINAL32.mod -------------------------------------------------------------------------------- /src/lib/CARD64/imp/Card64Math.LONGINT32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CARD64/imp/Card64Math.LONGINT32.mod -------------------------------------------------------------------------------- /src/lib/CardBitOps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CardBitOps.def -------------------------------------------------------------------------------- /src/lib/CardMath.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/CardMath.def -------------------------------------------------------------------------------- /src/lib/Char.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Char.def -------------------------------------------------------------------------------- /src/lib/Hash/Hash.CARDINAL32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/Hash.CARDINAL32.def -------------------------------------------------------------------------------- /src/lib/Hash/Hash.LONGINT32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/Hash.LONGINT32.def -------------------------------------------------------------------------------- /src/lib/Hash/LongHash.CARD64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/LongHash.CARD64.def -------------------------------------------------------------------------------- /src/lib/Hash/LongHash.LONGINT64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/LongHash.LONGINT64.def -------------------------------------------------------------------------------- /src/lib/Hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/README.md -------------------------------------------------------------------------------- /src/lib/Hash/imp/Hash.CARDINAL32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/imp/Hash.CARDINAL32.mod -------------------------------------------------------------------------------- /src/lib/Hash/imp/Hash.LONGINT32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/imp/Hash.LONGINT32.mod -------------------------------------------------------------------------------- /src/lib/Hash/imp/LongHash.CARD64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/imp/LongHash.CARD64.mod -------------------------------------------------------------------------------- /src/lib/Hash/imp/LongHash.LONGINT64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Hash/imp/LongHash.LONGINT64.mod -------------------------------------------------------------------------------- /src/lib/IO/BasicFileIO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/BasicFileIO.def -------------------------------------------------------------------------------- /src/lib/IO/Console.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Console.def -------------------------------------------------------------------------------- /src/lib/IO/Consolidate/FileSystem.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Consolidate/FileSystem.def -------------------------------------------------------------------------------- /src/lib/IO/Consolidate/Fileutils.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Consolidate/Fileutils.def -------------------------------------------------------------------------------- /src/lib/IO/Consolidate/SimpleFileIO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Consolidate/SimpleFileIO.def -------------------------------------------------------------------------------- /src/lib/IO/Consolidate/Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Consolidate/Source.def -------------------------------------------------------------------------------- /src/lib/IO/Consolidate/imp/Source.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Consolidate/imp/Source.mod -------------------------------------------------------------------------------- /src/lib/IO/FilenameXlat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/FilenameXlat.def -------------------------------------------------------------------------------- /src/lib/IO/Infile.iso.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Infile.iso.def -------------------------------------------------------------------------------- /src/lib/IO/Infile.pim.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Infile.pim.def -------------------------------------------------------------------------------- /src/lib/IO/Newline.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Newline.def -------------------------------------------------------------------------------- /src/lib/IO/Outfile.iso.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Outfile.iso.def -------------------------------------------------------------------------------- /src/lib/IO/Outfile.pim.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Outfile.pim.def -------------------------------------------------------------------------------- /src/lib/IO/Tabulator.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Tabulator.def -------------------------------------------------------------------------------- /src/lib/IO/Terminal.iso.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/Terminal.iso.def -------------------------------------------------------------------------------- /src/lib/IO/imp/Console.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/imp/Console.mod -------------------------------------------------------------------------------- /src/lib/IO/imp/Infile.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/imp/Infile.mod -------------------------------------------------------------------------------- /src/lib/IO/imp/Newline.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/imp/Newline.mod -------------------------------------------------------------------------------- /src/lib/IO/imp/Tabulator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/imp/Tabulator.mod -------------------------------------------------------------------------------- /src/lib/IO/imp/Terminal.duplicate.iso.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/imp/Terminal.duplicate.iso.mod -------------------------------------------------------------------------------- /src/lib/IO/imp/Terminal.iso.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IO/imp/Terminal.iso.mod -------------------------------------------------------------------------------- /src/lib/ISO646.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/ISO646.def -------------------------------------------------------------------------------- /src/lib/IntBitOps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IntBitOps.def -------------------------------------------------------------------------------- /src/lib/IntMath.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/IntMath.def -------------------------------------------------------------------------------- /src/lib/LONGCARD.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/LONGCARD.def -------------------------------------------------------------------------------- /src/lib/LongIntBitOps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/LongIntBitOps.def -------------------------------------------------------------------------------- /src/lib/LongIntMath.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/LongIntMath.def -------------------------------------------------------------------------------- /src/lib/Octet.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Octet.def -------------------------------------------------------------------------------- /src/lib/Pathnames/Pathname.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/Pathname.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.amigaos.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.amigaos.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.default.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.default.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.macos.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.macos.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.msdos.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.msdos.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.openvms.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.openvms.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.os2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.os2.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.posix.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.posix.def -------------------------------------------------------------------------------- /src/lib/Pathnames/PathnamePolicy.windows.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/PathnamePolicy.windows.def -------------------------------------------------------------------------------- /src/lib/Pathnames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/README.md -------------------------------------------------------------------------------- /src/lib/Pathnames/imp/Pathname.posix.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/imp/Pathname.posix.mod -------------------------------------------------------------------------------- /src/lib/Pathnames/imp/Pathname.windows.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/Pathnames/imp/Pathname.windows.mod -------------------------------------------------------------------------------- /src/lib/String.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/String.def -------------------------------------------------------------------------------- /src/lib/String.gen.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/String.gen.def -------------------------------------------------------------------------------- /src/lib/UnsignedInt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/UnsignedInt.def -------------------------------------------------------------------------------- /src/lib/imp/CardBitOps.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/CardBitOps.mod -------------------------------------------------------------------------------- /src/lib/imp/CardMath.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/CardMath.mod -------------------------------------------------------------------------------- /src/lib/imp/Char.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/Char.mod -------------------------------------------------------------------------------- /src/lib/imp/IntBitOps.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/IntBitOps.mod -------------------------------------------------------------------------------- /src/lib/imp/LONGCARD.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/LONGCARD.mod -------------------------------------------------------------------------------- /src/lib/imp/LongIntBitOps.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/LongIntBitOps.mod -------------------------------------------------------------------------------- /src/lib/imp/String.iso.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/String.iso.mod -------------------------------------------------------------------------------- /src/lib/imp/String.pim.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/imp/String.pim.mod -------------------------------------------------------------------------------- /src/lib/unicode/Unichar.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/unicode/Unichar.def -------------------------------------------------------------------------------- /src/lib/unicode/Unichar.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/unicode/Unichar.mod -------------------------------------------------------------------------------- /src/lib/unicode/Unichar0.cardinal32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/unicode/Unichar0.cardinal32.def -------------------------------------------------------------------------------- /src/lib/unicode/Unichar0.longint32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/unicode/Unichar0.longint32.def -------------------------------------------------------------------------------- /src/lib/unicode/Utf8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/unicode/Utf8.def -------------------------------------------------------------------------------- /src/lib/unicode/Utf8.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/src/lib/unicode/Utf8.mod -------------------------------------------------------------------------------- /syntax_diagrams.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/syntax_diagrams.tcl -------------------------------------------------------------------------------- /xeq/LAUNCHSCRIPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m2sf/m2bsk/HEAD/xeq/LAUNCHSCRIPTS.md --------------------------------------------------------------------------------