├── .gitignore ├── BlackBox ├── Code │ ├── Config.ocf │ ├── Console.ocf │ ├── Containers.ocf │ ├── Controllers.ocf │ ├── Controls.ocf │ ├── Converters.ocf │ ├── Dates.ocf │ ├── Dialog.ocf │ ├── Documents.ocf │ ├── Files.ocf │ ├── Files64.ocf │ ├── Fonts.ocf │ ├── In.ocf │ ├── Init.ocf │ ├── Integers.ocf │ ├── Kernel.ocf │ ├── Log.ocf │ ├── Math.ocf │ ├── Mechanisms.ocf │ ├── Meta.ocf │ ├── Models.ocf │ ├── Out.ocf │ ├── Ports.ocf │ ├── Printers.ocf │ ├── Printing.ocf │ ├── Properties.ocf │ ├── SMath.ocf │ ├── Sequencers.ocf │ ├── Services.ocf │ ├── Stores.ocf │ ├── Stores64.ocf │ ├── Strings.ocf │ ├── Unicode.ocf │ ├── Utf.ocf │ ├── Views.ocf │ └── Windows.ocf ├── Comm │ ├── Code │ │ ├── Streams.ocf │ │ ├── TCP.ocf │ │ └── V24.ocf │ ├── Docu │ │ ├── Streams.odc │ │ ├── Sys-Map.odc │ │ ├── TCP.odc │ │ └── V24.odc │ ├── Mod │ │ ├── Streams.odc │ │ ├── TCP.odc │ │ └── V24.odc │ └── Sym │ │ ├── Streams.osf │ │ ├── TCP.osf │ │ └── V24.osf ├── Cons │ ├── Code │ │ ├── Compiler.ocf │ │ ├── Interp.ocf │ │ └── Log.ocf │ ├── Docu │ │ └── Log.odc │ ├── Mod │ │ ├── Compiler.odc │ │ ├── Interp.odc │ │ ├── Log.odc │ │ └── MultiCompiler.Mod │ └── Sym │ │ ├── Compiler.osf │ │ ├── Interp.osf │ │ └── Log.osf ├── Dev │ ├── Code │ │ ├── CPB.ocf │ │ ├── CPC486.ocf │ │ ├── CPE.ocf │ │ ├── CPH.ocf │ │ ├── CPL486.ocf │ │ ├── CPM.ocf │ │ ├── CPP.ocf │ │ ├── CPS.ocf │ │ ├── CPT.ocf │ │ ├── CPV486.ocf │ │ ├── Commanders.ocf │ │ ├── Compiler.ocf │ │ ├── Debug.ocf │ │ ├── Linker.ocf │ │ ├── Markers.ocf │ │ ├── Packer.ocf │ │ ├── References.ocf │ │ └── Selectors.ocf │ ├── Docu │ │ ├── CPB.odc │ │ ├── CPC486.odc │ │ ├── CPE.odc │ │ ├── CPH.odc │ │ ├── CPL486.odc │ │ ├── CPM.odc │ │ ├── CPP.odc │ │ ├── CPS.odc │ │ ├── CPT.odc │ │ ├── CPV486.odc │ │ ├── Commanders.odc │ │ ├── Compiler.odc │ │ ├── Linker.odc │ │ ├── Markers.odc │ │ ├── Packer.odc │ │ ├── References.odc │ │ └── Selectors.odc │ ├── Mod │ │ ├── CPB.odc │ │ ├── CPC486.odc │ │ ├── CPE.odc │ │ ├── CPH.odc │ │ ├── CPL486.odc │ │ ├── CPM.odc │ │ ├── CPP.odc │ │ ├── CPS.odc │ │ ├── CPT.odc │ │ ├── CPV486.odc │ │ ├── Commanders.odc │ │ ├── Compiler.odc │ │ ├── Debug.odc │ │ ├── Linker.odc │ │ ├── Markers.odc │ │ ├── Packer.odc │ │ ├── References.odc │ │ └── Selectors.odc │ ├── Rsrc │ │ ├── Errors.odc │ │ └── Strings.odc │ ├── Spec │ │ ├── ObjFile.odc │ │ ├── PackedFiles.odc │ │ ├── StoresFileFormat.odc │ │ └── SymFile.odc │ └── Sym │ │ ├── CPB.osf │ │ ├── CPC486.osf │ │ ├── CPE.osf │ │ ├── CPH.osf │ │ ├── CPL486.osf │ │ ├── CPM.osf │ │ ├── CPP.osf │ │ ├── CPS.osf │ │ ├── CPT.osf │ │ ├── CPV486.osf │ │ ├── Commanders.osf │ │ ├── Compiler.osf │ │ ├── Debug.osf │ │ ├── Linker.osf │ │ ├── Markers.osf │ │ ├── Packer.osf │ │ ├── References.osf │ │ └── Selectors.osf ├── Dev2 │ ├── Code │ │ ├── Linker.ocf │ │ ├── Linker1.ocf │ │ ├── LnkBase.ocf │ │ ├── LnkChmod.ocf │ │ ├── LnkLoad.ocf │ │ ├── LnkWriteElf.ocf │ │ ├── LnkWriteElfStatic.ocf │ │ └── LnkWritePe.ocf │ ├── Mod │ │ ├── Linker.odc │ │ ├── Linker1.odc │ │ ├── LnkBase.odc │ │ ├── LnkChmod.odc │ │ ├── LnkLoad.odc │ │ ├── LnkWriteElf.odc │ │ ├── LnkWriteElfStatic.odc │ │ ├── LnkWriteElf_Got.odc │ │ └── LnkWritePe.odc │ └── Sym │ │ ├── Linker.osf │ │ ├── Linker1.osf │ │ ├── LnkBase.osf │ │ ├── LnkChmod.osf │ │ ├── LnkLoad.osf │ │ ├── LnkWriteElf.osf │ │ ├── LnkWriteElfStatic.osf │ │ └── LnkWritePe.osf ├── Docu │ ├── BB-Chars.odc │ ├── BB-Docu.odc │ ├── BB-Road.odc │ ├── BB-Rules.odc │ ├── CP-Lang.odc │ ├── CP-New.odc │ ├── Contributors.odc │ ├── Help.odc │ ├── Tour.odc │ ├── Tut-1.odc │ ├── Tut-2.odc │ ├── Tut-3.odc │ ├── Tut-4.odc │ ├── Tut-5.odc │ ├── Tut-6.odc │ ├── Tut-A.odc │ ├── Tut-B.odc │ └── Tut-TOC.odc ├── Freeoberon │ ├── Code │ │ └── Config.ocf │ └── Sym │ │ └── Config.osf ├── Host │ ├── Code │ │ ├── Console.ocf │ │ ├── Dates.ocf │ │ ├── Dialog.ocf │ │ ├── Env.ocf │ │ ├── Files.ocf │ │ ├── Files64.ocf │ │ ├── Fonts.ocf │ │ ├── Lang.ocf │ │ ├── PackedFiles.ocf │ │ ├── Registry.ocf │ │ ├── TextConv.ocf │ │ └── Windows.ocf │ ├── Docu │ │ ├── CFrames.odc │ │ ├── Clipboard.odc │ │ ├── Cmds.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── Mechanisms.odc │ │ ├── Menus.odc │ │ ├── PackedFiles.odc │ │ ├── Pictures.odc │ │ ├── Ports.odc │ │ ├── Prefs-Dialog.odc │ │ ├── Printers.odc │ │ ├── Registry.odc │ │ ├── TabFrames.odc │ │ ├── TextConv.odc │ │ └── Windows.odc │ ├── Mod │ │ ├── Console.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Env.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── Lang.odc │ │ ├── PackedFiles.odc │ │ ├── Registry.odc │ │ ├── TextConv.odc │ │ └── Windows.odc │ └── Sym │ │ ├── Console.osf │ │ ├── Dates.osf │ │ ├── Dialog.osf │ │ ├── Env.osf │ │ ├── Files.osf │ │ ├── Files64.osf │ │ ├── Fonts.osf │ │ ├── Lang.osf │ │ ├── PackedFiles.osf │ │ ├── Registry.osf │ │ ├── TextConv.osf │ │ └── Windows.osf ├── LICENSE.txt ├── Lin │ ├── Mod │ │ ├── Dl.odc │ │ ├── Iconv.odc │ │ ├── Ioctl.odc │ │ ├── LibW.odc │ │ ├── Libc.odc │ │ ├── Net.odc │ │ ├── Rt.odc │ │ └── Termios.odc │ └── Sym │ │ ├── Dl.osf │ │ ├── Iconv.osf │ │ ├── Ioctl.osf │ │ ├── LibW.osf │ │ ├── Libc.osf │ │ ├── Net.osf │ │ ├── Rt.osf │ │ └── Termios.osf ├── Obx │ ├── Code │ │ ├── Hello0.ocf │ │ ├── Pi.ocf │ │ ├── Random.ocf │ │ └── Trap.ocf │ ├── Mod │ │ ├── Hello0.odc │ │ ├── Pi.odc │ │ ├── Random.odc │ │ └── Trap.odc │ └── Sym │ │ ├── Hello0.osf │ │ ├── Pi.osf │ │ ├── Random.osf │ │ └── Trap.osf ├── Sql │ ├── Database │ │ ├── Companies │ │ ├── Ownership │ │ └── schema.ini │ ├── Docu │ │ ├── Browser.odc │ │ ├── Controls.odc │ │ ├── DB.odc │ │ ├── Dev-Man.odc │ │ ├── Drivers.odc │ │ ├── ObxDB.odc │ │ ├── ObxDriv.odc │ │ ├── ObxExt.odc │ │ ├── ObxGen.odc │ │ ├── ObxInit.odc │ │ ├── ObxNets.odc │ │ ├── ObxTab.odc │ │ ├── ObxUI.odc │ │ ├── ObxViews.odc │ │ └── Sys-Map.odc │ ├── Mod │ │ ├── Browser.odc │ │ ├── Controls.odc │ │ ├── DB.odc │ │ ├── Drivers.odc │ │ ├── ObxDB.odc │ │ ├── ObxDriv.odc │ │ ├── ObxExt.odc │ │ ├── ObxGen.odc │ │ ├── ObxInit.odc │ │ ├── ObxNets.odc │ │ ├── ObxTab.odc │ │ ├── ObxUI.odc │ │ └── ObxViews.odc │ └── Rsrc │ │ ├── Browser.odc │ │ ├── Company.odc │ │ ├── Debug.odc │ │ ├── Menus.odc │ │ ├── Owner.odc │ │ └── Strings.odc ├── Std │ ├── Code │ │ ├── Api.ocf │ │ ├── CFrames.ocf │ │ ├── Clocks.ocf │ │ ├── Cmds.ocf │ │ ├── Coder.ocf │ │ ├── Debug.ocf │ │ ├── Dialog.ocf │ │ ├── ETHConv.ocf │ │ ├── Folds.ocf │ │ ├── Headers.ocf │ │ ├── Interpreter.ocf │ │ ├── Links.ocf │ │ ├── Loader.ocf │ │ ├── Log.ocf │ │ ├── Scrollers.ocf │ │ ├── Stamps.ocf │ │ └── ViewSizer.ocf │ ├── Docu │ │ ├── Api.odc │ │ ├── CFrames.odc │ │ ├── Clocks.odc │ │ ├── Cmds.odc │ │ ├── Coder.odc │ │ ├── Debug.odc │ │ ├── Dialog.odc │ │ ├── ETHConv.odc │ │ ├── Folds.odc │ │ ├── Headers.odc │ │ ├── Interpreter.odc │ │ ├── Links.odc │ │ ├── Loader.odc │ │ ├── Log.odc │ │ ├── Scrollers.odc │ │ ├── Stamps.odc │ │ ├── Sys-Map.odc │ │ └── ViewSizer.odc │ ├── Mod │ │ ├── Api.odc │ │ ├── CFrames.odc │ │ ├── Clocks.odc │ │ ├── Cmds.odc │ │ ├── Coder.odc │ │ ├── Debug.odc │ │ ├── Dialog.odc │ │ ├── ETHConv.odc │ │ ├── Folds.odc │ │ ├── Headers.odc │ │ ├── Interpreter.odc │ │ ├── Links.odc │ │ ├── Loader.odc │ │ ├── Log.odc │ │ ├── Scrollers.odc │ │ ├── Stamps.odc │ │ └── ViewSizer.odc │ ├── Rsrc │ │ └── Strings.odc │ └── Sym │ │ ├── Api.osf │ │ ├── CFrames.osf │ │ ├── Clocks.osf │ │ ├── Cmds.osf │ │ ├── Coder.osf │ │ ├── Debug.osf │ │ ├── Dialog.osf │ │ ├── ETHConv.osf │ │ ├── Folds.osf │ │ ├── Headers.osf │ │ ├── Interpreter.osf │ │ ├── Links.osf │ │ ├── Loader.osf │ │ ├── Log.osf │ │ ├── Scrollers.osf │ │ ├── Stamps.osf │ │ └── ViewSizer.osf ├── Sym │ ├── Config.osf │ ├── Console.osf │ ├── Containers.osf │ ├── Controllers.osf │ ├── Controls.osf │ ├── Converters.osf │ ├── Dates.osf │ ├── Dialog.osf │ ├── Documents.osf │ ├── Files.osf │ ├── Files64.osf │ ├── Fonts.osf │ ├── In.osf │ ├── Init.osf │ ├── Integers.osf │ ├── Kernel.osf │ ├── Log.osf │ ├── Math.osf │ ├── Mechanisms.osf │ ├── Meta.osf │ ├── Models.osf │ ├── Out.osf │ ├── Ports.osf │ ├── Printers.osf │ ├── Printing.osf │ ├── Properties.osf │ ├── SMath.osf │ ├── Sequencers.osf │ ├── Services.osf │ ├── Stores.osf │ ├── Stores64.osf │ ├── Strings.osf │ ├── Unicode.osf │ ├── Utf.osf │ ├── Views.osf │ └── Windows.osf ├── System │ ├── Docu │ │ ├── Config.odc │ │ ├── Console.odc │ │ ├── Containers.odc │ │ ├── Controllers.odc │ │ ├── Controls.odc │ │ ├── Converters.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Documents.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── In.odc │ │ ├── Init.odc │ │ ├── Integers.odc │ │ ├── Kernel.odc │ │ ├── Log.odc │ │ ├── Math.odc │ │ ├── Mechanisms.odc │ │ ├── Meta.odc │ │ ├── Models.odc │ │ ├── Out.odc │ │ ├── Ports.odc │ │ ├── Printers.odc │ │ ├── Printing.odc │ │ ├── Properties.odc │ │ ├── SMath.odc │ │ ├── Sequencers.odc │ │ ├── Services.odc │ │ ├── Stores.odc │ │ ├── Stores64.odc │ │ ├── Strings.odc │ │ ├── Sys-Map.odc │ │ ├── Unicode.odc │ │ ├── User-Man.odc │ │ ├── Utf.odc │ │ ├── Views.odc │ │ └── Windows.odc │ ├── Mod │ │ ├── Config.odc │ │ ├── Console.odc │ │ ├── Containers.odc │ │ ├── Controllers.odc │ │ ├── Controls.odc │ │ ├── Converters.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Documents.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── In.odc │ │ ├── Init.odc │ │ ├── Integers.odc │ │ ├── Kernel.odc │ │ ├── Log.odc │ │ ├── Math.odc │ │ ├── Mechanisms.odc │ │ ├── Meta.odc │ │ ├── Models.odc │ │ ├── Out.odc │ │ ├── Ports.odc │ │ ├── Printers.odc │ │ ├── Printing.odc │ │ ├── Properties.odc │ │ ├── SMath.odc │ │ ├── Sequencers.odc │ │ ├── Services.odc │ │ ├── Stores.odc │ │ ├── Stores64.odc │ │ ├── Strings.odc │ │ ├── Unicode.odc │ │ ├── Utf.odc │ │ ├── Views.odc │ │ ├── Windows.odc │ │ └── odc37524 │ └── Rsrc │ │ └── Strings.odc ├── Text │ ├── Code │ │ ├── Cmds.ocf │ │ ├── Controllers.ocf │ │ ├── Mappers.ocf │ │ ├── Models.ocf │ │ ├── Rulers.ocf │ │ ├── Setters.ocf │ │ └── Views.ocf │ ├── Docu │ │ ├── Cmds.odc │ │ ├── Controllers.odc │ │ ├── Dev-Man.odc │ │ ├── Mappers.odc │ │ ├── Models.odc │ │ ├── Rulers.odc │ │ ├── Setters.odc │ │ ├── Sys-Map.odc │ │ ├── Tab-Dialog.odc │ │ ├── User-Man.odc │ │ └── Views.odc │ ├── Mod │ │ ├── Cmds.odc │ │ ├── Controllers.odc │ │ ├── Mappers.odc │ │ ├── Models.odc │ │ ├── Rulers.odc │ │ ├── Setters.odc │ │ └── Views.odc │ ├── Rsrc │ │ ├── Cmds.odc │ │ ├── Cmds1.odc │ │ ├── Menus.odc │ │ ├── Strings.odc │ │ └── Tab.odc │ └── Sym │ │ ├── Cmds.osf │ │ ├── Controllers.osf │ │ ├── Mappers.osf │ │ ├── Models.osf │ │ ├── Rulers.osf │ │ ├── Setters.osf │ │ └── Views.osf ├── Xhtml │ ├── Code │ │ ├── EntitySets.ocf │ │ ├── Exporter.ocf │ │ ├── StdFileWriters.ocf │ │ ├── TextTableMarkers.ocf │ │ └── Writers.ocf │ ├── Docu │ │ ├── EntitySets.odc │ │ ├── Exporter.odc │ │ ├── StdFileWriters.odc │ │ ├── Sys-Map.odc │ │ ├── TextTableMarkers.odc │ │ └── Writers.odc │ ├── Mod │ │ ├── EntitySets.odc │ │ ├── Exporter.odc │ │ ├── StdFileWriters.odc │ │ ├── TextTableMarkers.odc │ │ └── Writers.odc │ ├── Rsrc │ │ └── Strings.odc │ └── Sym │ │ ├── EntitySets.osf │ │ ├── Exporter.osf │ │ ├── StdFileWriters.osf │ │ ├── TextTableMarkers.osf │ │ └── Writers.osf ├── blackbox └── run-BlackBox ├── Cons └── Mod │ └── MultiCompiler.Mod ├── Dev ├── Mod │ ├── CPM.Mod │ └── Linker.Mod └── Rsrc │ ├── Errors.odc │ └── Strings.odc ├── Dev2 └── Mod │ ├── LnkBase.Mod │ └── LnkChmod.Mod ├── Freeoberon └── Mod │ ├── Compiler.Mod │ ├── Config.Mod │ ├── Errors.Mod │ ├── Linker.Mod │ ├── LinkerProxy.Mod │ ├── Main.Mod │ ├── Platform.Mod │ ├── Scanner.Mod │ ├── __WIN_LinkerProxy.Mod │ └── __WIN_Platform.Mod ├── Host └── Mod │ ├── Args.Mod │ ├── Files.Mod │ ├── __WIN_Args.Mod │ └── __WIN_Files.Mod ├── LICENSE ├── Lib ├── AllLibs.Mod ├── Char │ └── Utils.cp ├── FOLoader.Mod ├── Kernel-Linux.Mod ├── Kernel-Win.Mod ├── LinDl.Mod ├── LinLibW.Mod ├── LinLibc.Mod ├── LinRt.Mod ├── Out-Linux.Mod ├── Out-Win.Mod ├── Utf.Mod └── WinApi.Mod ├── Makefile ├── README.md ├── System └── Mod │ └── Args.Mod ├── __WIN_BlackBox ├── BlackBoxInterp.exe ├── Code │ ├── Config.ocf │ ├── Console.ocf │ ├── Containers.ocf │ ├── Controllers.ocf │ ├── Controls.ocf │ ├── Converters.ocf │ ├── Dates.ocf │ ├── Dialog.ocf │ ├── Documents.ocf │ ├── Files.ocf │ ├── Files64.ocf │ ├── Fonts.ocf │ ├── In.ocf │ ├── Init.ocf │ ├── Integers.ocf │ ├── Kernel.ocf │ ├── Log.ocf │ ├── Math.ocf │ ├── Mechanisms.ocf │ ├── Meta.ocf │ ├── Models.ocf │ ├── Out.ocf │ ├── Ports.ocf │ ├── Printers.ocf │ ├── Printing.ocf │ ├── Properties.ocf │ ├── SMath.ocf │ ├── Sequencers.ocf │ ├── Services.ocf │ ├── Stores.ocf │ ├── Stores64.ocf │ ├── Strings.ocf │ ├── Unicode.ocf │ ├── Utf.ocf │ ├── Views.ocf │ └── Windows.ocf ├── Comm │ ├── Code │ │ ├── Streams.ocf │ │ ├── TCP.ocf │ │ └── V24.ocf │ ├── Docu │ │ ├── Streams.odc │ │ ├── Sys-Map.odc │ │ ├── TCP.odc │ │ └── V24.odc │ ├── Mod │ │ ├── Streams.odc │ │ ├── TCP.odc │ │ └── V24.odc │ └── Sym │ │ ├── Streams.osf │ │ ├── TCP.osf │ │ └── V24.osf ├── Cons │ ├── Code │ │ ├── Compiler.ocf │ │ ├── Interp.ocf │ │ └── Log.ocf │ ├── Docu │ │ └── Log.odc │ ├── Mod │ │ ├── Compiler.odc │ │ ├── Interp.odc │ │ └── Log.odc │ └── Sym │ │ ├── Compiler.osf │ │ ├── Interp.osf │ │ └── Log.osf ├── Dev │ ├── Code │ │ ├── CPB.ocf │ │ ├── CPC486.ocf │ │ ├── CPE.ocf │ │ ├── CPH.ocf │ │ ├── CPL486.ocf │ │ ├── CPM.ocf │ │ ├── CPP.ocf │ │ ├── CPS.ocf │ │ ├── CPT.ocf │ │ ├── CPV486.ocf │ │ ├── ComDebug.ocf │ │ ├── Commanders.ocf │ │ ├── Compiler.ocf │ │ ├── Debug.ocf │ │ ├── Linker.ocf │ │ ├── Markers.ocf │ │ ├── Packer.ocf │ │ ├── References.ocf │ │ └── Selectors.ocf │ ├── Docu │ │ ├── CPB.odc │ │ ├── CPC486.odc │ │ ├── CPE.odc │ │ ├── CPH.odc │ │ ├── CPL486.odc │ │ ├── CPM.odc │ │ ├── CPP.odc │ │ ├── CPS.odc │ │ ├── CPT.odc │ │ ├── CPV486.odc │ │ ├── Commanders.odc │ │ ├── Compiler.odc │ │ ├── Linker.odc │ │ ├── Markers.odc │ │ ├── Packer.odc │ │ ├── References.odc │ │ └── Selectors.odc │ ├── Mod │ │ ├── CPB.odc │ │ ├── CPC486.odc │ │ ├── CPE.odc │ │ ├── CPH.odc │ │ ├── CPL486.odc │ │ ├── CPM.odc │ │ ├── CPP.odc │ │ ├── CPS.odc │ │ ├── CPT.odc │ │ ├── CPV486.odc │ │ ├── ComDebug.odc │ │ ├── Commanders.odc │ │ ├── Compiler.odc │ │ ├── Debug.odc │ │ ├── Linker.odc │ │ ├── Markers.odc │ │ ├── Packer.odc │ │ ├── References.odc │ │ └── Selectors.odc │ ├── Rsrc │ │ ├── Errors.odc │ │ └── Strings.odc │ ├── Spec │ │ ├── ObjFile.odc │ │ ├── PackedFiles.odc │ │ ├── StoresFileFormat.odc │ │ └── SymFile.odc │ └── Sym │ │ ├── CPB.osf │ │ ├── CPC486.osf │ │ ├── CPE.osf │ │ ├── CPH.osf │ │ ├── CPL486.osf │ │ ├── CPM.osf │ │ ├── CPP.osf │ │ ├── CPS.osf │ │ ├── CPT.osf │ │ ├── CPV486.osf │ │ ├── ComDebug.osf │ │ ├── Commanders.osf │ │ ├── Compiler.osf │ │ ├── Debug.osf │ │ ├── Linker.osf │ │ ├── Markers.osf │ │ ├── Packer.osf │ │ ├── References.osf │ │ └── Selectors.osf ├── Docu │ ├── BB-Chars.odc │ ├── BB-Docu.odc │ ├── BB-Road.odc │ ├── BB-Rules.odc │ ├── CP-Lang.odc │ ├── CP-New.odc │ ├── Contributors.odc │ ├── Help.odc │ ├── Tour.odc │ ├── Tut-1.odc │ ├── Tut-2.odc │ ├── Tut-3.odc │ ├── Tut-4.odc │ ├── Tut-5.odc │ ├── Tut-6.odc │ ├── Tut-A.odc │ ├── Tut-B.odc │ └── Tut-TOC.odc ├── Host │ ├── Code │ │ ├── Console.ocf │ │ ├── Dates.ocf │ │ ├── Dialog.ocf │ │ ├── Env.ocf │ │ ├── Files.ocf │ │ ├── Files64.ocf │ │ ├── Fonts.ocf │ │ ├── Lang.ocf │ │ ├── PackedFiles.ocf │ │ ├── Registry.ocf │ │ ├── TextConv.ocf │ │ └── Windows.ocf │ ├── Docu │ │ ├── CFrames.odc │ │ ├── Clipboard.odc │ │ ├── Cmds.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── Mechanisms.odc │ │ ├── Menus.odc │ │ ├── PackedFiles.odc │ │ ├── Pictures.odc │ │ ├── Ports.odc │ │ ├── Prefs-Dialog.odc │ │ ├── Printers.odc │ │ ├── Registry.odc │ │ ├── TabFrames.odc │ │ ├── TextConv.odc │ │ └── Windows.odc │ ├── Mod │ │ ├── Console.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Env.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── Lang.odc │ │ ├── PackedFiles.odc │ │ ├── Registry.odc │ │ ├── TextConv.odc │ │ └── Windows.odc │ └── Sym │ │ ├── Console.osf │ │ ├── Dates.osf │ │ ├── Dialog.osf │ │ ├── Env.osf │ │ ├── Files.osf │ │ ├── Files64.osf │ │ ├── Fonts.osf │ │ ├── Lang.osf │ │ ├── PackedFiles.osf │ │ ├── Registry.osf │ │ ├── TextConv.osf │ │ └── Windows.osf ├── LICENSE.txt ├── Obx │ ├── Code │ │ ├── Hello0.ocf │ │ ├── Pi.ocf │ │ ├── Random.ocf │ │ └── Trap.ocf │ ├── Mod │ │ ├── Hello0.odc │ │ ├── Pi.odc │ │ ├── Random.odc │ │ └── Trap.odc │ └── Sym │ │ ├── Hello0.osf │ │ ├── Pi.osf │ │ ├── Random.osf │ │ └── Trap.osf ├── README ├── Sql │ ├── Code │ │ ├── Browser.ocf │ │ ├── Controls.ocf │ │ ├── DB.ocf │ │ ├── Drivers.ocf │ │ ├── ObxDB.ocf │ │ ├── ObxExt.ocf │ │ ├── ObxGen.ocf │ │ ├── ObxInit.ocf │ │ ├── ObxNets.ocf │ │ ├── ObxTab.ocf │ │ ├── ObxUI.ocf │ │ └── ObxViews.ocf │ ├── Database │ │ ├── Companies │ │ ├── Ownership │ │ └── schema.ini │ ├── Docu │ │ ├── Browser.odc │ │ ├── Controls.odc │ │ ├── DB.odc │ │ ├── Dev-Man.odc │ │ ├── Drivers.odc │ │ ├── ObxDB.odc │ │ ├── ObxDriv.odc │ │ ├── ObxExt.odc │ │ ├── ObxGen.odc │ │ ├── ObxInit.odc │ │ ├── ObxNets.odc │ │ ├── ObxTab.odc │ │ ├── ObxUI.odc │ │ ├── ObxViews.odc │ │ └── Sys-Map.odc │ ├── Mod │ │ ├── Browser.odc │ │ ├── Controls.odc │ │ ├── DB.odc │ │ ├── Drivers.odc │ │ ├── ObxDB.odc │ │ ├── ObxDriv.odc │ │ ├── ObxExt.odc │ │ ├── ObxGen.odc │ │ ├── ObxInit.odc │ │ ├── ObxNets.odc │ │ ├── ObxTab.odc │ │ ├── ObxUI.odc │ │ └── ObxViews.odc │ ├── Rsrc │ │ ├── Browser.odc │ │ ├── Company.odc │ │ ├── Debug.odc │ │ ├── Menus.odc │ │ ├── Owner.odc │ │ └── Strings.odc │ └── Sym │ │ ├── Browser.osf │ │ ├── Controls.osf │ │ ├── DB.osf │ │ ├── Drivers.osf │ │ ├── ObxDB.osf │ │ ├── ObxExt.osf │ │ ├── ObxGen.osf │ │ ├── ObxInit.osf │ │ ├── ObxNets.osf │ │ ├── ObxTab.osf │ │ ├── ObxUI.osf │ │ └── ObxViews.osf ├── Std │ ├── Code │ │ ├── Api.ocf │ │ ├── CFrames.ocf │ │ ├── Clocks.ocf │ │ ├── Cmds.ocf │ │ ├── Coder.ocf │ │ ├── Debug.ocf │ │ ├── Dialog.ocf │ │ ├── ETHConv.ocf │ │ ├── Folds.ocf │ │ ├── Headers.ocf │ │ ├── Interpreter.ocf │ │ ├── Links.ocf │ │ ├── Loader.ocf │ │ ├── Log.ocf │ │ ├── Scrollers.ocf │ │ ├── Stamps.ocf │ │ └── ViewSizer.ocf │ ├── Docu │ │ ├── Api.odc │ │ ├── CFrames.odc │ │ ├── Clocks.odc │ │ ├── Cmds.odc │ │ ├── Coder.odc │ │ ├── Debug.odc │ │ ├── Dialog.odc │ │ ├── ETHConv.odc │ │ ├── Folds.odc │ │ ├── Headers.odc │ │ ├── Interpreter.odc │ │ ├── Links.odc │ │ ├── Loader.odc │ │ ├── Log.odc │ │ ├── Scrollers.odc │ │ ├── Stamps.odc │ │ ├── Sys-Map.odc │ │ └── ViewSizer.odc │ ├── Mod │ │ ├── Api.odc │ │ ├── CFrames.odc │ │ ├── Clocks.odc │ │ ├── Cmds.odc │ │ ├── Coder.odc │ │ ├── Debug.odc │ │ ├── Dialog.odc │ │ ├── ETHConv.odc │ │ ├── Folds.odc │ │ ├── Headers.odc │ │ ├── Interpreter.odc │ │ ├── Links.odc │ │ ├── Loader.odc │ │ ├── Log.odc │ │ ├── Scrollers.odc │ │ ├── Stamps.odc │ │ └── ViewSizer.odc │ ├── Rsrc │ │ └── Strings.odc │ └── Sym │ │ ├── Api.osf │ │ ├── CFrames.osf │ │ ├── Clocks.osf │ │ ├── Cmds.osf │ │ ├── Coder.osf │ │ ├── Debug.osf │ │ ├── Dialog.osf │ │ ├── ETHConv.osf │ │ ├── Folds.osf │ │ ├── Headers.osf │ │ ├── Interpreter.osf │ │ ├── Links.osf │ │ ├── Loader.osf │ │ ├── Log.osf │ │ ├── Scrollers.osf │ │ ├── Stamps.osf │ │ └── ViewSizer.osf ├── Sym │ ├── Config.osf │ ├── Console.osf │ ├── Containers.osf │ ├── Controllers.osf │ ├── Controls.osf │ ├── Converters.osf │ ├── Dates.osf │ ├── Dialog.osf │ ├── Documents.osf │ ├── Files.osf │ ├── Files64.osf │ ├── Fonts.osf │ ├── In.osf │ ├── Init.osf │ ├── Integers.osf │ ├── Kernel.osf │ ├── Log.osf │ ├── Math.osf │ ├── Mechanisms.osf │ ├── Meta.osf │ ├── Models.osf │ ├── Out.osf │ ├── Ports.osf │ ├── Printers.osf │ ├── Printing.osf │ ├── Properties.osf │ ├── SMath.osf │ ├── Sequencers.osf │ ├── Services.osf │ ├── Stores.osf │ ├── Stores64.osf │ ├── Strings.osf │ ├── Unicode.osf │ ├── Utf.osf │ ├── Views.osf │ └── Windows.osf ├── System │ ├── Docu │ │ ├── Config.odc │ │ ├── Console.odc │ │ ├── Containers.odc │ │ ├── Controllers.odc │ │ ├── Controls.odc │ │ ├── Converters.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Documents.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── In.odc │ │ ├── Init.odc │ │ ├── Integers.odc │ │ ├── Kernel.odc │ │ ├── Log.odc │ │ ├── Math.odc │ │ ├── Mechanisms.odc │ │ ├── Meta.odc │ │ ├── Models.odc │ │ ├── Out.odc │ │ ├── Ports.odc │ │ ├── Printers.odc │ │ ├── Printing.odc │ │ ├── Properties.odc │ │ ├── SMath.odc │ │ ├── Sequencers.odc │ │ ├── Services.odc │ │ ├── Stores.odc │ │ ├── Stores64.odc │ │ ├── Strings.odc │ │ ├── Sys-Map.odc │ │ ├── Unicode.odc │ │ ├── User-Man.odc │ │ ├── Utf.odc │ │ ├── Views.odc │ │ └── Windows.odc │ ├── Mod │ │ ├── Config.odc │ │ ├── Console.odc │ │ ├── Containers.odc │ │ ├── Controllers.odc │ │ ├── Controls.odc │ │ ├── Converters.odc │ │ ├── Dates.odc │ │ ├── Dialog.odc │ │ ├── Documents.odc │ │ ├── Files.odc │ │ ├── Files64.odc │ │ ├── Fonts.odc │ │ ├── In.odc │ │ ├── Init.odc │ │ ├── Integers.odc │ │ ├── Kernel.odc │ │ ├── Log.odc │ │ ├── Math.odc │ │ ├── Mechanisms.odc │ │ ├── Meta.odc │ │ ├── Models.odc │ │ ├── Out.odc │ │ ├── Ports.odc │ │ ├── Printers.odc │ │ ├── Printing.odc │ │ ├── Properties.odc │ │ ├── SMath.odc │ │ ├── Sequencers.odc │ │ ├── Services.odc │ │ ├── Stores.odc │ │ ├── Stores64.odc │ │ ├── Strings.odc │ │ ├── Unicode.odc │ │ ├── Utf.odc │ │ ├── Views.odc │ │ └── Windows.odc │ └── Rsrc │ │ └── Strings.odc ├── Text │ ├── Code │ │ ├── Cmds.ocf │ │ ├── Controllers.ocf │ │ ├── Mappers.ocf │ │ ├── Models.ocf │ │ ├── Rulers.ocf │ │ ├── Setters.ocf │ │ └── Views.ocf │ ├── Docu │ │ ├── Cmds.odc │ │ ├── Controllers.odc │ │ ├── Dev-Man.odc │ │ ├── Mappers.odc │ │ ├── Models.odc │ │ ├── Rulers.odc │ │ ├── Setters.odc │ │ ├── Sys-Map.odc │ │ ├── Tab-Dialog.odc │ │ ├── User-Man.odc │ │ └── Views.odc │ ├── Mod │ │ ├── Cmds.odc │ │ ├── Controllers.odc │ │ ├── Mappers.odc │ │ ├── Models.odc │ │ ├── Rulers.odc │ │ ├── Setters.odc │ │ └── Views.odc │ ├── Rsrc │ │ ├── Cmds.odc │ │ ├── Cmds1.odc │ │ ├── Menus.odc │ │ ├── Strings.odc │ │ └── Tab.odc │ └── Sym │ │ ├── Cmds.osf │ │ ├── Controllers.osf │ │ ├── Mappers.osf │ │ ├── Models.osf │ │ ├── Rulers.osf │ │ ├── Setters.osf │ │ └── Views.osf ├── Win │ ├── Docu │ │ ├── Api.odc │ │ ├── MM.odc │ │ ├── Net.odc │ │ └── Sql.odc │ ├── Mod │ │ ├── Api.odc │ │ ├── MM.odc │ │ ├── Net.odc │ │ ├── Ole.odc │ │ └── Sql.odc │ ├── Rsrc │ │ ├── Applogo.ico │ │ ├── BlackBox.iss │ │ ├── BlackBox.rc │ │ ├── BlackBox.res │ │ ├── CFLogo.ico │ │ ├── Copy.cur │ │ ├── Doclogo.ico │ │ ├── DtyLogo.ico │ │ ├── Hand.cur │ │ ├── Link.cur │ │ ├── Move.cur │ │ ├── Pick.cur │ │ ├── SFLogo.ico │ │ ├── Stop.cur │ │ ├── Table.cur │ │ ├── folderimg.ico │ │ ├── leafimg.ico │ │ └── openimg.ico │ └── Sym │ │ ├── Api.osf │ │ ├── MM.osf │ │ ├── Net.osf │ │ ├── Ole.osf │ │ └── Sql.osf ├── Xhtml │ ├── Code │ │ ├── EntitySets.ocf │ │ ├── Exporter.ocf │ │ ├── StdFileWriters.ocf │ │ ├── TextTableMarkers.ocf │ │ └── Writers.ocf │ ├── Docu │ │ ├── EntitySets.odc │ │ ├── Exporter.odc │ │ ├── StdFileWriters.odc │ │ ├── Sys-Map.odc │ │ ├── TextTableMarkers.odc │ │ └── Writers.odc │ ├── Mod │ │ ├── EntitySets.odc │ │ ├── Exporter.odc │ │ ├── StdFileWriters.odc │ │ ├── TextTableMarkers.odc │ │ └── Writers.odc │ ├── Rsrc │ │ └── Strings.odc │ └── Sym │ │ ├── EntitySets.osf │ │ ├── Exporter.osf │ │ ├── StdFileWriters.osf │ │ ├── TextTableMarkers.osf │ │ └── Writers.osf ├── build-dev0.bat ├── build.bat ├── build.odc ├── clean ├── export ├── pack-dev0.bat ├── pack-dev0.odc ├── run-BlackBox ├── run-dev0 └── switch-target ├── editfoc.sh ├── link ├── make.bat ├── order.txt ├── runc ├── screenshot.png └── tests ├── crosstest ├── Main.Mod ├── TableBox-Linux.Mod └── TableBox-Win.Mod ├── fulltest ├── FOLoader.Mod ├── Kernel-Linux.Mod ├── Kernel-Win.Mod ├── LinDl.Mod ├── LinLibW.Mod ├── LinLibc.Mod ├── LinRt.Mod ├── Mod1.Mod ├── Out-Linux.Mod ├── Out-Win.Mod ├── Prog1.Mod ├── Utf.Mod └── WinApi.Mod └── tinytest ├── Mod1.Mod └── Prog1.Mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/.gitignore -------------------------------------------------------------------------------- /BlackBox/Code/Config.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Config.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Console.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Console.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Containers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Containers.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Controllers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Controllers.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Controls.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Controls.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Converters.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Converters.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Dates.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Dates.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Dialog.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Dialog.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Documents.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Documents.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Files.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Files.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Files64.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Files64.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Fonts.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Fonts.ocf -------------------------------------------------------------------------------- /BlackBox/Code/In.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/In.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Init.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Init.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Integers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Integers.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Kernel.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Kernel.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Log.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Log.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Math.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Math.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Mechanisms.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Mechanisms.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Meta.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Meta.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Models.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Models.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Out.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Out.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Ports.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Ports.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Printers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Printers.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Printing.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Printing.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Properties.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Properties.ocf -------------------------------------------------------------------------------- /BlackBox/Code/SMath.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/SMath.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Sequencers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Sequencers.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Services.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Services.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Stores.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Stores.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Stores64.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Stores64.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Strings.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Strings.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Unicode.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Unicode.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Utf.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Utf.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Views.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Views.ocf -------------------------------------------------------------------------------- /BlackBox/Code/Windows.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Code/Windows.ocf -------------------------------------------------------------------------------- /BlackBox/Comm/Code/Streams.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Code/Streams.ocf -------------------------------------------------------------------------------- /BlackBox/Comm/Code/TCP.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Code/TCP.ocf -------------------------------------------------------------------------------- /BlackBox/Comm/Code/V24.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Code/V24.ocf -------------------------------------------------------------------------------- /BlackBox/Comm/Docu/Streams.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Docu/Streams.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Docu/Sys-Map.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Docu/Sys-Map.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Docu/TCP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Docu/TCP.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Docu/V24.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Docu/V24.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Mod/Streams.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Mod/Streams.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Mod/TCP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Mod/TCP.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Mod/V24.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Mod/V24.odc -------------------------------------------------------------------------------- /BlackBox/Comm/Sym/Streams.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Sym/Streams.osf -------------------------------------------------------------------------------- /BlackBox/Comm/Sym/TCP.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Sym/TCP.osf -------------------------------------------------------------------------------- /BlackBox/Comm/Sym/V24.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Comm/Sym/V24.osf -------------------------------------------------------------------------------- /BlackBox/Cons/Code/Compiler.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Code/Compiler.ocf -------------------------------------------------------------------------------- /BlackBox/Cons/Code/Interp.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Code/Interp.ocf -------------------------------------------------------------------------------- /BlackBox/Cons/Code/Log.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Code/Log.ocf -------------------------------------------------------------------------------- /BlackBox/Cons/Docu/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Docu/Log.odc -------------------------------------------------------------------------------- /BlackBox/Cons/Mod/Compiler.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Mod/Compiler.odc -------------------------------------------------------------------------------- /BlackBox/Cons/Mod/Interp.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Mod/Interp.odc -------------------------------------------------------------------------------- /BlackBox/Cons/Mod/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Mod/Log.odc -------------------------------------------------------------------------------- /BlackBox/Cons/Sym/Compiler.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Cons/Sym/Compiler.osf -------------------------------------------------------------------------------- /BlackBox/Cons/Sym/Interp.osf: -------------------------------------------------------------------------------- 1 | FSOoConsInterptRun -------------------------------------------------------------------------------- /BlackBox/Cons/Sym/Log.osf: -------------------------------------------------------------------------------- 1 | FSOoConsLogtOpen -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPB.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPB.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPC486.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPC486.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPE.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPE.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPH.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPH.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPL486.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPL486.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPM.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPM.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPP.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPP.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPS.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPS.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPT.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPT.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/CPV486.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/CPV486.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Commanders.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Commanders.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Compiler.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Compiler.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Debug.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Debug.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Linker.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Linker.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Markers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Markers.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Packer.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Packer.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/References.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/References.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Code/Selectors.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Code/Selectors.ocf -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPB.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPC486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPC486.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPE.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPE.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPH.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPH.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPL486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPL486.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPM.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPM.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPP.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPS.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPS.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPT.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPT.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/CPV486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/CPV486.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/Commanders.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/Commanders.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/Compiler.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/Compiler.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/Linker.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/Linker.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/Markers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/Markers.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/Packer.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/Packer.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/References.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/References.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Docu/Selectors.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Docu/Selectors.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPB.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPC486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPC486.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPE.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPE.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPH.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPH.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPL486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPL486.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPM.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPM.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPP.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPS.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPS.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPT.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPT.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/CPV486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/CPV486.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Commanders.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Commanders.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Compiler.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Compiler.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Debug.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Linker.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Linker.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Markers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Markers.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Packer.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Packer.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/References.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/References.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Mod/Selectors.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Mod/Selectors.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Rsrc/Errors.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Rsrc/Errors.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Rsrc/Strings.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Spec/ObjFile.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Spec/ObjFile.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Spec/PackedFiles.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Spec/PackedFiles.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Spec/SymFile.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Spec/SymFile.odc -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPB.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPB.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPC486.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPC486.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPE.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPE.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPH.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPH.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPL486.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPL486.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPM.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPM.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPP.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPP.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPS.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPS.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPT.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPT.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/CPV486.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/CPV486.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Commanders.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Commanders.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Compiler.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Compiler.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Debug.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Debug.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Linker.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Linker.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Markers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Markers.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Packer.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Packer.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/References.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/References.osf -------------------------------------------------------------------------------- /BlackBox/Dev/Sym/Selectors.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev/Sym/Selectors.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/Linker.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/Linker.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/Linker1.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/Linker1.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/LnkBase.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/LnkBase.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/LnkChmod.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/LnkChmod.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/LnkLoad.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/LnkLoad.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/LnkWriteElf.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/LnkWriteElf.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Code/LnkWritePe.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Code/LnkWritePe.ocf -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/Linker.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/Linker.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/Linker1.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/Linker1.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/LnkBase.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/LnkBase.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/LnkChmod.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/LnkChmod.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/LnkLoad.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/LnkLoad.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/LnkWriteElf.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/LnkWriteElf.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Mod/LnkWritePe.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Mod/LnkWritePe.odc -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/Linker.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/Linker.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/Linker1.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/Linker1.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/LnkBase.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/LnkBase.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/LnkChmod.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/LnkChmod.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/LnkLoad.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/LnkLoad.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/LnkWriteElf.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/LnkWriteElf.osf -------------------------------------------------------------------------------- /BlackBox/Dev2/Sym/LnkWritePe.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Dev2/Sym/LnkWritePe.osf -------------------------------------------------------------------------------- /BlackBox/Docu/BB-Chars.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/BB-Chars.odc -------------------------------------------------------------------------------- /BlackBox/Docu/BB-Docu.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/BB-Docu.odc -------------------------------------------------------------------------------- /BlackBox/Docu/BB-Road.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/BB-Road.odc -------------------------------------------------------------------------------- /BlackBox/Docu/BB-Rules.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/BB-Rules.odc -------------------------------------------------------------------------------- /BlackBox/Docu/CP-Lang.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/CP-Lang.odc -------------------------------------------------------------------------------- /BlackBox/Docu/CP-New.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/CP-New.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Contributors.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Contributors.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Help.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Help.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tour.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tour.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-1.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-1.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-2.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-2.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-3.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-3.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-4.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-4.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-5.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-5.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-6.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-6.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-A.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-A.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-B.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-B.odc -------------------------------------------------------------------------------- /BlackBox/Docu/Tut-TOC.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Docu/Tut-TOC.odc -------------------------------------------------------------------------------- /BlackBox/Freeoberon/Sym/Config.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Freeoberon/Sym/Config.osf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Console.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Console.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Dates.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Dates.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Dialog.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Dialog.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Env.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Env.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Files.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Files.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Files64.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Files64.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Fonts.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Fonts.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Lang.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Lang.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/PackedFiles.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/PackedFiles.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Registry.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Registry.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/TextConv.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/TextConv.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Code/Windows.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Code/Windows.ocf -------------------------------------------------------------------------------- /BlackBox/Host/Docu/CFrames.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/CFrames.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Clipboard.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Clipboard.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Cmds.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Dates.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Dates.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Dialog.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Files.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Files.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Files64.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Files64.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Fonts.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Fonts.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Mechanisms.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Mechanisms.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Menus.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Menus.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/PackedFiles.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/PackedFiles.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Pictures.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Pictures.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Ports.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Ports.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Printers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Printers.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Registry.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Registry.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/TabFrames.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/TabFrames.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/TextConv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/TextConv.odc -------------------------------------------------------------------------------- /BlackBox/Host/Docu/Windows.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Docu/Windows.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Console.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Console.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Dates.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Dates.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Dialog.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Env.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Env.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Files.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Files.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Files64.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Files64.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Fonts.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Fonts.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Lang.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Lang.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/PackedFiles.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/PackedFiles.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Registry.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Registry.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/TextConv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/TextConv.odc -------------------------------------------------------------------------------- /BlackBox/Host/Mod/Windows.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Mod/Windows.odc -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Console.osf: -------------------------------------------------------------------------------- 1 | FSOoHostConsole -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Dates.osf: -------------------------------------------------------------------------------- 1 | FSOoHostDates -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Dialog.osf: -------------------------------------------------------------------------------- 1 | FSOoHostDialog -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Env.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/Env.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Files.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/Files.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Files64.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/Files64.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Fonts.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/Fonts.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Lang.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/Lang.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/PackedFiles.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/PackedFiles.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Registry.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/Registry.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/TextConv.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Host/Sym/TextConv.osf -------------------------------------------------------------------------------- /BlackBox/Host/Sym/Windows.osf: -------------------------------------------------------------------------------- 1 | FSOoHostWindows -------------------------------------------------------------------------------- /BlackBox/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/LICENSE.txt -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Dl.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Dl.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Iconv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Iconv.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Ioctl.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Ioctl.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/LibW.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/LibW.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Libc.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Libc.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Net.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Net.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Rt.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Rt.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Mod/Termios.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Mod/Termios.odc -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Dl.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Dl.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Iconv.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Iconv.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Ioctl.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Ioctl.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/LibW.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/LibW.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Libc.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Libc.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Net.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Net.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Rt.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Rt.osf -------------------------------------------------------------------------------- /BlackBox/Lin/Sym/Termios.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Lin/Sym/Termios.osf -------------------------------------------------------------------------------- /BlackBox/Obx/Code/Hello0.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Code/Hello0.ocf -------------------------------------------------------------------------------- /BlackBox/Obx/Code/Pi.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Code/Pi.ocf -------------------------------------------------------------------------------- /BlackBox/Obx/Code/Random.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Code/Random.ocf -------------------------------------------------------------------------------- /BlackBox/Obx/Code/Trap.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Code/Trap.ocf -------------------------------------------------------------------------------- /BlackBox/Obx/Mod/Hello0.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Mod/Hello0.odc -------------------------------------------------------------------------------- /BlackBox/Obx/Mod/Pi.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Mod/Pi.odc -------------------------------------------------------------------------------- /BlackBox/Obx/Mod/Random.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Mod/Random.odc -------------------------------------------------------------------------------- /BlackBox/Obx/Mod/Trap.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Mod/Trap.odc -------------------------------------------------------------------------------- /BlackBox/Obx/Sym/Hello0.osf: -------------------------------------------------------------------------------- 1 | FSOoObxHello0tDo -------------------------------------------------------------------------------- /BlackBox/Obx/Sym/Pi.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Sym/Pi.osf -------------------------------------------------------------------------------- /BlackBox/Obx/Sym/Random.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Sym/Random.osf -------------------------------------------------------------------------------- /BlackBox/Obx/Sym/Trap.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Obx/Sym/Trap.osf -------------------------------------------------------------------------------- /BlackBox/Sql/Database/Companies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Database/Companies -------------------------------------------------------------------------------- /BlackBox/Sql/Database/Ownership: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Database/Ownership -------------------------------------------------------------------------------- /BlackBox/Sql/Database/schema.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Database/schema.ini -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/Browser.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/Browser.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/Controls.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/Controls.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/DB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/DB.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/Dev-Man.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/Dev-Man.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/Drivers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/Drivers.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxDB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxDB.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxDriv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxDriv.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxExt.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxExt.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxGen.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxGen.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxInit.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxInit.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxNets.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxNets.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxTab.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxTab.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxUI.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxUI.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/ObxViews.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/ObxViews.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Docu/Sys-Map.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Docu/Sys-Map.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/Browser.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/Browser.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/Controls.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/Controls.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/DB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/DB.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/Drivers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/Drivers.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxDB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxDB.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxDriv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxDriv.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxExt.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxExt.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxGen.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxGen.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxInit.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxInit.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxNets.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxNets.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxTab.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxTab.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxUI.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxUI.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Mod/ObxViews.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Mod/ObxViews.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Rsrc/Browser.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Rsrc/Browser.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Rsrc/Company.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Rsrc/Company.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Rsrc/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Rsrc/Debug.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Rsrc/Menus.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Rsrc/Menus.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Rsrc/Owner.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Rsrc/Owner.odc -------------------------------------------------------------------------------- /BlackBox/Sql/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sql/Rsrc/Strings.odc -------------------------------------------------------------------------------- /BlackBox/Std/Code/Api.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Api.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/CFrames.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/CFrames.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Clocks.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Clocks.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Cmds.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Cmds.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Coder.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Coder.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Debug.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Debug.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Dialog.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Dialog.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/ETHConv.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/ETHConv.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Folds.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Folds.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Headers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Headers.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Interpreter.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Interpreter.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Links.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Links.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Loader.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Loader.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Log.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Log.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Scrollers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Scrollers.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/Stamps.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/Stamps.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Code/ViewSizer.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Code/ViewSizer.ocf -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Api.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Api.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/CFrames.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/CFrames.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Clocks.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Clocks.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Cmds.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Coder.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Coder.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Debug.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Dialog.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/ETHConv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/ETHConv.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Folds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Folds.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Headers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Headers.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Interpreter.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Interpreter.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Links.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Links.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Loader.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Loader.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Log.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Scrollers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Scrollers.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Stamps.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Stamps.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/Sys-Map.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/Sys-Map.odc -------------------------------------------------------------------------------- /BlackBox/Std/Docu/ViewSizer.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Docu/ViewSizer.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Api.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Api.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/CFrames.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/CFrames.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Clocks.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Clocks.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Cmds.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Coder.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Coder.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Debug.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Dialog.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/ETHConv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/ETHConv.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Folds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Folds.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Headers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Headers.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Interpreter.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Interpreter.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Links.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Links.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Loader.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Loader.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Log.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Scrollers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Scrollers.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/Stamps.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/Stamps.odc -------------------------------------------------------------------------------- /BlackBox/Std/Mod/ViewSizer.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Mod/ViewSizer.odc -------------------------------------------------------------------------------- /BlackBox/Std/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Rsrc/Strings.odc -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Api.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Api.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/CFrames.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/CFrames.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Clocks.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Clocks.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Cmds.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Cmds.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Coder.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Coder.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Debug.osf: -------------------------------------------------------------------------------- 1 | FSOoStdDebug -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Dialog.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Dialog.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/ETHConv.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/ETHConv.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Folds.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Folds.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Headers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Headers.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Interpreter.osf: -------------------------------------------------------------------------------- 1 | FSOoStdInterpreter -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Links.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Links.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Loader.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Loader.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Log.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Log.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Scrollers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Scrollers.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/Stamps.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/Stamps.osf -------------------------------------------------------------------------------- /BlackBox/Std/Sym/ViewSizer.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Std/Sym/ViewSizer.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Config.osf: -------------------------------------------------------------------------------- 1 | FSOoConfigtSetup -------------------------------------------------------------------------------- /BlackBox/Sym/Console.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Console.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Containers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Containers.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Controllers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Controllers.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Controls.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Controls.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Converters.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Converters.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Dates.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Dates.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Dialog.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Dialog.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Documents.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Documents.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Files.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Files.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Files64.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Files64.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Fonts.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Fonts.osf -------------------------------------------------------------------------------- /BlackBox/Sym/In.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/In.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Init.osf: -------------------------------------------------------------------------------- 1 | FSOoInit -------------------------------------------------------------------------------- /BlackBox/Sym/Integers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Integers.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Kernel.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Kernel.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Log.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Log.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Math.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Math.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Mechanisms.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Mechanisms.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Meta.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Meta.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Models.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Models.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Out.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Out.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Ports.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Ports.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Printers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Printers.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Printing.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Printing.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Properties.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Properties.osf -------------------------------------------------------------------------------- /BlackBox/Sym/SMath.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/SMath.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Sequencers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Sequencers.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Services.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Services.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Stores.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Stores.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Stores64.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Stores64.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Strings.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Strings.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Unicode.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Unicode.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Utf.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Utf.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Views.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Views.osf -------------------------------------------------------------------------------- /BlackBox/Sym/Windows.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Sym/Windows.osf -------------------------------------------------------------------------------- /BlackBox/System/Docu/Config.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Config.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Console.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Console.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Controls.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Controls.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Dates.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Dates.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Dialog.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Documents.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Documents.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Files.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Files.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Files64.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Files64.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Fonts.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Fonts.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/In.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/In.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Init.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Init.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Integers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Integers.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Kernel.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Kernel.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Log.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Math.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Math.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Meta.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Meta.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Models.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Models.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Out.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Out.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Ports.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Ports.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Printers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Printers.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Printing.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Printing.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/SMath.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/SMath.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Services.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Services.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Stores.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Stores.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Stores64.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Stores64.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Strings.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Sys-Map.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Sys-Map.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Unicode.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Unicode.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/User-Man.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/User-Man.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Utf.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Utf.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Views.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Views.odc -------------------------------------------------------------------------------- /BlackBox/System/Docu/Windows.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Docu/Windows.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Config.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Config.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Console.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Console.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Containers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Containers.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Controls.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Controls.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Converters.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Converters.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Dates.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Dates.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Dialog.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Documents.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Documents.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Files.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Files.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Files64.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Files64.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Fonts.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Fonts.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/In.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/In.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Init.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Init.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Integers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Integers.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Kernel.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Kernel.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Log.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Math.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Math.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Mechanisms.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Mechanisms.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Meta.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Meta.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Models.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Models.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Out.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Out.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Ports.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Ports.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Printers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Printers.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Printing.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Printing.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Properties.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Properties.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/SMath.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/SMath.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Sequencers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Sequencers.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Services.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Services.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Stores.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Stores.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Stores64.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Stores64.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Strings.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Unicode.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Unicode.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Utf.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Utf.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Views.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Views.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/Windows.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/Windows.odc -------------------------------------------------------------------------------- /BlackBox/System/Mod/odc37524: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Mod/odc37524 -------------------------------------------------------------------------------- /BlackBox/System/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/System/Rsrc/Strings.odc -------------------------------------------------------------------------------- /BlackBox/Text/Code/Cmds.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Cmds.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Code/Controllers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Controllers.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Code/Mappers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Mappers.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Code/Models.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Models.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Code/Rulers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Rulers.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Code/Setters.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Setters.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Code/Views.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Code/Views.ocf -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Cmds.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Controllers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Controllers.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Dev-Man.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Dev-Man.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Mappers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Mappers.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Models.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Models.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Rulers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Rulers.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Setters.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Setters.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Sys-Map.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Sys-Map.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Tab-Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Tab-Dialog.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/User-Man.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/User-Man.odc -------------------------------------------------------------------------------- /BlackBox/Text/Docu/Views.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Docu/Views.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Cmds.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Controllers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Controllers.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Mappers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Mappers.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Models.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Models.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Rulers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Rulers.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Setters.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Setters.odc -------------------------------------------------------------------------------- /BlackBox/Text/Mod/Views.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Mod/Views.odc -------------------------------------------------------------------------------- /BlackBox/Text/Rsrc/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Rsrc/Cmds.odc -------------------------------------------------------------------------------- /BlackBox/Text/Rsrc/Cmds1.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Rsrc/Cmds1.odc -------------------------------------------------------------------------------- /BlackBox/Text/Rsrc/Menus.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Rsrc/Menus.odc -------------------------------------------------------------------------------- /BlackBox/Text/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Rsrc/Strings.odc -------------------------------------------------------------------------------- /BlackBox/Text/Rsrc/Tab.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Rsrc/Tab.odc -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Cmds.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Cmds.osf -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Controllers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Controllers.osf -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Mappers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Mappers.osf -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Models.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Models.osf -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Rulers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Rulers.osf -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Setters.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Setters.osf -------------------------------------------------------------------------------- /BlackBox/Text/Sym/Views.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Text/Sym/Views.osf -------------------------------------------------------------------------------- /BlackBox/Xhtml/Code/EntitySets.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Code/EntitySets.ocf -------------------------------------------------------------------------------- /BlackBox/Xhtml/Code/Exporter.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Code/Exporter.ocf -------------------------------------------------------------------------------- /BlackBox/Xhtml/Code/Writers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Code/Writers.ocf -------------------------------------------------------------------------------- /BlackBox/Xhtml/Docu/EntitySets.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Docu/EntitySets.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Docu/Exporter.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Docu/Exporter.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Docu/Sys-Map.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Docu/Sys-Map.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Docu/Writers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Docu/Writers.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Mod/EntitySets.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Mod/EntitySets.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Mod/Exporter.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Mod/Exporter.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Mod/Writers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Mod/Writers.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Rsrc/Strings.odc -------------------------------------------------------------------------------- /BlackBox/Xhtml/Sym/EntitySets.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Sym/EntitySets.osf -------------------------------------------------------------------------------- /BlackBox/Xhtml/Sym/Exporter.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Sym/Exporter.osf -------------------------------------------------------------------------------- /BlackBox/Xhtml/Sym/Writers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/Xhtml/Sym/Writers.osf -------------------------------------------------------------------------------- /BlackBox/blackbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/blackbox -------------------------------------------------------------------------------- /BlackBox/run-BlackBox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/BlackBox/run-BlackBox -------------------------------------------------------------------------------- /Cons/Mod/MultiCompiler.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Cons/Mod/MultiCompiler.Mod -------------------------------------------------------------------------------- /Dev/Mod/CPM.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Dev/Mod/CPM.Mod -------------------------------------------------------------------------------- /Dev/Mod/Linker.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Dev/Mod/Linker.Mod -------------------------------------------------------------------------------- /Dev/Rsrc/Errors.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Dev/Rsrc/Errors.odc -------------------------------------------------------------------------------- /Dev/Rsrc/Strings.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Dev/Rsrc/Strings.odc -------------------------------------------------------------------------------- /Dev2/Mod/LnkBase.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Dev2/Mod/LnkBase.Mod -------------------------------------------------------------------------------- /Dev2/Mod/LnkChmod.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Dev2/Mod/LnkChmod.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Compiler.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Compiler.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Config.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Config.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Errors.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Errors.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Linker.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Linker.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/LinkerProxy.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/LinkerProxy.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Main.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Main.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Platform.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Platform.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/Scanner.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/Scanner.Mod -------------------------------------------------------------------------------- /Freeoberon/Mod/__WIN_Platform.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Freeoberon/Mod/__WIN_Platform.Mod -------------------------------------------------------------------------------- /Host/Mod/Args.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Host/Mod/Args.Mod -------------------------------------------------------------------------------- /Host/Mod/Files.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Host/Mod/Files.Mod -------------------------------------------------------------------------------- /Host/Mod/__WIN_Args.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Host/Mod/__WIN_Args.Mod -------------------------------------------------------------------------------- /Host/Mod/__WIN_Files.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Host/Mod/__WIN_Files.Mod -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/AllLibs.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/AllLibs.Mod -------------------------------------------------------------------------------- /Lib/Char/Utils.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/Char/Utils.cp -------------------------------------------------------------------------------- /Lib/FOLoader.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/FOLoader.Mod -------------------------------------------------------------------------------- /Lib/Kernel-Linux.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/Kernel-Linux.Mod -------------------------------------------------------------------------------- /Lib/Kernel-Win.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/Kernel-Win.Mod -------------------------------------------------------------------------------- /Lib/LinDl.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/LinDl.Mod -------------------------------------------------------------------------------- /Lib/LinLibW.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/LinLibW.Mod -------------------------------------------------------------------------------- /Lib/LinLibc.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/LinLibc.Mod -------------------------------------------------------------------------------- /Lib/LinRt.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/LinRt.Mod -------------------------------------------------------------------------------- /Lib/Out-Linux.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/Out-Linux.Mod -------------------------------------------------------------------------------- /Lib/Out-Win.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/Out-Win.Mod -------------------------------------------------------------------------------- /Lib/Utf.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/Utf.Mod -------------------------------------------------------------------------------- /Lib/WinApi.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Lib/WinApi.Mod -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/README.md -------------------------------------------------------------------------------- /System/Mod/Args.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/System/Mod/Args.Mod -------------------------------------------------------------------------------- /__WIN_BlackBox/BlackBoxInterp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/BlackBoxInterp.exe -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Config.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Config.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Console.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Console.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Containers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Containers.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Controls.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Controls.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Converters.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Converters.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Dates.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Dates.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Dialog.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Dialog.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Documents.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Documents.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Files.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Files.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Files64.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Files64.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Fonts.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Fonts.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/In.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/In.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Init.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Init.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Integers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Integers.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Kernel.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Kernel.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Log.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Log.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Math.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Math.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Mechanisms.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Mechanisms.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Meta.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Meta.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Models.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Models.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Out.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Out.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Ports.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Ports.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Printers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Printers.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Printing.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Printing.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Properties.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Properties.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/SMath.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/SMath.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Sequencers.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Sequencers.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Services.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Services.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Stores.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Stores.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Stores64.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Stores64.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Strings.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Strings.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Unicode.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Unicode.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Utf.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Utf.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Views.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Views.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Code/Windows.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Code/Windows.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Code/TCP.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Code/TCP.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Code/V24.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Code/V24.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Docu/TCP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Docu/TCP.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Docu/V24.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Docu/V24.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Mod/TCP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Mod/TCP.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Mod/V24.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Mod/V24.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Sym/TCP.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Sym/TCP.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Comm/Sym/V24.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Comm/Sym/V24.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Cons/Code/Log.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Cons/Code/Log.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Cons/Docu/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Cons/Docu/Log.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Cons/Mod/Interp.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Cons/Mod/Interp.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Cons/Mod/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Cons/Mod/Log.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Cons/Sym/Interp.osf: -------------------------------------------------------------------------------- 1 | FSOoConsInterptRun -------------------------------------------------------------------------------- /__WIN_BlackBox/Cons/Sym/Log.osf: -------------------------------------------------------------------------------- 1 | FSOoConsLogtOpen -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPB.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPB.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPC486.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPC486.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPE.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPE.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPH.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPH.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPL486.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPL486.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPM.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPM.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPP.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPP.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPS.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPS.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPT.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPT.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/CPV486.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/CPV486.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/Debug.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/Debug.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/Linker.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/Linker.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Code/Packer.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Code/Packer.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPB.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPC486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPC486.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPE.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPE.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPH.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPH.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPL486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPL486.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPM.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPM.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPP.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPS.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPS.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPT.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPT.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/CPV486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/CPV486.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/Linker.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/Linker.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Docu/Packer.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Docu/Packer.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPB.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPC486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPC486.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPE.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPE.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPH.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPH.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPL486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPL486.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPM.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPM.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPP.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPP.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPS.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPS.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPT.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPT.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/CPV486.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/CPV486.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/Debug.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/Linker.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/Linker.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/Markers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/Markers.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Mod/Packer.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Mod/Packer.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Rsrc/Errors.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Rsrc/Errors.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPB.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPB.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPC486.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPC486.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPE.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPE.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPH.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPH.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPL486.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPL486.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPM.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPM.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPP.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPP.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPS.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPS.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPT.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPT.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/CPV486.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/CPV486.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/Debug.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/Debug.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/Linker.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/Linker.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/Markers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/Markers.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Dev/Sym/Packer.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Dev/Sym/Packer.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/BB-Chars.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/BB-Chars.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/BB-Docu.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/BB-Docu.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/BB-Road.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/BB-Road.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/BB-Rules.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/BB-Rules.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/CP-Lang.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/CP-Lang.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/CP-New.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/CP-New.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Help.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Help.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tour.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tour.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-1.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-1.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-2.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-2.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-3.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-3.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-4.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-4.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-5.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-5.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-6.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-6.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-A.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-A.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-B.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-B.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Docu/Tut-TOC.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Docu/Tut-TOC.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Code/Dates.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Code/Dates.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Code/Env.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Code/Env.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Code/Files.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Code/Files.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Code/Fonts.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Code/Fonts.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Code/Lang.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Code/Lang.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Docu/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Docu/Cmds.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Docu/Dates.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Docu/Dates.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Docu/Files.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Docu/Files.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Docu/Fonts.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Docu/Fonts.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Docu/Menus.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Docu/Menus.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Docu/Ports.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Docu/Ports.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Mod/Dates.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Mod/Dates.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Mod/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Mod/Dialog.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Mod/Env.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Mod/Env.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Mod/Files.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Mod/Files.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Mod/Fonts.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Mod/Fonts.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Mod/Lang.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Mod/Lang.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Console.osf: -------------------------------------------------------------------------------- 1 | FSOoHostConsole -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Dates.osf: -------------------------------------------------------------------------------- 1 | FSOoHostDates -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Dialog.osf: -------------------------------------------------------------------------------- 1 | FSOoHostDialog -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Env.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Sym/Env.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Files.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Sym/Files.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Fonts.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Host/Sym/Fonts.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Lang.osf: -------------------------------------------------------------------------------- 1 | FSOoHostLang -------------------------------------------------------------------------------- /__WIN_BlackBox/Host/Sym/Windows.osf: -------------------------------------------------------------------------------- 1 | FSOoHostWindows -------------------------------------------------------------------------------- /__WIN_BlackBox/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/LICENSE.txt -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Code/Hello0.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Code/Hello0.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Code/Pi.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Code/Pi.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Code/Random.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Code/Random.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Code/Trap.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Code/Trap.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Mod/Hello0.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Mod/Hello0.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Mod/Pi.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Mod/Pi.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Mod/Random.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Mod/Random.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Mod/Trap.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Mod/Trap.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Sym/Hello0.osf: -------------------------------------------------------------------------------- 1 | FSOoObxHello0tDo -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Sym/Pi.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Sym/Pi.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Sym/Random.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Sym/Random.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Obx/Sym/Trap.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Obx/Sym/Trap.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/README -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Code/DB.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Code/DB.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Code/ObxDB.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Code/ObxDB.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Code/ObxExt.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Code/ObxExt.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Code/ObxGen.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Code/ObxGen.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Code/ObxTab.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Code/ObxTab.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Code/ObxUI.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Code/ObxUI.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Docu/DB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Docu/DB.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Docu/ObxDB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Docu/ObxDB.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Docu/ObxExt.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Docu/ObxExt.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Docu/ObxGen.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Docu/ObxGen.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Docu/ObxTab.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Docu/ObxTab.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Docu/ObxUI.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Docu/ObxUI.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/Browser.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/Browser.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/DB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/DB.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/Drivers.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/Drivers.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxDB.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxDB.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxDriv.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxDriv.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxExt.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxExt.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxGen.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxGen.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxInit.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxInit.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxNets.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxNets.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxTab.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxTab.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Mod/ObxUI.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Mod/ObxUI.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Rsrc/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Rsrc/Debug.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Rsrc/Menus.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Rsrc/Menus.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Rsrc/Owner.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Rsrc/Owner.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/Browser.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/Browser.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/DB.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/DB.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/Drivers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/Drivers.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxDB.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/ObxDB.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxExt.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/ObxExt.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxGen.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/ObxGen.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxInit.osf: -------------------------------------------------------------------------------- 1 | FSOoSqlObxInittSetup -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxNets.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/ObxNets.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxTab.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/ObxTab.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sql/Sym/ObxUI.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sql/Sym/ObxUI.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Api.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Api.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Clocks.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Clocks.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Cmds.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Cmds.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Coder.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Coder.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Debug.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Debug.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Dialog.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Dialog.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Folds.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Folds.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Links.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Links.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Loader.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Loader.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Log.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Log.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Code/Stamps.ocf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Code/Stamps.ocf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Api.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Api.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Clocks.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Clocks.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Cmds.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Coder.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Coder.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Debug.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Dialog.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Dialog.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Folds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Folds.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Links.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Links.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Loader.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Loader.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Log.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Docu/Stamps.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Docu/Stamps.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Api.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Api.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/CFrames.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/CFrames.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Clocks.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Clocks.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Cmds.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Coder.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Coder.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Debug.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Debug.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Folds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Folds.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Links.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Links.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Mod/Log.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Mod/Log.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Api.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Sym/Api.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Cmds.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Sym/Cmds.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Coder.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Sym/Coder.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Debug.osf: -------------------------------------------------------------------------------- 1 | FSOoStdDebug -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Folds.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Sym/Folds.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Interpreter.osf: -------------------------------------------------------------------------------- 1 | FSOoStdInterpreter -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Links.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Sym/Links.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Std/Sym/Log.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Std/Sym/Log.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Config.osf: -------------------------------------------------------------------------------- 1 | FSOoConfigtSetup -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Console.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Console.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Controls.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Controls.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Dates.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Dates.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Dialog.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Dialog.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Documents.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Documents.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Files.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Files.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Files64.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Files64.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Fonts.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Fonts.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/In.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/In.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Init.osf: -------------------------------------------------------------------------------- 1 | FSOoInit -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Integers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Integers.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Kernel.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Kernel.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Log.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Log.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Math.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Math.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Meta.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Meta.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Models.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Models.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Out.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Out.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Ports.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Ports.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Printers.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Printers.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Printing.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Printing.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/SMath.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/SMath.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Services.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Services.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Stores.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Stores.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Stores64.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Stores64.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Strings.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Strings.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Unicode.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Unicode.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Utf.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Utf.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Views.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Views.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Sym/Windows.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Sym/Windows.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/System/Mod/In.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/System/Mod/In.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Text/Mod/Cmds.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Text/Mod/Cmds.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Text/Rsrc/Tab.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Text/Rsrc/Tab.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Text/Sym/Cmds.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Text/Sym/Cmds.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Docu/Api.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Docu/Api.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Docu/MM.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Docu/MM.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Docu/Net.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Docu/Net.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Docu/Sql.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Docu/Sql.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Mod/Api.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Mod/Api.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Mod/MM.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Mod/MM.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Mod/Net.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Mod/Net.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Mod/Ole.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Mod/Ole.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Mod/Sql.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Mod/Sql.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Rsrc/Copy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Rsrc/Copy.cur -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Rsrc/Hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Rsrc/Hand.cur -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Rsrc/Link.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Rsrc/Link.cur -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Rsrc/Move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Rsrc/Move.cur -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Rsrc/Pick.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Rsrc/Pick.cur -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Rsrc/Stop.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Rsrc/Stop.cur -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Sym/Api.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Sym/Api.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Sym/MM.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Sym/MM.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Sym/Net.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Sym/Net.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Sym/Ole.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Sym/Ole.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/Win/Sym/Sql.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/Win/Sym/Sql.osf -------------------------------------------------------------------------------- /__WIN_BlackBox/build-dev0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/build-dev0.bat -------------------------------------------------------------------------------- /__WIN_BlackBox/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/build.bat -------------------------------------------------------------------------------- /__WIN_BlackBox/build.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/build.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/clean -------------------------------------------------------------------------------- /__WIN_BlackBox/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/export -------------------------------------------------------------------------------- /__WIN_BlackBox/pack-dev0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/pack-dev0.bat -------------------------------------------------------------------------------- /__WIN_BlackBox/pack-dev0.odc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/pack-dev0.odc -------------------------------------------------------------------------------- /__WIN_BlackBox/run-BlackBox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/run-BlackBox -------------------------------------------------------------------------------- /__WIN_BlackBox/run-dev0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/run-dev0 -------------------------------------------------------------------------------- /__WIN_BlackBox/switch-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/__WIN_BlackBox/switch-target -------------------------------------------------------------------------------- /editfoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/editfoc.sh -------------------------------------------------------------------------------- /link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/link -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/make.bat -------------------------------------------------------------------------------- /order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/order.txt -------------------------------------------------------------------------------- /runc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/runc -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/screenshot.png -------------------------------------------------------------------------------- /tests/crosstest/Main.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/crosstest/Main.Mod -------------------------------------------------------------------------------- /tests/crosstest/TableBox-Win.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/crosstest/TableBox-Win.Mod -------------------------------------------------------------------------------- /tests/fulltest/FOLoader.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/FOLoader.Mod -------------------------------------------------------------------------------- /tests/fulltest/Kernel-Linux.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Kernel-Linux.Mod -------------------------------------------------------------------------------- /tests/fulltest/Kernel-Win.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Kernel-Win.Mod -------------------------------------------------------------------------------- /tests/fulltest/LinDl.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/LinDl.Mod -------------------------------------------------------------------------------- /tests/fulltest/LinLibW.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/LinLibW.Mod -------------------------------------------------------------------------------- /tests/fulltest/LinLibc.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/LinLibc.Mod -------------------------------------------------------------------------------- /tests/fulltest/LinRt.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/LinRt.Mod -------------------------------------------------------------------------------- /tests/fulltest/Mod1.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Mod1.Mod -------------------------------------------------------------------------------- /tests/fulltest/Out-Linux.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Out-Linux.Mod -------------------------------------------------------------------------------- /tests/fulltest/Out-Win.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Out-Win.Mod -------------------------------------------------------------------------------- /tests/fulltest/Prog1.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Prog1.Mod -------------------------------------------------------------------------------- /tests/fulltest/Utf.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/Utf.Mod -------------------------------------------------------------------------------- /tests/fulltest/WinApi.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/fulltest/WinApi.Mod -------------------------------------------------------------------------------- /tests/tinytest/Mod1.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/tinytest/Mod1.Mod -------------------------------------------------------------------------------- /tests/tinytest/Prog1.Mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oberoncompiler/foc/HEAD/tests/tinytest/Prog1.Mod --------------------------------------------------------------------------------