├── .gitattributes ├── LICENSE.txt ├── bugs ├── bug001.mod ├── bug006.def ├── bug006.mod ├── bug007.mod ├── bug008.mod ├── bug010.mod ├── bug011.mod ├── bug012.mod ├── bug013.mod ├── bug014.mod ├── bug015.mod └── buglist ├── compile.mod ├── compile.rez ├── def ├── fixtypes ├── libs ├── asm │ ├── finder.data │ ├── longmath.asm │ ├── m2lib.asm │ ├── m2lib.macros │ ├── mathlib.asm │ ├── mathlib.macros │ ├── mathlib0.asm │ └── storage.asm ├── build ├── build2 ├── buildlib ├── def │ ├── ace.def │ ├── ascii.def │ ├── cdaconsole.def │ ├── charset.def │ ├── common.def │ ├── consoleio.def │ ├── controlmana.def │ ├── crc.def │ ├── deskmanager.def │ ├── dialogmanag.def │ ├── eventmanage.def │ ├── ezcommandli.def │ ├── ezcontrols.def │ ├── ezdump.def │ ├── ezfilesyste.def │ ├── ezlineedit.def │ ├── ezpaths.def │ ├── ezstorage.def │ ├── ezstrings.def │ ├── eztools.def │ ├── fastfilesys.def │ ├── filesystem.def │ ├── finder.data │ ├── fontmanager.def │ ├── gsbug.def │ ├── gsosinterfa.def │ ├── inout.def │ ├── integermath.def │ ├── lineedit.def │ ├── listmanager.def │ ├── lists.def │ ├── listutility.def │ ├── loader.def │ ├── longmath.def │ ├── m2lib.def │ ├── mathlib0.def │ ├── memorymanag.def │ ├── menumanager.def │ ├── midi.def │ ├── misctoolset.def │ ├── notesequenc.def │ ├── notesynthes.def │ ├── numberconve.def │ ├── orcashell.def │ ├── printmanage.def │ ├── quickdrawii.def │ ├── realconvers.def │ ├── realinout.def │ ├── resourceman.def │ ├── scheduler.def │ ├── scrapmanage.def │ ├── soundmanage.def │ ├── standardfil.def │ ├── storage.def │ ├── strings.def │ ├── superread.def │ ├── terminal.def │ ├── textedit.def │ ├── texttools.def │ ├── toollocator.def │ ├── w65c816.def │ └── windowmanag.def ├── fixasmkeys ├── fixasmkeys.sh ├── fixtypes ├── keysuffix.sed ├── m2lib.macros ├── m2lkey.sed ├── m2lprefix.sed ├── mathlib.macros ├── mod │ ├── cdaconsole.mod │ ├── common.mod │ ├── consoleio.mod │ ├── crc.mod │ ├── ezcommandli.mod │ ├── ezcontrols.mod │ ├── ezdump.mod │ ├── ezfilesyste.mod │ ├── ezlineedit.mod │ ├── ezpaths.mod │ ├── ezstorage.mod │ ├── ezstrings.mod │ ├── eztools.mod │ ├── fastfilesys.mod │ ├── filesystem.mod │ ├── finder.data │ ├── gsosinterfa.mod │ ├── inout.mod │ ├── lists.mod │ ├── listutility.mod │ ├── numberconve.mod │ ├── realconvers.mod │ ├── realinout.mod │ ├── storage.mod │ ├── strings.mod │ ├── superread.mod │ └── terminal.mod ├── storagekey.sed └── storageprefix.sed ├── m2clock.def ├── m2clock.mod ├── m2cm.def ├── m2cm.mod ├── m2debug.def ├── m2debug.mod ├── m2dm.def ├── m2dm.mod ├── m2em.def ├── m2em.mod ├── m2fm.def ├── m2fm.mod ├── m2hm.def ├── m2hm.mod ├── m2lm.def ├── m2lm.mod ├── m2omf.def ├── m2omf.mod ├── m2rm.def ├── m2rm.mod ├── m2sets.def ├── m2sets.mod ├── m2shell.def ├── m2shell.mod ├── m2sm.def ├── m2sm.mod ├── m2tm.def ├── m2tm.mod ├── mod ├── obj ├── l2bw └── l2bws ├── readme.md ├── releasenotes.md └── tests ├── bench1.mod ├── buildtest ├── c301.mod ├── c641.mod ├── c811.mod ├── c8211.mod ├── datasize.mod ├── deltest ├── fixtypes ├── m2cp.mod ├── pascalls.def ├── pascalls.pas ├── pcp.pas ├── runtest ├── setconst.def ├── templates ├── test.def ├── test1.mod ├── test2.mod ├── test3.mod ├── testconst.mod ├── testdebug.mod ├── testdebug2.def ├── testdebug2.mod ├── testhalt.mod ├── testinit.mod ├── testinout.mod ├── testlocals.mod ├── testlocals2.def ├── testlocals2.mod ├── testmath.mod ├── testmath.pas ├── testmm.mod ├── testmod1.def ├── testmod1.mod ├── testnilchk.mod ├── testpath.mod ├── testset.mod ├── testset2.mod ├── teststack.mod ├── tstdiv2.mod ├── tstdiv4.mod ├── tstif.mod ├── tstlr.mod ├── tstmod2.mod ├── tstmod4.mod ├── tstmul2.mod ├── tstmul4.mod ├── tstr.mod ├── tstudiv2.mod ├── tstudiv4.mod ├── tstumod2.mod ├── tstumod4.mod ├── tstumul2.mod ├── tstumul4.mod └── twovars.mod /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /bugs/bug001.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug001.mod -------------------------------------------------------------------------------- /bugs/bug006.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug006.def -------------------------------------------------------------------------------- /bugs/bug006.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug006.mod -------------------------------------------------------------------------------- /bugs/bug007.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug007.mod -------------------------------------------------------------------------------- /bugs/bug008.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug008.mod -------------------------------------------------------------------------------- /bugs/bug010.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug010.mod -------------------------------------------------------------------------------- /bugs/bug011.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug011.mod -------------------------------------------------------------------------------- /bugs/bug012.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug012.mod -------------------------------------------------------------------------------- /bugs/bug013.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug013.mod -------------------------------------------------------------------------------- /bugs/bug014.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug014.mod -------------------------------------------------------------------------------- /bugs/bug015.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/bug015.mod -------------------------------------------------------------------------------- /bugs/buglist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/bugs/buglist -------------------------------------------------------------------------------- /compile.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/compile.mod -------------------------------------------------------------------------------- /compile.rez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/compile.rez -------------------------------------------------------------------------------- /def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/def -------------------------------------------------------------------------------- /fixtypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/fixtypes -------------------------------------------------------------------------------- /libs/asm/finder.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/finder.data -------------------------------------------------------------------------------- /libs/asm/longmath.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/longmath.asm -------------------------------------------------------------------------------- /libs/asm/m2lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/m2lib.asm -------------------------------------------------------------------------------- /libs/asm/m2lib.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/m2lib.macros -------------------------------------------------------------------------------- /libs/asm/mathlib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/mathlib.asm -------------------------------------------------------------------------------- /libs/asm/mathlib.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/mathlib.macros -------------------------------------------------------------------------------- /libs/asm/mathlib0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/mathlib0.asm -------------------------------------------------------------------------------- /libs/asm/storage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/asm/storage.asm -------------------------------------------------------------------------------- /libs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/build -------------------------------------------------------------------------------- /libs/build2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/build2 -------------------------------------------------------------------------------- /libs/buildlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/buildlib -------------------------------------------------------------------------------- /libs/def/ace.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ace.def -------------------------------------------------------------------------------- /libs/def/ascii.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ascii.def -------------------------------------------------------------------------------- /libs/def/cdaconsole.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/cdaconsole.def -------------------------------------------------------------------------------- /libs/def/charset.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/charset.def -------------------------------------------------------------------------------- /libs/def/common.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/common.def -------------------------------------------------------------------------------- /libs/def/consoleio.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/consoleio.def -------------------------------------------------------------------------------- /libs/def/controlmana.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/controlmana.def -------------------------------------------------------------------------------- /libs/def/crc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/crc.def -------------------------------------------------------------------------------- /libs/def/deskmanager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/deskmanager.def -------------------------------------------------------------------------------- /libs/def/dialogmanag.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/dialogmanag.def -------------------------------------------------------------------------------- /libs/def/eventmanage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/eventmanage.def -------------------------------------------------------------------------------- /libs/def/ezcommandli.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezcommandli.def -------------------------------------------------------------------------------- /libs/def/ezcontrols.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezcontrols.def -------------------------------------------------------------------------------- /libs/def/ezdump.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezdump.def -------------------------------------------------------------------------------- /libs/def/ezfilesyste.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezfilesyste.def -------------------------------------------------------------------------------- /libs/def/ezlineedit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezlineedit.def -------------------------------------------------------------------------------- /libs/def/ezpaths.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezpaths.def -------------------------------------------------------------------------------- /libs/def/ezstorage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezstorage.def -------------------------------------------------------------------------------- /libs/def/ezstrings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/ezstrings.def -------------------------------------------------------------------------------- /libs/def/eztools.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/eztools.def -------------------------------------------------------------------------------- /libs/def/fastfilesys.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/fastfilesys.def -------------------------------------------------------------------------------- /libs/def/filesystem.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/filesystem.def -------------------------------------------------------------------------------- /libs/def/finder.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/finder.data -------------------------------------------------------------------------------- /libs/def/fontmanager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/fontmanager.def -------------------------------------------------------------------------------- /libs/def/gsbug.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/gsbug.def -------------------------------------------------------------------------------- /libs/def/gsosinterfa.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/gsosinterfa.def -------------------------------------------------------------------------------- /libs/def/inout.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/inout.def -------------------------------------------------------------------------------- /libs/def/integermath.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/integermath.def -------------------------------------------------------------------------------- /libs/def/lineedit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/lineedit.def -------------------------------------------------------------------------------- /libs/def/listmanager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/listmanager.def -------------------------------------------------------------------------------- /libs/def/lists.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/lists.def -------------------------------------------------------------------------------- /libs/def/listutility.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/listutility.def -------------------------------------------------------------------------------- /libs/def/loader.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/loader.def -------------------------------------------------------------------------------- /libs/def/longmath.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/longmath.def -------------------------------------------------------------------------------- /libs/def/m2lib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/m2lib.def -------------------------------------------------------------------------------- /libs/def/mathlib0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/mathlib0.def -------------------------------------------------------------------------------- /libs/def/memorymanag.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/memorymanag.def -------------------------------------------------------------------------------- /libs/def/menumanager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/menumanager.def -------------------------------------------------------------------------------- /libs/def/midi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/midi.def -------------------------------------------------------------------------------- /libs/def/misctoolset.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/misctoolset.def -------------------------------------------------------------------------------- /libs/def/notesequenc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/notesequenc.def -------------------------------------------------------------------------------- /libs/def/notesynthes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/notesynthes.def -------------------------------------------------------------------------------- /libs/def/numberconve.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/numberconve.def -------------------------------------------------------------------------------- /libs/def/orcashell.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/orcashell.def -------------------------------------------------------------------------------- /libs/def/printmanage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/printmanage.def -------------------------------------------------------------------------------- /libs/def/quickdrawii.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/quickdrawii.def -------------------------------------------------------------------------------- /libs/def/realconvers.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/realconvers.def -------------------------------------------------------------------------------- /libs/def/realinout.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/realinout.def -------------------------------------------------------------------------------- /libs/def/resourceman.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/resourceman.def -------------------------------------------------------------------------------- /libs/def/scheduler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/scheduler.def -------------------------------------------------------------------------------- /libs/def/scrapmanage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/scrapmanage.def -------------------------------------------------------------------------------- /libs/def/soundmanage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/soundmanage.def -------------------------------------------------------------------------------- /libs/def/standardfil.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/standardfil.def -------------------------------------------------------------------------------- /libs/def/storage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/storage.def -------------------------------------------------------------------------------- /libs/def/strings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/strings.def -------------------------------------------------------------------------------- /libs/def/superread.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/superread.def -------------------------------------------------------------------------------- /libs/def/terminal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/terminal.def -------------------------------------------------------------------------------- /libs/def/textedit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/textedit.def -------------------------------------------------------------------------------- /libs/def/texttools.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/texttools.def -------------------------------------------------------------------------------- /libs/def/toollocator.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/toollocator.def -------------------------------------------------------------------------------- /libs/def/w65c816.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/w65c816.def -------------------------------------------------------------------------------- /libs/def/windowmanag.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/def/windowmanag.def -------------------------------------------------------------------------------- /libs/fixasmkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/fixasmkeys -------------------------------------------------------------------------------- /libs/fixasmkeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/fixasmkeys.sh -------------------------------------------------------------------------------- /libs/fixtypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/fixtypes -------------------------------------------------------------------------------- /libs/keysuffix.sed: -------------------------------------------------------------------------------- 1 | \2/ 2 | -------------------------------------------------------------------------------- /libs/m2lib.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/m2lib.macros -------------------------------------------------------------------------------- /libs/m2lkey.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/m2lkey.sed -------------------------------------------------------------------------------- /libs/m2lprefix.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/m2lprefix.sed -------------------------------------------------------------------------------- /libs/mathlib.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mathlib.macros -------------------------------------------------------------------------------- /libs/mod/cdaconsole.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/cdaconsole.mod -------------------------------------------------------------------------------- /libs/mod/common.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/common.mod -------------------------------------------------------------------------------- /libs/mod/consoleio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/consoleio.mod -------------------------------------------------------------------------------- /libs/mod/crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/crc.mod -------------------------------------------------------------------------------- /libs/mod/ezcommandli.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezcommandli.mod -------------------------------------------------------------------------------- /libs/mod/ezcontrols.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezcontrols.mod -------------------------------------------------------------------------------- /libs/mod/ezdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezdump.mod -------------------------------------------------------------------------------- /libs/mod/ezfilesyste.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezfilesyste.mod -------------------------------------------------------------------------------- /libs/mod/ezlineedit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezlineedit.mod -------------------------------------------------------------------------------- /libs/mod/ezpaths.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezpaths.mod -------------------------------------------------------------------------------- /libs/mod/ezstorage.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezstorage.mod -------------------------------------------------------------------------------- /libs/mod/ezstrings.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/ezstrings.mod -------------------------------------------------------------------------------- /libs/mod/eztools.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/eztools.mod -------------------------------------------------------------------------------- /libs/mod/fastfilesys.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/fastfilesys.mod -------------------------------------------------------------------------------- /libs/mod/filesystem.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/filesystem.mod -------------------------------------------------------------------------------- /libs/mod/finder.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/finder.data -------------------------------------------------------------------------------- /libs/mod/gsosinterfa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/gsosinterfa.mod -------------------------------------------------------------------------------- /libs/mod/inout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/inout.mod -------------------------------------------------------------------------------- /libs/mod/lists.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/lists.mod -------------------------------------------------------------------------------- /libs/mod/listutility.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/listutility.mod -------------------------------------------------------------------------------- /libs/mod/numberconve.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/numberconve.mod -------------------------------------------------------------------------------- /libs/mod/realconvers.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/realconvers.mod -------------------------------------------------------------------------------- /libs/mod/realinout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/realinout.mod -------------------------------------------------------------------------------- /libs/mod/storage.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/storage.mod -------------------------------------------------------------------------------- /libs/mod/strings.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/strings.mod -------------------------------------------------------------------------------- /libs/mod/superread.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/superread.mod -------------------------------------------------------------------------------- /libs/mod/terminal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/mod/terminal.mod -------------------------------------------------------------------------------- /libs/storagekey.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/storagekey.sed -------------------------------------------------------------------------------- /libs/storageprefix.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/libs/storageprefix.sed -------------------------------------------------------------------------------- /m2clock.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2clock.def -------------------------------------------------------------------------------- /m2clock.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2clock.mod -------------------------------------------------------------------------------- /m2cm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2cm.def -------------------------------------------------------------------------------- /m2cm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2cm.mod -------------------------------------------------------------------------------- /m2debug.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2debug.def -------------------------------------------------------------------------------- /m2debug.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2debug.mod -------------------------------------------------------------------------------- /m2dm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2dm.def -------------------------------------------------------------------------------- /m2dm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2dm.mod -------------------------------------------------------------------------------- /m2em.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2em.def -------------------------------------------------------------------------------- /m2em.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2em.mod -------------------------------------------------------------------------------- /m2fm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2fm.def -------------------------------------------------------------------------------- /m2fm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2fm.mod -------------------------------------------------------------------------------- /m2hm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2hm.def -------------------------------------------------------------------------------- /m2hm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2hm.mod -------------------------------------------------------------------------------- /m2lm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2lm.def -------------------------------------------------------------------------------- /m2lm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2lm.mod -------------------------------------------------------------------------------- /m2omf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2omf.def -------------------------------------------------------------------------------- /m2omf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2omf.mod -------------------------------------------------------------------------------- /m2rm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2rm.def -------------------------------------------------------------------------------- /m2rm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2rm.mod -------------------------------------------------------------------------------- /m2sets.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2sets.def -------------------------------------------------------------------------------- /m2sets.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2sets.mod -------------------------------------------------------------------------------- /m2shell.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2shell.def -------------------------------------------------------------------------------- /m2shell.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2shell.mod -------------------------------------------------------------------------------- /m2sm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2sm.def -------------------------------------------------------------------------------- /m2sm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2sm.mod -------------------------------------------------------------------------------- /m2tm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2tm.def -------------------------------------------------------------------------------- /m2tm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/m2tm.mod -------------------------------------------------------------------------------- /mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/mod -------------------------------------------------------------------------------- /obj/l2bw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/obj/l2bw -------------------------------------------------------------------------------- /obj/l2bws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/obj/l2bws -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/readme.md -------------------------------------------------------------------------------- /releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/releasenotes.md -------------------------------------------------------------------------------- /tests/bench1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/bench1.mod -------------------------------------------------------------------------------- /tests/buildtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/buildtest -------------------------------------------------------------------------------- /tests/c301.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/c301.mod -------------------------------------------------------------------------------- /tests/c641.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/c641.mod -------------------------------------------------------------------------------- /tests/c811.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/c811.mod -------------------------------------------------------------------------------- /tests/c8211.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/c8211.mod -------------------------------------------------------------------------------- /tests/datasize.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/datasize.mod -------------------------------------------------------------------------------- /tests/deltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/deltest -------------------------------------------------------------------------------- /tests/fixtypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/fixtypes -------------------------------------------------------------------------------- /tests/m2cp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/m2cp.mod -------------------------------------------------------------------------------- /tests/pascalls.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/pascalls.def -------------------------------------------------------------------------------- /tests/pascalls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/pascalls.pas -------------------------------------------------------------------------------- /tests/pcp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/pcp.pas -------------------------------------------------------------------------------- /tests/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/runtest -------------------------------------------------------------------------------- /tests/setconst.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/setconst.def -------------------------------------------------------------------------------- /tests/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/templates -------------------------------------------------------------------------------- /tests/test.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/test.def -------------------------------------------------------------------------------- /tests/test1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/test1.mod -------------------------------------------------------------------------------- /tests/test2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/test2.mod -------------------------------------------------------------------------------- /tests/test3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/test3.mod -------------------------------------------------------------------------------- /tests/testconst.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testconst.mod -------------------------------------------------------------------------------- /tests/testdebug.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testdebug.mod -------------------------------------------------------------------------------- /tests/testdebug2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testdebug2.def -------------------------------------------------------------------------------- /tests/testdebug2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testdebug2.mod -------------------------------------------------------------------------------- /tests/testhalt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testhalt.mod -------------------------------------------------------------------------------- /tests/testinit.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testinit.mod -------------------------------------------------------------------------------- /tests/testinout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testinout.mod -------------------------------------------------------------------------------- /tests/testlocals.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testlocals.mod -------------------------------------------------------------------------------- /tests/testlocals2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testlocals2.def -------------------------------------------------------------------------------- /tests/testlocals2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testlocals2.mod -------------------------------------------------------------------------------- /tests/testmath.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testmath.mod -------------------------------------------------------------------------------- /tests/testmath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testmath.pas -------------------------------------------------------------------------------- /tests/testmm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testmm.mod -------------------------------------------------------------------------------- /tests/testmod1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testmod1.def -------------------------------------------------------------------------------- /tests/testmod1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testmod1.mod -------------------------------------------------------------------------------- /tests/testnilchk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testnilchk.mod -------------------------------------------------------------------------------- /tests/testpath.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testpath.mod -------------------------------------------------------------------------------- /tests/testset.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testset.mod -------------------------------------------------------------------------------- /tests/testset2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/testset2.mod -------------------------------------------------------------------------------- /tests/teststack.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/teststack.mod -------------------------------------------------------------------------------- /tests/tstdiv2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstdiv2.mod -------------------------------------------------------------------------------- /tests/tstdiv4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstdiv4.mod -------------------------------------------------------------------------------- /tests/tstif.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstif.mod -------------------------------------------------------------------------------- /tests/tstlr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstlr.mod -------------------------------------------------------------------------------- /tests/tstmod2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstmod2.mod -------------------------------------------------------------------------------- /tests/tstmod4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstmod4.mod -------------------------------------------------------------------------------- /tests/tstmul2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstmul2.mod -------------------------------------------------------------------------------- /tests/tstmul4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstmul4.mod -------------------------------------------------------------------------------- /tests/tstr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstr.mod -------------------------------------------------------------------------------- /tests/tstudiv2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstudiv2.mod -------------------------------------------------------------------------------- /tests/tstudiv4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstudiv4.mod -------------------------------------------------------------------------------- /tests/tstumod2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstumod2.mod -------------------------------------------------------------------------------- /tests/tstumod4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstumod4.mod -------------------------------------------------------------------------------- /tests/tstumul2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstumul2.mod -------------------------------------------------------------------------------- /tests/tstumul4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/tstumul4.mod -------------------------------------------------------------------------------- /tests/twovars.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkclsoft/ORCA-Modula-2/HEAD/tests/twovars.mod --------------------------------------------------------------------------------