Release.Tool 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. # To compile all files in a specific release...
  2. #
  3. # A2
  4. #
  5. # Release.Build A2 ~
  6. #
  7. # Bootimage (IDE)
  8. # Linker.Link \PAOS: \.Obx AOS:IDE.Bin 0100000H 1000H Kernel Traps
  9. # ATADisks DiskVolumes DiskFS BootConsole ~
  10. #
  11. # Bootimage (USB)
  12. # Linker.Link \PAOS: \.Obx AOS:USB.Bin 0100000H 1000H Kernel Traps
  13. # UsbHubDriver UsbEhci UsbUhci UsbOhci UsbStorageBoot
  14. # DiskVolumes DiskFS BootConsole ~
  15. #
  16. # A2 Cooperative
  17. #
  18. # Release.Build --build --path="./" A2Cooperative ~
  19. # StaticLinker.Link --fileName=a2.bin --extension=Gof --displacement=100000H --path="./" Trace CPU Runtime Counters APIC Processors Queues BaseTypes Activities ExclusiveBlocks HeapManager Interrupts Environment Mutexes Machine Heaps Modules GarbageCollector Objects Kernel KernelLog Streams Reflection TrapWriters Traps Plugins Disks PCI ATADisks Caches Commands Files DiskVolumes Clock Dates Reals Strings Diagnostics BitSets StringPool ObjectFile GenericLinker GenericLoader BootConsole ~
  20. #
  21. # A2 RPi Cooperative
  22. #
  23. # Release.Build --build --path="./" A2RPiCooperative ~
  24. # StaticLinker.Link --fileName=kernel.img --extension=Gof --displacement=8000H --path="./" Trace CPU Runtime Counters Processors Queues BaseTypes Timer Activities ExclusiveBlocks HeapManager Interrupts Environment Mutexes Machine Heaps Modules GarbageCollector Objects Kernel ~
  25. #
  26. # A2 Zynq Cooperative
  27. #
  28. # Release.Build --build --path="./" A2ZynqCooperative ~
  29. # StaticLinker.Link --fileName=kernel.bin --extension=Gof --displacement=100000H --path="./" Trace CPU Runtime Counters Processors Queues BaseTypes Timer Activities ExclusiveBlocks HeapManager Interrupts Environment Mutexes Machine Heaps Modules GarbageCollector Objects Kernel ~
  30. #
  31. # WINAOS
  32. #
  33. # There are two different variants of WinAOS:
  34. #
  35. # Internal version: Oberon Application runs in a WinAos Window
  36. #
  37. # Release.Build --build WinAos ~
  38. #
  39. # Bootimage
  40. # PELinker.Link --path=../obj/ Win32.Aos.Link ~
  41. #
  42. # External version: Oberon Applications runs in a separate MS Windows Window
  43. #
  44. # Release.Build eWinAos ~
  45. #
  46. # Bootimage
  47. # PELinker.Link --path=../ObjE/ Win32.Aos.Link ~
  48. #
  49. # WINAOS generic
  50. # Release.Build Win32G ~
  51. # StaticLinker.Link --fileFormat=PE32 --fileName=A2.exe --extension=GofW --displacement=401000H Runtime Trace Kernel32 Machine Heaps Modules Objects Kernel KernelLog Streams Commands Files WinFS Clock Dates Reals Strings Diagnostics BitSets StringPool ObjectFile GenericLinker Reflection GenericLoader BootConsole ~
  52. # Do not forget to add the object file path to the path and to add ObjectFileExtension= ".ObfW" to your .ini file in order to configure the loader.
  53. # Command line shell:
  54. # StaticLinker.Link --fileFormat=PE32CUI --fileName=oberon.exe --extension=GofW --displacement=401000H Runtime Trace Kernel32 Machine Heaps Modules Objects Kernel KernelLog Streams Commands Files WinFS Clock Dates Reals Strings Diagnostics BitSets StringPool ObjectFile GenericLinker Reflection GenericLoader WinTrace StdIO Traps RelativeFileSystem WMDefaultFont SystemTools StdIOShell ~
  55. #
  56. # LinuxAOS Generic
  57. # Release.Build Linux32G ~
  58. # Command line version:
  59. # StaticLinker.Link -p=Linux32G Runtime Trace Glue Unix Machine Heaps Modules Objects Kernel KernelLog Streams Commands Pipes StdIO TrapWriters Reflection Traps Files UnixFiles Clock Dates Reals Strings Diagnostics BitSets StringPool ObjectFile GenericLinker GenericLoader Shell SystemTools StdIOShell ~
  60. # X11 Bootconsole:
  61. # StaticLinker.Link -p=Linux32G Runtime Trace Glue Unix Machine Heaps Modules Objects Kernel KernelLog Streams Commands Pipes StdIO TrapWriters Reflection Traps Files UnixFiles Clock Dates Reals Strings Diagnostics BitSets StringPool ObjectFile GenericLinker GenericLoader BootConsole ~
  62. #
  63. # SolarisAOS Generic
  64. # Release.Build Solaris32G ~
  65. # X11 Bootconsole:
  66. # StaticLinker.Link -p=Solaris32G --path=NewAos/
  67. # Runtime Trace Glue Unix Machine Heaps Modules Objects Kernel KernelLog Streams Pipes
  68. # Commands StdIO TrapWriters Traps Files UnixFiles Clock Dates Reals Strings Diagnostics
  69. # BitSets StringPool GenericLinker Reflection GenericLoader BootConsole ~
  70. # UnixBinary.Build oberon.bin -> A2Core ~
  71. #
  72. # DarwinAOS Generic
  73. # Release.Build Darwin32G ~
  74. # X11 Bootconsole:
  75. # StaticLinker.Link -p=Darwin32G --path=NewAos/
  76. # Runtime Trace Glue Unix Machine Heaps Modules Objects Kernel KernelLog Streams Pipes
  77. # Commands StdIO TrapWriters Traps Files UnixFiles Clock Dates Reals Strings Diagnostics
  78. # BitSets StringPool GenericLinker Reflection GenericLoader BootConsole ~
  79. # UnixBinary.Build oberon.bin -> A2Core ~
  80. #
  81. # WINAOS Cooperative
  82. # Release.Build --path="./" WinAosCooperative ~
  83. # StaticLinker.Link --fileFormat=PE32 --fileName=a2.exe --extension=GofCW --displacement=401000H --path="./" Trace CPU Runtime Counters Kernel32 Processors Queues BaseTypes Timer Activities ExclusiveBlocks Environment Mutexes Interrupts Machine Heaps Modules GarbageCollector Objects Kernel KernelLog Streams Commands Files WinFS Clock Dates Reals Strings Diagnostics BitSets StringPool ObjectFile GenericLinker Reflection GenericLoader BootConsole ~
  84. # FSTools.CloseFiles A2.exe ~
  85. #
  86. # Notes:
  87. # - The command PELinker.Link creates the Aos.exe executable file. Per default, it will be created in the Work folder.
  88. # - The configuration file aos.ini specifies from which directory the object files are loaded. If you want to switch between the
  89. # internal and external version, you need to adapted aos.ini.
  90. #
  91. # For the detailed command syntax: See Release.Mod
  92. #
  93. # The HEADER section includes the following information:
  94. #
  95. # VERSION
  96. # Version string of the form <Major> "." <Minor>
  97. # Compatibility to Release.Mod: Major version numbers must be equal. Minor number of Release.Mod must be at lest <Minor>
  98. #
  99. # The BUILD section describes what builds can be built. For each build, the following options can be specified:
  100. #
  101. # INCLUDE
  102. # In this package description file it is possible to describe files that are only contained in certain builds. This is done by using indicates, e.g. WIN { list of files } means that
  103. # the files listed in curly brackets will only be included in builds that include the indicator WIN.
  104. # Note that if a file is listed without an indicator, it will be included in all releases, so INCLUDE describes what files should be additionally
  105. # included.
  106. # The list of indicators must be specified as enquoted string of space separated indicator names.
  107. #
  108. # COMPILER
  109. # Compile command to be used to compile the files included in the build. This option can be overriden by using the --compiler option of
  110. # the Release.Build command.
  111. #
  112. # COMPILEOPTIONS, TARGET, EXTENSION & PATH
  113. # Command line options for the compiler. These options can be overriden by using the --target, --extension and --path option of the
  114. # Release.Build command.
  115. # The release tool be generate the compiler option string like : COMPILEOPTIONS + " \d" + TARGET + " \." + EXTENSION + " \P" + PATH
  116. #
  117. # EXCLUDEPACKAGES
  118. # By default, all packages are included in all builds. Using the EXCLUDEPACKAGES option, packages can explicitly be excluded from a build.
  119. # The list of packages must be specified as enquoted string of space separated package names.
  120. # This option can be overriden by the --exclude option of the Release.Build command.
  121. #
  122. # DISABLED
  123. # Set to TRUE to indicate that a build is broken. The Release.Check command will not attempt to compile
  124. # disabled builds. The commands Release.Build and Release.Rebuild will prompt a warning message but do their jobs. All other
  125. # commands simply ignore this setting.
  126. #
  127. # To actually build such a build, call Release.Build buildname ~
  128. #
  129. # Note:
  130. #
  131. # Files whose name is of the form prefix.mid.suffix where prefix="Release" and suffix#"Mod" will be added to the corresponding package twice:
  132. # prefix.mid.suffix AND mid.suffix
  133. #
  134. HEADER
  135. VERSION "1.0"
  136. END
  137. BUILDS
  138. A2 {
  139. INCLUDE "NATIVE NATIVEORIG I386 I386ORIG UNCOOP UNCOOP32"
  140. COMPILER "Compiler.Compile"
  141. COMPILEOPTIONS ""
  142. TARGET "AMD"
  143. EXTENSION "Obx"
  144. SYMBOLEXTENSION "Obx"
  145. PATH "AOS"
  146. EXCLUDEPACKAGES ""
  147. DISABLED "FALSE"
  148. }
  149. A2Cooperative {
  150. INCLUDE "NATIVE I386 COOP NATIVECOOP NATIVEI386COOP I386COOP"
  151. COMPILER "Compiler.Compile"
  152. COMPILEOPTIONS "--cooperative --objectFile=Generic --newObjectFile --traceModule=Trace --mergeSections"
  153. TARGET "AMD"
  154. EXTENSION "Gof"
  155. SYMBOLEXTENSION "Sym"
  156. PATH "AOS"
  157. EXCLUDEPACKAGES "Applications GuiApplications Fun Testing Education Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts"
  158. DISABLED "FALSE"
  159. }
  160. A2RPiCooperative {
  161. INCLUDE "NATIVE ARM RPI COOP RPICOOP"
  162. COMPILER "Compiler.Compile"
  163. COMPILEOPTIONS "--cooperative --objectFile=Generic --newObjectFile --traceModule=Trace --mergeSections"
  164. TARGET "ARM"
  165. EXTENSION "Gof"
  166. SYMBOLEXTENSION "Sym"
  167. PATH "AOS"
  168. EXCLUDEPACKAGES "System Drivers Compiler ApplicationsMini Applications GuiApplicationsMini GuiApplications Fun Testing Education Build EFI Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts"
  169. DISABLED "FALSE"
  170. }
  171. A2ZynqCooperative {
  172. INCLUDE "NATIVE ARM ZYNQ COOP ZYNQCOOP"
  173. COMPILER "Compiler.Compile"
  174. COMPILEOPTIONS "--cooperative --objectFile=Generic --newObjectFile --traceModule=Trace --mergeSections"
  175. TARGET "ARM"
  176. EXTENSION "Gof"
  177. SYMBOLEXTENSION "Sym"
  178. PATH "AOS"
  179. EXCLUDEPACKAGES "System Drivers Compiler ApplicationsMini Applications GuiApplicationsMini GuiApplications Fun Testing Education Build EFI Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts"
  180. DISABLED "FALSE"
  181. }
  182. A2NewObjectFile
  183. {
  184. INCLUDE "NATIVE NATIVEGEN I386 I386GEN UNCOOP UNCOOP32"
  185. COMPILER "Compiler.Compile"
  186. COMPILEOPTIONS "--objectFile=Generic --newObjectFile --mergeSections"
  187. TARGET "AMD"
  188. EXTENSION "GofG"
  189. SYMBOLEXTENSION "SymG"
  190. PATH "AOS"
  191. EXCLUDEPACKAGES "Applications GuiApplications Fun Testing Education Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts"
  192. DISABLED "FALSE"
  193. }
  194. Win32G
  195. {
  196. INCLUDE "WIN iWIN WINGEN WINGEN32 UNCOOP UNCOOP32"
  197. COMPILER "Compiler.Compile"
  198. COMPILEOPTIONS "-p=Win32G"
  199. EXCLUDEPACKAGES ""
  200. DISABLED "FALSE"
  201. }
  202. Win64G
  203. {
  204. INCLUDE "WIN iWIN WINGEN WINGEN64 UNCOOP UNCOOP64"
  205. COMPILER "Compiler.Compile"
  206. COMPILEOPTIONS "-p=Win64G"
  207. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  208. DISABLED "FALSE"
  209. }
  210. A2_64 {
  211. INCLUDE "NATIVE NATIVEORIG AMD64 AMD64ORIG UNCOOP UNCOOP64"
  212. COMPILER "Compiler.Compile"
  213. COMPILEOPTIONS "--bits=64"
  214. TARGET "AMD"
  215. EXTENSION "Abx"
  216. SYMBOLEXTENSION "Abx"
  217. PATH "AOS:"
  218. EXCLUDEPACKAGES "Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts"
  219. DISABLED "FALSE"
  220. }
  221. A2mini {
  222. INCLUDE "NATIVE NATIVEORIG I386 I386ORIG UNCOOP UNCOOP32"
  223. COMPILER "Compiler.Compile"
  224. COMPILEOPTIONS ""
  225. TARGET "AMD"
  226. EXTENSION "Obx"
  227. SYMBOLEXTENSION "Obx"
  228. PATH "AOS:"
  229. EXCLUDEPACKAGES "Applications GuiApplications Fun Testing Education Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts"
  230. DISABLED "FALSE"
  231. }
  232. WinAos {
  233. INCLUDE "WIN WINORIG iWIN UNCOOP UNCOOP32"
  234. COMPILER "Compiler.Compile"
  235. COMPILEOPTIONS ""
  236. TARGET "AMD"
  237. EXTENSION "Obw"
  238. SYMBOLEXTENSION "Obw"
  239. PATH "../obj/"
  240. EXCLUDEPACKAGES ""
  241. DISABLED "FALSE"
  242. }
  243. WinAosCooperative {
  244. INCLUDE "WIN iWIN COOP WINCOOP I386COOP"
  245. COMPILER "Compiler.Compile"
  246. COMPILEOPTIONS "--cooperative --objectFile=Generic --newObjectFile --traceModule=Trace"
  247. TARGET "AMD"
  248. EXTENSION "GofCW"
  249. SYMBOLEXTENSION "SymCW"
  250. PATH "../obj/"
  251. EXCLUDEPACKAGES "Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts TrueTypeFonts CjkFonts Pr3Fonts ScreenFonts Pr6Fonts"
  252. DISABLED "FALSE"
  253. }
  254. WinAosMini
  255. {
  256. INCLUDE "WIN WINORIG iWIN UNCOOP UNCOOP32"
  257. COMPILER "Compiler.Compile"
  258. COMPILEOPTIONS ""
  259. TARGET "AMD"
  260. EXTENSION "Obw"
  261. SYMBOLEXTENSION "Obw"
  262. PATH ""
  263. EXCLUDEPACKAGES "Build Education Fun Testing Contributions Oberon OberonGadgets OberonApplications OberonDocumentation OberonVoyager OberonAnts CjkFonts Pr3Fonts Pr6Fonts"
  264. DISABLED "FALSE"
  265. }
  266. eWinAos {
  267. INCLUDE "WIN WINORIG eWIN UNCOOP UNCOOP32"
  268. COMPILER "Compiler.Compile"
  269. COMPILEOPTIONS ""
  270. TARGET "AMD"
  271. EXTENSION "Obw"
  272. SYMBOLEXTENSION "Obw"
  273. PATH "../ObjE/"
  274. EXCLUDEPACKAGES ""
  275. DISABLED "FALSE"
  276. }
  277. LinuxAos {
  278. INCLUDE "UNIX UNIX32 LINUX UNCOOP UNCOOP32"
  279. COMPILER "Compiler.Compile"
  280. COMPILEOPTIONS ""
  281. TARGET "AMD"
  282. EXTENSION "Obj"
  283. SYMBOLEXTENSION "Obj"
  284. PATH "NewAos/"
  285. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  286. DISABLED "FALSE"
  287. }
  288. Linux32G {
  289. INCLUDE "UNIXG UNIXG32 LINUXG32 UNCOOP UNCOOP32"
  290. COMPILER "Compiler.Compile"
  291. COMPILEOPTIONS "-p=Linux32G"
  292. PATH "./NewAos/"
  293. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  294. DISABLED "FALSE"
  295. }
  296. Linux64G {
  297. INCLUDE "UNIXG UNIXG64 LINUXG64 UNCOOP UNCOOP64"
  298. COMPILER "Compiler.Compile"
  299. COMPILEOPTIONS "-p=Linux64G"
  300. PATH "./NewAos/"
  301. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  302. DISABLED "FALSE"
  303. }
  304. DarwinAos {
  305. INCLUDE "UNIX UNIX32 DARWIN UNCOOP UNCOOP32"
  306. COMPILER "Compiler.Compile"
  307. COMPILEOPTIONS "--darwinHost"
  308. TARGET "AMD"
  309. EXTENSION "Obj"
  310. SYMBOLEXTENSION "Obj"
  311. PATH "./NewAos/"
  312. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  313. DISABLED "FALSE"
  314. }
  315. Darwin32G {
  316. INCLUDE "UNIXG UNIXG32 DARWING UNCOOP UNCOOP32"
  317. COMPILER "Compiler.Compile"
  318. COMPILEOPTIONS "-p=Linux32G"
  319. PATH "./NewAos/"
  320. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  321. DISABLED "FALSE"
  322. }
  323. SolarisAos {
  324. INCLUDE "UNIX UNIX32 SOLARIS UNCOOP UNCOOP32"
  325. COMPILER "Compiler.Compile"
  326. COMPILEOPTIONS ""
  327. TARGET "AMD"
  328. EXTENSION "Obj"
  329. SYMBOLEXTENSION "Obj"
  330. PATH "./NewAos/"
  331. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  332. DISABLED "FALSE"
  333. }
  334. Solaris32G {
  335. INCLUDE "UNIXG UNIXG32 SOLARISG32 UNCOOP UNCOOP32"
  336. COMPILER "Compiler.Compile"
  337. COMPILEOPTIONS "-p=Linux32G"
  338. PATH "./NewAos/"
  339. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  340. DISABLED "FALSE"
  341. }
  342. Solaris64G {
  343. INCLUDE "UNIXG UNIXG64 SOLARISG64 UNCOOP UNCOOP64"
  344. COMPILER "Compiler.Compile"
  345. COMPILEOPTIONS "-p=Linux64G"
  346. PATH "./NewAos/"
  347. EXCLUDEPACKAGES "OberonVoyager OberonAnts"
  348. DISABLED "FALSE"
  349. }
  350. END
  351. PACKAGE Kernel ARCHIVE "Kernel.zip" SOURCE "KernelSrc.zip" DESCRIPTION "A2 Kernel"
  352. License.Text
  353. OBEMBR.BIN # MBR
  354. BootManagerMBR.Bin BootManagerTail.Bin # Boot manager
  355. BootManager.Bin BootManager.Text
  356. OBL.Bin OBL.Text # Boot loader
  357. Setup.Text # Documentation
  358. # Active Oberon run-time
  359. # Runtime support for HUGEINT and strings
  360. UNCOOP32 { Runtime.Mod }
  361. UNCOOP64 { AMD64.Runtime.Mod }
  362. I386COOP { I386.CPU.Mod }
  363. RPICOOP { RPI.CPU.Mod }
  364. ZYNQCOOP { Zynq.CPU.Mod }
  365. # Low-level trace output
  366. Trace.Mod
  367. # cooperative runtime system
  368. COOP { Counters.Mod }
  369. NATIVEI386COOP { I386.APIC.Mod APIC.Processors.Mod BIOS.ACPI.Mod ACPI.Timer.Mod}
  370. WINCOOP { Coop.Win32.Kernel32.Mod Win32.Processors.Mod Win32.Timer.Mod}
  371. RPICOOP { RPI.Processors.Mod RPI.Timer.Mod }
  372. ZYNQCOOP { Zynq.Processors.Mod Zynq.Timer.Mod }
  373. COOP { Queues.Mod BaseTypes.Mod Activities.Mod ExclusiveBlocks.Mod Interrupts.Mod Coop.Runtime.Mod }
  374. NATIVECOOP { HeapManager.Mod BIOS.Environment.Mod }
  375. RPICOOP { HeapManager.Mod RPI.Environment.Mod }
  376. ZYNQCOOP { HeapManager.Mod Zynq.Environment.Mod }
  377. WINCOOP { Win32.Environment.Mod }
  378. LINUXG32 { Generic.Linux.I386.Glue.Mod Generic.Linux.I386.Unix.Mod }
  379. LINUXG64 { Generic.Linux.AMD64.Glue.Mod Generic.Linux.AMD64.Unix.Mod }
  380. DARWING { Generic.Unix.I386.Glue.Mod Generic.Darwin.I386.Unix.Mod }
  381. SOLARISG32 { Generic.Unix.I386.Glue.Mod Generic.Solaris.I386.Unix.Mod }
  382. SOLARISG64 { Generic.Unix.AMD64.Glue.Mod Generic.Solaris.AMD64.Unix.Mod }
  383. UNIX { Unix.Glue.Mod }
  384. LINUX { Linux.I386.Unix.Mod }
  385. DARWIN { Darwin.I386.Unix.Mod }
  386. SOLARIS { Solaris.I386.Unix.Mod }
  387. WINORIG { Win32.Kernel32.Mod}
  388. WINGEN32 {Generic.Win32.Kernel32.Mod}
  389. WINGEN64 {Generic.Win64.Kernel32.Mod}
  390. I386ORIG { I386.Machine.Mod }
  391. I386GEN { Generic.I386.Machine.Mod }
  392. AMD64 { AMD64.Machine.Mod }
  393. WINORIG, WINGEN32 {Win32.Machine.Mod }
  394. WINGEN64 {Win64.Machine.Mod}
  395. COOP { Mutexes.Mod }
  396. I386COOP { Coop.I386.Machine.Mod }
  397. RPICOOP, ZYNQCOOP { Coop.ARM.Machine.Mod }
  398. UNIX32 { Unix.I386.Machine.Mod }
  399. UNIXG32 { Generic.Unix.I386.Machine.Mod }
  400. UNIXG64 { Generic.Unix.AMD64.Machine.Mod }
  401. NATIVEORIG, NATIVEGEN, WINORIG, WINGEN, UNIXG { Heaps.Mod }
  402. UNIX { Unix.Heaps.Mod }
  403. COOP { Coop.Heaps.Mod }
  404. NATIVEORIG, WINORIG, UNIX { Modules.Mod }
  405. NATIVEGEN, WINGEN, UNIXG { Generic.Modules.Mod}
  406. COOP { Coop.Modules.Mod GarbageCollector.Mod }
  407. NATIVEORIG, NATIVEGEN { Objects.Mod Kernel.Mod }
  408. WINORIG, WINGEN32 { Win32.Objects.Mod }
  409. WINGEN64 { Win64.Objects.Mod }
  410. WINGEN { Win32.Kernel.Mod }
  411. UNIX { Unix.Objects.Mod Unix.Kernel.Mod }
  412. UNIXG { Generic.Unix.Objects.Mod Unix.Kernel.Mod }
  413. COOP { Coop.Objects.Mod Coop.Kernel.Mod }
  414. END
  415. PACKAGE System ARCHIVE "System.zip" SOURCE "SystemSrc.zip" DESCRIPTION "System"
  416. # kernel extensions
  417. # Kernel log output
  418. KernelLog.Mod
  419. # Services and device drivers
  420. Plugins.Mod Streams.Mod Pipes.Mod Commands.Mod
  421. In.Mod Out.Mod
  422. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 { I386.Reals.Mod }
  423. AMD64, WINGEN64, UNIXG64 { AMD64.Reals.Mod }
  424. ARM { ARM.Reals.Mod }
  425. # default trap handling
  426. NATIVEORIG,WINORIG,UNIX { Reflection.Mod }
  427. NATIVEGEN, WINGEN, UNIXG {Generic.Reflection.Mod}
  428. COOP { Generic.Reflection.Mod }
  429. TrapWriters.Mod CRC.Mod SystemVersion.Mod
  430. NATIVEORIG, NATIVEGEN { Traps.Mod }
  431. AMD64 { AMD64.Traps.Mod }
  432. ARM { ARM.Traps.Mod }
  433. WINORIG, WINGEN32 { Win32.Traps.Mod }
  434. WINGEN64 {Win64.Traps.Mod}
  435. UNIX { Unix.StdIO.Mod Unix.Traps.Mod }
  436. UNIXG { Unix.StdIO.Mod Generic.Unix.Traps.Mod }
  437. COOP { Coop.Traps.Mod }
  438. WINGEN {Win32.WinTrace.Mod Win32.StdIO.Mod }
  439. # Recursive and R/W locks
  440. Locks.Mod
  441. # PCI bus interface
  442. I386 {BiosFreePCI.Mod }
  443. AMD64 { AMD64.PCI.Mod }
  444. # Realtime clock driver
  445. NATIVE { Clock.Mod }
  446. WIN { Win32.Clock.Mod }
  447. UNIX, UNIXG { Unix.Clock.Mod }
  448. # Memory cache control
  449. I386ORIG, I386GEN { I386.MemCache.Mod }
  450. AMD64ORIG { AMD64.MemCache.Mod }
  451. COOP { Coop.MemCache.Mod }
  452. # Block device interface
  453. Disks.Mod
  454. Files.Mod
  455. Dates.Mod Strings.Mod # low-level utility modules
  456. UTF8Strings.Mod
  457. FileTrapWriter.Mod
  458. Caches.Mod DiskVolumes.Mod OldDiskVolumes.Mod RAMVolumes.Mod DiskFS.Mod OldDiskFS.Mod OberonFS.Mod # file systems
  459. FATVolumes.Mod FATFiles.Mod
  460. ISO9660Volumes.Mod ISO9660Files.Mod
  461. UNIX, UNIXG { Unix.UnixFiles.Mod }
  462. WIN {
  463. Win32.User32.Mod Win32.WinTrace.Mod Win32.ODBC.Mod Win32.Shell32.Mod Win32.SQL.Mod
  464. Win32.WinFS.Mod
  465. }
  466. NATIVE,WIN,UNIX,UNIXG { RelativeFileSystem.Mod } # file system relative to path
  467. NATIVEORIG,WINORIG,UNIX { Loader.Mod }
  468. NATIVEGEN, WINGEN, COOP, UNIXG {BitSets.Mod Diagnostics.Mod StringPool.Mod ObjectFile.Mod GenericLinker.Mod GenericLoader.Mod }
  469. # binding modules
  470. NATIVE,WIN { BootConsole.Mod }
  471. UNIX, UNIXG { Unix.BootConsole.Mod }
  472. UNIXG,WINGEN { Shell.Mod StdIOShell.Mod }
  473. Displays.Mod
  474. # input drivers
  475. Inputs.Mod
  476. # Command line option parser
  477. Options.Mod
  478. # system event logging
  479. Events.Mod
  480. EventsUtils.Mod
  481. EventsKernelLog.Mod EventsFileLog.Mod EventsMemoryLog.Mod
  482. DynamicStrings.Mod XMLObjects.Mod XML.Mod XMLScanner.Mod XMLParser.Mod # XML parser (swalther)
  483. Configuration.Mod Configuration.XML Save.Configuration.XML FileHandlers.Mod # XML-based configuration file
  484. BootShell.Mod
  485. I386, UNIX32, UNIXG32 { I386.Network.Mod }
  486. AMD64, UNIXG64 { AMD64.Network.Mod }
  487. ARM { ARM.Network.Mod }
  488. NATIVE { NetworkMii.Mod }
  489. ActiveTimers.Mod
  490. WIN { Win32.GDI32.Mod }
  491. WINORIG, WINGEN { Win32.Display.Mod }
  492. WINCOOP { Coop.Win32.Display.Mod }
  493. WIN {
  494. Win32.WSock32.Mod
  495. Win32.Network.Mod
  496. Win32.IP.Mod Win32.DNS.Mod
  497. Win32.UDP.Mod
  498. Win32.TCP.Mod
  499. Win32.CommandLine.Mod # Command Line Parsing for Windows A2
  500. }
  501. I386 { I386.IP.Mod I386.IPv4.Mod }
  502. AMD64 { AMD64.IP.Mod AMD64.IPv4.Mod }
  503. ARM { ARM.IP.Mod ARM.IPv4.Mod }
  504. NATIVE {
  505. IPv6.Mod ICMP.Mod UDP.Mod DNS.Mod # IP, UDP, TCP
  506. TCP.Mod DHCP.Mod
  507. InitNetwork.Mod MinInitNetwork.Mod # network initialisation
  508. Ping.Mod TraceRoute.Mod TCPPortLog.Mod # network tools
  509. }
  510. UNIX, UNIXG {
  511. Unix.IP.Mod
  512. Unix.Sockets.Mod
  513. Unix.TCP.Mod Unix.UDP.Mod Unix.DNS.Mod
  514. }
  515. UNIX, UNIXG { UnixBinary.Mod }
  516. # Serial port interface
  517. Serials.Mod
  518. # Sound device interface
  519. SoundDevices.Mod
  520. # Joystick interface
  521. Joysticks.Mod
  522. # TV card interface
  523. TVDriver.Mod
  524. END
  525. PACKAGE Drivers ARCHIVE "Drivers.zip" SOURCE "DriversSrc.zip" DESCRIPTION "Device Drivers"
  526. # virtual device drivers
  527. VirtualDisks.Mod # Virtual disk (implements Disks interface)
  528. DisplayNull.Mod # Virtual display (implements Displays interface)
  529. # Serial port drivers (implement Serials interface)
  530. NATIVE { V24.Mod }
  531. WIN { Win32.V24.Mod }
  532. UNIX, UNIXG { Unix.V24.Mod }
  533. # PC speaker driver
  534. NATIVE { Beep.Mod }
  535. WIN { Win32.Beep.Mod }
  536. # Pseudo sound driver for UnixAos
  537. UNIX, UNIXG { Unix.OpenAL.Mod OpenALSound.Mod }
  538. WIN { Win32.WinDisks.Mod } # direct windows disk access, implements Disks interface
  539. NATIVE { SCSI.Mod }
  540. I386 { I386.ATADisks.Mod }
  541. AMD64 { AMD64.ATADisks.Mod }
  542. I386 { I386.Adaptec7Script.Mod Adaptec7.Mod } # Adaptec SCSI driver
  543. NATIVE {
  544. # disk drivers (implement Disks interface)
  545. NCRScript.Mod SymbiosASPI.Mod SymbiosDisks.Mod NCR810Disks.Mod # Symbios SCSI driver
  546. }
  547. # PS/2 keyboard incl. layouts
  548. I386 { I386.Keyboard.Mod }
  549. AMD64 { AMD64.Keyboard.Mod }
  550. NATIVE {
  551. KeyUK.Bin KeyCA.Bin KeyCH.Bin KeyD.Bin KeyN.Bin KeyTR.Bin KeyPL.Bin KeyDV.Bin
  552. KeyFR.Bin KeyBE.Bin KeySF.Bin KeyIT.Bin KeyUS.Bin
  553. MousePS2.Mod MouseSerial.Mod
  554. # Display drivers (implement Displays interface)
  555. DisplayLinear.Mod
  556. # Loopback driver (implements Network interface)
  557. Loopback.Mod
  558. # network drivers (implement Network interface)
  559. Ethernet3Com90x.Mod RTL8139.Mod RTL8169.Mod Intel8255x.Mod
  560. AM79C970.Mod
  561. # Sound drivers (implement SoundDevice interface)
  562. EnsoniqSound.Mod YMF754.Mod YMF754.Bin i810Sound.Mod
  563. # TV card driver (implements TVDriver interface)
  564. BT848.Mod
  565. # USB core
  566. UsbDebug.Mod
  567. Usbdi.Mod UsbHcdi.Mod
  568. UsbUhci.Mod UsbOhci.Mod UsbEhci.Mod UsbEhciPCI.Mod
  569. UsbDriverLoader.Mod UsbUtilities.Mod Usb.Mod UsbHubDriver.Mod
  570. # USB mass storage class driver
  571. UsbStorageBase.Mod UsbStorageBot.Mod UsbStorageCbi.Mod
  572. UsbStorageScm.Mod UsbStorageBoot.Mod UsbStorage.Mod
  573. # USB HID class driver
  574. UsbHid.Mod
  575. UsbMouse.Mod
  576. #USB <-> RS232 FTDI driver
  577. UsbFTDI.Mod
  578. }
  579. I386 { I386.UsbKeyboard.Mod }
  580. AMD64 { AMD64.UsbKeyboard.Mod }
  581. NATIVE {
  582. UsbHidUP.Mod UsbHidErrors.Mod UsbHidReport.Mod
  583. UsbHidParserExt.Mod UsbHidParser.Mod
  584. UsbHidDriver.Mod
  585. # USB network drivers
  586. UsbNetwork.Mod UsbNetworkUSB200M.Mod
  587. UsbPrinter.Mod
  588. UsbGarminGPS18.Mod
  589. # Touchscreen drivers
  590. UsbTouchscreen.Mod
  591. # Bluetooth stack
  592. Bluetooth.Mod BluetoothUART.Mod UsbBluetooth.Mod BluetoothUSB.Mod
  593. BluetoothHCI.Mod BluetoothL2CAP.Mod BluetoothRFCOMM.Mod
  594. }
  595. NATIVEORIG {
  596. # Floppy disk driver
  597. Diskettes.Mod
  598. }
  599. END
  600. PACKAGE Compiler ARCHIVE "Compiler.zip" SOURCE "CompilerSrc.zip" DESCRIPTION "Active Oberon Compiler"
  601. # this package should be moved before any GUI part (dependencies must be removed in Backend)
  602. StringPool.Mod Diagnostics.Mod Debugging.Mod
  603. Fox.Tool
  604. BitSets.Mod ObjectFile.Mod GenericLinker.Mod StaticLinker.Mod
  605. FoxBasic.Mod FoxProgTools.Mod FoxScanner.Mod FoxCSharpScanner.Mod FoxSyntaxTree.Mod FoxGlobal.Mod
  606. FoxActiveCells.Mod FoxHardware.Mod FoxFormats.Mod FoxFingerPrinter.Mod FoxPrintout.Mod
  607. FoxParser.Mod FoxCSharpParser.Mod FoxSemanticChecker.Mod
  608. FoxBackend.Mod FoxSections.Mod FoxFrontend.Mod
  609. FoxCompiler.Mod FoxOberonFrontend.Mod FoxCSharpFrontend.Mod
  610. FoxInterfaceComparison.Mod FoxTextualSymbolFile.Mod FoxBinarySymbolFile.Mod
  611. FoxBinaryCode.Mod FoxIntermediateCode.Mod FoxIntermediateBackend.Mod FoxCodeGenerators.Mod
  612. FoxBinaryObjectFile.Mod FoxGenericObjectFile.Mod
  613. FoxAMD64InstructionSet.Mod FoxAMD64Assembler.Mod FoxAMDBackend.Mod
  614. FoxAssembler.Mod FoxIntermediateAssembler.Mod FoxDisassembler.Mod
  615. FoxARMInstructionSet.Mod FoxARMAssembler.Mod FoxARMBackend.Mod FoxMinosObjectFile.Mod
  616. FoxIntermediateParser.Mod FoxIntermediateObjectFile.Mod FoxIntermediateLinker.Mod
  617. FoxTRMInstructionSet.Mod FoxTRMAssembler.Mod FoxTRMBackend.Mod
  618. FoxInterpreterBackend.Mod FoxTranspilerBackend.Mod
  619. FoxDocumentationScanner.Mod FoxDocumentationTree.Mod FoxDocumentationPrinter.Mod FoxDocumentationHtml.Mod
  620. FoxDocumentationParser.Mod FoxDocumentationBackend.Mod
  621. FoxProfiler.Mod
  622. # Runtime support for math oberon (Move to runtime package? *)
  623. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 { XMM.I386.Math.Mod XMM.I386.MathL.Mod }
  624. #FPU32 { I386.Math.Mod I386.MathL.Mod }
  625. AMD64, WINGEN64, UNIXG64 { XMM.AMD64.Math.Mod XMM.AMD64.MathL.Mod }
  626. #FPU64 { AMD64.Math.Mod AMD64.MathL.Mod }
  627. ComplexNumbers.Mod
  628. FoxArrayBase.Mod
  629. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 { I386.FoxArrayBaseOptimized.Mod }
  630. END
  631. PACKAGE ApplicationsMini ARCHIVE "ApplicationsMini.zip" SOURCE "ApplicationsMiniSrc.zip" DESCRIPTION "Minimal applications set"
  632. # Error API and error codes definition
  633. Errors.Mod errors.txt
  634. # Access to system functions
  635. UNIX, UNIXG { Unix.ProcessInfo0.Mod }
  636. NATIVE, WIN { ProcessInfo0.Mod }
  637. ProcessInfo.Mod
  638. SystemTools.Mod
  639. Reboot.Mod # Tool to reboot machine after delay (and write system reboot time to file)
  640. WIN { Win32.WinApplications.Mod }
  641. NATIVE {
  642. DriverDatabase.Mod DriverDatabase.XML
  643. PCITools.Mod pci.ids # Automatic HW detection
  644. }
  645. I386, WINORIG, WINGEN32, UNIX32,UNIXG32 { XMM.I386.Math.Mod XMM.I386.MathL.Mod }
  646. AMD64, WINGEN64 { XMM.AMD64.Math.Mod XMM.AMD64.MathL.Mod }
  647. #FPU32 { I386.Math.Mod I386.MathL.Mod }
  648. #FPU64 { AMD64.Math.Mod AMD64.MathL.Mod }
  649. Random.Mod Drand48.Mod
  650. SerialsVirtual.Mod # Virtual serial port (implements Serials interface)
  651. Autostart.Mod FSTools.Mod
  652. UpTime.Mod # Uptime monitor
  653. CLUTs.Mod AosDefault.Pal
  654. # raster images (eos)
  655. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 { I386.Raster.Mod }
  656. AMD64, WINGEN64, UNIXG64 { AMD64.Raster.Mod }
  657. Localization.Mod
  658. Archives.Mod
  659. WMRectangles.Mod WMEvents.Mod
  660. Repositories.Mod
  661. FP1616.Mod DefaultTextStyles.XML # Text System
  662. Texts.Mod
  663. UndoManager.Mod
  664. CRC.Mod
  665. Inflate.Mod # decompression on streams
  666. Unzip.Mod # zip file support
  667. ZipFS.Mod
  668. Codecs.Mod # Codec Defintions
  669. # Support for bidirectional text rendering and contextual dependencies
  670. BidiMirroring.txt
  671. UnicodeData.txt
  672. UnicodeProperties.Mod
  673. ArabicContext.xml
  674. TestContext.xml
  675. ContextualDependency.Mod
  676. UnicodeBidirectionality.Mod
  677. # Move to graphical package!!
  678. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 { I386.WMRasterScale.Mod }
  679. AMD64, WINGEN64, UNIXG64 { AMD64.WMRasterScale.Mod }
  680. WMGraphics.Mod
  681. WMGraphicsSmooth.Mod
  682. TextUtilities.Mod bluebottle.xsl # Text Utilities
  683. Types.Mod
  684. Models.Mod
  685. WMProperties.Mod
  686. WMMessages.Mod
  687. WMWindowManager.Mod
  688. WMGraphicUtilities.Mod
  689. WMDropTarget.Mod
  690. WMComponents.Mod # Components
  691. KernelLogger.Mod
  692. # Compiler interfaces
  693. CompilerInterface.Mod FoxTextCompiler.Mod
  694. # PC - Parallel Compiler (self-compile only)
  695. PCDebug.Mod PCM.Mod PCS.Mod PCT.Mod PCBT.Mod # prk
  696. PCLIR.Mod PCO.Mod PCG386.Mod PCC.Mod PCV.Mod PCArrays.Mod
  697. PCB.Mod PCP.Mod PCA386.Mod PCOM.Mod PCOF.Mod PCOFPE.Mod PC.Mod
  698. I386,WINORIG,WINGEN32 { ArrayBase.Mod I386.ArrayBaseOptimized.Mod }
  699. PCOARM.Mod PCARMCP.Mod PCARMRegisters.Mod # ARM Backend (be)
  700. PCAARM.Mod PCGARM.Mod
  701. ASMAMD64.Mod PCAAMD64.Mod PCGAMD64.Mod # AMD64 Backend
  702. OPA.Data
  703. Errors.XML cnErrors.XML # Error messages
  704. WhitespaceRemover.Mod
  705. # Interface to host system clipboard
  706. HostClipboard.Mod
  707. WIN { Win32.Clipboard.Mod }
  708. Tar.Mod
  709. Zlib.Mod ZlibBuffers.Mod ZlibDeflate.Mod ZlibInflate.Mod # Zlib
  710. ZlibWriters.Mod ZlibReaders.Mod Zip.Mod ZipTool.Mod # Zip FS prk
  711. BIT.Mod
  712. # Image codecs
  713. PNGDecoder.Mod BMPCodec.Mod GIFCodec.Mod
  714. JPEGDecoder.Mod
  715. # Animation codecs
  716. AnimationCodec.Mod
  717. NATIVE { # USB info tools & documentation
  718. UsbInfo.Mod UsbSkeleton.Mod UsbTools.Mod Usb.Text
  719. }
  720. # Partitions Framework
  721. PartitionsLib.Mod FATScavenger.Mod Partitions.Mod
  722. DiskTests.Mod DiskBenchmark.Mod
  723. config.txt # default config string settings
  724. PartitionEditorTable.Mod
  725. NATIVEORIG{ Profiler.Mod HierarchicalProfiler0.Mod } # Hierarchical profiler has GUI: WMProfiler.Mod
  726. WINORIG, WINGEN { Win32.HierarchicalProfiler0.Mod }
  727. NATIVEORIG, WINORIG, WINGEN { HierarchicalProfiler.Mod}
  728. FTPClient.Mod
  729. XYModem.Mod
  730. Shell.Mod Shell.Alias # Stream-based shell
  731. ShellSerial.Mod # Shell over serial port
  732. Installer.Mod InstallerPackages.XML
  733. CryptoBigNumbers.Mod CryptoBase64.Mod CryptoUtils.Mod CryptoCiphers.Mod CryptoARC4.Mod
  734. CryptoDES.Mod CryptoDES3.Mod
  735. CryptoHashes.Mod CryptoMD5.Mod CryptoSHA1.Mod CryptoSHA256.Mod
  736. CryptoKeccakF1600.Mod CryptoKeccakSponge.Mod CryptoSHA3.Mod CryptoCSPRNG.Mod
  737. CryptoPrimes.Mod CryptoDSA.Mod CryptoDiffieHellman.Mod
  738. CryptoAES.Mod
  739. CryptoBlowfish.Mod
  740. CryptoTwofish.Mod
  741. CryptoCAST.Mod
  742. CryptoHMAC.Mod CryptoIDEA.Mod
  743. CryptoRSA.Mod
  744. Checksum.Mod # MD5, SHA1 and SHA3 checksum generator
  745. END
  746. PACKAGE Applications ARCHIVE "Applications.zip" SOURCE "ApplicationsSrc.zip" DESCRIPTION "Applications"
  747. Fido.Mod
  748. I386, WINORIG, WINGEN32, UNIX32,UNIXG32 { I386.CPUID.Mod }
  749. AMD64, WINGEN64 { AMD64.CPUID.Mod }
  750. A2Sequencers.Mod
  751. PictImages.Mod
  752. V24Tracer.Mod # Trace serialport
  753. XMLGeneratorSchema.Mod CSS2.Mod CSS2Scanner.Mod CSS2Parser.Mod # XML & CSS (swalther)
  754. RAWPrinter.Mod LPR.Mod # Sending ps files to Printers
  755. ASN1.Mod PKCS1.Mod X509.Mod TLS.Mod
  756. bluebottleselfsigned.der
  757. TCPServices.Mod TestServer.Mod # TCP services
  758. TCPTools.Mod # Some useful TCP-related commands
  759. NATIVEORIG { Performance.Mod }
  760. WIN, UNIX, UNIXG, NATIVECOOP { Win32.Performance.Mod } # This is just a dummy
  761. Bin2Hex.Mod BinToCode.Mod
  762. Base64.Mod
  763. DisplayGTF.Mod # Create VESA 3.0 Init Strings
  764. GZip.Mod
  765. ShellCommands.Mod Telnet.Mod # Telnet Shell (currently broken)
  766. I386ORIG { I386.MemInfo.Mod } # basic tools module
  767. AMD64ORIG { AMD64.MemInfo.Mod }
  768. I386,WIN { Info.Mod }
  769. TFClasses.Mod Mail.Mod SMTPClient.Mod
  770. TFLog.Mod WebHTTP.Mod # extended HTTP Server (tf/be)
  771. WebHTTPClient.Mod WebHTTPTools.Mod WebHTTPServer.Mod
  772. WebHTTPServerTools.Mod WebSSMPPlugin.Mod
  773. NATIVE,WIN { WebDefaultSSMP.Mod }
  774. WebHTTPServerStatistics.Mod
  775. NATIVE { WebWormWatch.Mod }
  776. POP3Client.Mod
  777. RFC865Client.Mod
  778. QuoteServer.Mod Quotes.txt # quote server (be)
  779. NATIVE {
  780. RfsConnection.Mod RfsClientProxy.Mod RfsFS.Mod # Rfs (pstuedi)
  781. TFTP.Mod TFTPServer.Mod TFTPFS.Mod # TFTP (be)
  782. }
  783. FTPFS.Mod
  784. NATIVE,WIN { WebFTPServer.Mod } # FTP server (be)
  785. XModem.Mod
  786. SearchTools.Mod
  787. DiffLib.Mod
  788. TextConverter.Mod
  789. TaskScheduler.Mod
  790. NATIVE { # Open Sound Control
  791. OSC.Mod OSCRegistry.Mod OSCQueue.Mod
  792. OSCService.Mod OSCNet.Mod OSCEval.Mod OSCExample.Mod
  793. }
  794. FTP.Mod
  795. DES.Mod VNCServer.Mod
  796. # Audio codecs
  797. WAVCodec.Mod # WAV support
  798. MP3Decoder.Mod MP3Huffman.Bin # MP3 Decoder
  799. # Video codecs
  800. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 {
  801. I386.IDCT.Mod
  802. AVI.Mod DivXTypes.Mod I386.DivXHelper.Mod I386.DivXDecoder.Mod # DivX Support
  803. MPEGTables.Mod I386.MPEGUtilities.Mod MPEGVideoDecoder.Mod # MPEG1/2 Support
  804. }
  805. # Image codecs
  806. JPEG2000DecoderUtil.Mod JPEG2000DecoderCS.Mod JPEG2000Decoder.Mod
  807. MD5.Mod # Temporarily moved here from gadgets
  808. HTTPSupport.Mod HTTPSession.Mod DynamicWebpage.Mod # Dynamic Webpages support
  809. DynamicWebpagePlugin.Mod PrevalenceSystem.Mod
  810. WMDropTarget.Mod
  811. GenericSort.Mod WebStd.Mod WebComplex.Mod
  812. WMCharCodes.Mod HTMLScanner.Mod HTMLParser.Mod gb2312.txt # Webbrowser
  813. NewHTTPClient.Mod
  814. UnihanParser.Mod Radicals.txt # Unicode tool
  815. CSV.Mod # support for comma separated value files
  816. END
  817. PACKAGE GuiApplicationsMini ARCHIVE "GuiApplicationsMini.zip" SOURCE "GuiApplicationsMiniSrc.zip" DESCRIPTION "Minimal GUI applications set"
  818. # Window Manager (tf)
  819. ColorModels.Mod
  820. WMDefaultWindows.Mod
  821. WMDefaultFont.Mod WMFontManager.Mod WMOberonFonts.Mod WMCCGFonts.Mod WMBitmapFont.Mod # Font support
  822. OpenTypeInt.Mod OpenTypeScan.Mod OpenType.Mod OpenTypeFonts.Mod WMOTFonts.Mod # OpenType Fonts
  823. OberonFonts.Mod # OpenType Fonts to Oberon Fonts
  824. cjkfont.bfnt # since used as fallback
  825. WindowManager.Mod
  826. UNIX { Unix.X11.Mod }
  827. UNIXG { Generic.Unix.X11.Mod }
  828. UNIX, UNIXG { Unix.X11Api.Mod Unix.XDisplay.Mod Unix.Beep.Mod Unix.KbdMouse.Mod Unix.Clipboard.Mod Unix.Display.Mod }
  829. # Icons representing applications (don't put icons used by applications inside!)
  830. WMIcons.tar
  831. Attributes.Mod
  832. # Components
  833. WMStandardComponents.Mod
  834. WMProgressComponents.Mod
  835. WMShapes.Mod
  836. WMFigures.Mod
  837. WMScrollableComponents.Mod
  838. WMPieMenu.Mod
  839. WMPopups.Mod
  840. PositionDebugging.Mod
  841. SyntaxHighlighter.Mod SyntaxHighlighter.XML
  842. WMTextView.Mod WMInputMethods.Mod
  843. WMEditors.Mod # Editor
  844. WMSearchComponents.Mod
  845. WMMacros.Mod Macros.XML # Editor extension
  846. WMGrids.Mod WMStringGrids.Mod # Grid components
  847. WMTrees.Mod WMMixer.Mod WMTabComponents.Mod
  848. WMColorComponents.Mod
  849. WMAnimations.Mod
  850. WMDropDownLists.Mod
  851. WMRestorable.Mod Release.Auto.dsk
  852. WMApplications.Mod
  853. WMDialogs.Mod
  854. WMDocumentEditor.Mod
  855. WMErrors.Mod
  856. WMOSD.Mod
  857. WMArchives.Mod
  858. WMCharMap.Mod
  859. WMUnicodeMarkerTool.Mod
  860. UNIX, UNIXG { Unix.DisplayRefresher.Mod }
  861. Standard.rep Models.rep Shapes.rep Colors.rep System.rep
  862. # Programmer's Editing Tool
  863. ModuleParser.Mod
  864. ModuleTrees.Mod ModuleTreesIcons.tar
  865. WMXMLTree.Mod
  866. WMDiagnostics.Mod
  867. PETTrees.Mod PETModuleTree.Mod PETXMLTree.Mod
  868. PET.Mod PETIcons.tar
  869. # Input Method Editors
  870. WMArabicIME.Mod # Arabic IME
  871. WMArmenianIME.Mod # Armenian IME
  872. WMHebrewIME.Mod # Hebrew IME
  873. WMPinyinIME.Mod PinyinIMETable.txt PinyinIMEPhrases.txt # Pinyin IME
  874. WMRussianIME.Mod # Russian IME
  875. WMUkrainianIME.Mod # Ukrainian IME
  876. WMEthiopicIME.Mod
  877. WMUnicodeIME.Mod # Unicode IME
  878. WMInputMethodTool.Mod
  879. WMUtilities.Mod WMTrapWriter.Mod # Window Manager Utilities
  880. FoxA2Interface.Mod # Compiler Debug Windows
  881. WMMenus.Mod # menu support
  882. WMDiagramComponents.Mod
  883. MainMenu.Mod # menu system
  884. StartMenu.rep
  885. StartMenu.Mod
  886. MenuPage00.XML MenuPage10.XML MenuPage20.XML MenuPage30.XML
  887. MenuPage40.XML MenuPage50.XML MenuPage60.XML MenuPage70.XML
  888. MenuPage80.XML MenuPage90.XML
  889. HotKeys.Mod HotKeys.XML # hot key support
  890. WMNavigate.Mod WMNavigator.Mod Navigation.rep # Windows navigation
  891. WMDesktops.Mod
  892. Notepad.Mod
  893. WMSystemComponents.Mod icons.tar
  894. WMFileManager.Mod WMSearchTool.Mod
  895. WMFTPClient.Mod
  896. NATIVE { WMUsbInfo.Mod WMUsbInfo.tar }
  897. # Skin support
  898. SkinLanguage.Mod FNHistories.Mod SkinEngine.Mod SkinConfig.XML
  899. ZeroSkin.zip # default skin
  900. # Trackers
  901. WMProcessInfo.Mod
  902. WMObjectTracker.Mod
  903. NATIVE { WMTCPTracker.Mod }
  904. WIN { Win32.WMTCPTracker.Mod }
  905. WMKernelLog.Mod # GUI for KernelLogger.Mod
  906. WMEventLog.Mod # GUI for Events.Mod
  907. # Partitions Framework GUIs
  908. # Partition Tool
  909. WMPartitionsComponents.Mod WMPartitions.Mod
  910. # Partition Editor
  911. PartitionEditorComponents.Mod PartitionEditor.Mod
  912. MultiLogger.Mod
  913. I386, WIN, UNIX {
  914. MemoryReader.Mod Decoder.Mod I386Decoder.Mod # GUI decoder
  915. ARMDecoder.Mod AMD64Decoder.Mod DecoderRes.zip
  916. }
  917. Tutorial.Text Quickstart.Text cn.PrgInOberon.txt # documentation
  918. WMTextTool.Mod
  919. # Performance monitor framework
  920. WMPerfMonPlugins.Mod
  921. WMPerfMonAlerts.Mod WMPerfMonAlertsUtils.Mod WMPerfMonAlerts.XML
  922. # perfmon kernel plugins
  923. NATIVEORIG, NATIVEGEN {
  924. WMPerfMonPluginCpu.Mod WMPerfMonPluginMemory.Mod
  925. WMPerfMonPluginInterrupts.Mod
  926. WMPerfMonPluginUsb.Mod WMPerfMonPluginNetStats.Mod
  927. }
  928. WIN { Win32.WMPerfMonPluginCpu.Mod Win32.WMPerfMonPluginMemory.Mod }
  929. UNIX, UNIXG { Unix.WMPerfMonPluginCpu.Mod Unix.WMPerfMonPluginMemory.Mod }
  930. NATIVE,WIN {
  931. WMPerfMonPluginModVars.Mod WMPerfMonPluginHeap.Mod
  932. }
  933. WMPerfMonPluginProcesses.Mod
  934. WMPerfMonPluginSerials.Mod # perfmon device plugins
  935. WMPerfMonPluginNetwork.Mod WMPerfMonPluginDisks.Mod
  936. WMPerfMonPluginPerfMon.Mod # perfmon misc plugins
  937. WMPerfMonPluginEvents.Mod WMPerfMonPluginMessages.Mod
  938. WMPerfMonComponents.Mod # GUI
  939. WMPerfMonTabSystem.Mod
  940. WMPerfMonTabAlerts.Mod
  941. UNCOOP { WMPerfMon.Mod WMPerfMon.Text }
  942. WMClock.Mod
  943. WMClockImages.tar
  944. WMCalendar.Mod
  945. WMV24Component.Mod
  946. WMShell.Mod # GUI for Shell
  947. # GUI for hierarchical profiler (HierarchicalProfiler.Mod)
  948. NATIVEORIG, WINORIG, WINGEN { WMProfiler.Mod }
  949. # ssh
  950. SSH.Tool
  951. SSH.Configuration.Text
  952. SSHGlobals.Mod SSHKeys.Mod SSHTransport.Mod SSHAuthorize.Mod
  953. SSH.Mod SSHClient.Mod
  954. END
  955. PACKAGE GuiApplications ARCHIVE "GuiApplications.zip" SOURCE "GuiApplicationsSrc.zip" DESCRIPTION "Window Manager and Graphical Applications"
  956. #TFPET
  957. TFPET.Tool
  958. code.css
  959. highlight.js
  960. TFStringPool.Mod
  961. BimboScanner.Mod
  962. TFTypeSys.Mod
  963. TFDumpTS.Mod
  964. TFScopeTools.Mod
  965. TFCheck.Mod
  966. TFAOParser.Mod
  967. TFModuleTrees.Mod
  968. TFPET.Mod
  969. TFClasses.Mod
  970. TFDocGenerator.Mod
  971. TFXRef.Mod
  972. CharacterLineup.Mod
  973. WMDesktopIcons.Mod # Programmable desktop icons
  974. WMTextStyleTool.Mod
  975. WMVNCView.Mod VNC.Mod # VNC
  976. WMVT100.Mod # Telnet VT100 Client
  977. # Skins
  978. BluePlastic.skin
  979. reptile.skin pklook.skin redlook.skin traditional.skin
  980. winxp.skin aqua.skin xmas.skin glass.skin stijn.skin stijnbw.skin
  981. SkinEditor.Mod SkinTutorial.Text
  982. Looks.Mod WMSkinLoader.Mod WMBackdropLoader.Mod
  983. SkinList.XML BackdropList.XML
  984. WMInspectionComponents.Mod WMInspector.Mod WMInspector.tar
  985. WMRepositories.Mod WMRepositories.tar
  986. WMBuilder.Mod WMBuilder.tar
  987. WMBuilderTransformer.Mod
  988. TemplateMultiInstanceBase.txt TemplateMultiInstance.txt
  989. CyberbitNetInstall.Mod
  990. WMDiff.Mod # diff tool
  991. # GUI for TaskScheduler.Mod
  992. WMTaskScheduler.Mod WMTaskScheduler.tar
  993. IMAPUtilities.Mod IMAP.Mod IMAPClient.Mod RMSMTP.Mod # IMAP/SMTP client
  994. IMAPGUI.Mod IMAPIcons.tar
  995. # Some additional plugins for the performance monitor
  996. NATIVE,WIN { WMPerfMonPluginFTPServer.Mod }
  997. WMPerfMonPluginHTTPServer.Mod
  998. WMPerfMonPluginQuoteServer.Mod WMPerfMonPluginVNCServer.Mod
  999. WMPerfMonPluginExample.Mod # perfmon misc plugins
  1000. WMModuleState.Mod
  1001. WMKeyCode.Mod # Misc
  1002. WMPicView.Mod
  1003. ComponentViewer.Mod
  1004. WMScreenShot.Mod
  1005. WMBackdrop.Mod mars.png BluebottlePic0.png # Backdrop
  1006. # Installer
  1007. WMInstaller.Mod WMInstaller.tar
  1008. NATIVE { # CD recorder
  1009. CDRecordUtils.Mod CDRecordLib.Mod MakeIsoImages.Mod
  1010. CDRecord.Mod WMCDRecorder.Mod
  1011. }
  1012. HotKeysCommands.Mod
  1013. I386, WIN, UNIX { I386.VMWareTools.Mod } # VMWare
  1014. SynergyClient.Mod # Synergy
  1015. NATIVE {
  1016. TVChannels.Mod # TV
  1017. TVChannels.XML
  1018. TeletextDecoder.Mod
  1019. TV.Mod
  1020. TeletextFont.Mod teletext.bfnt TeletextBrowser.Mod TeletextViewer.Mod
  1021. next.png prev.png refresh.png
  1022. TVRemoteControl.Mod TV.Tool
  1023. }
  1024. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 { I386.WMTransitions.Mod }
  1025. AMD64, WINGEN64, UNIXG64 { AMD64.WMTransitions.Mod }
  1026. MediaPlayer.Mod Presentation.Mod
  1027. MP3Player.Mod WMPlayer.Mod
  1028. WAVRecorder.Mod
  1029. OGGUtilities.Mod OGGVorbisPlayer.Mod OGGRadios.Text WMOGGPlayer.Mod # OGG Player/Radio
  1030. # DTP editor
  1031. DTPData.Mod DTPUtilities.Mod DTPView.Mod DTPEditor.Mod DTPText.Mod
  1032. DTPRect.Mod
  1033. DTPImage.Mod
  1034. GfxMatrix.Mod GfxImages.Mod GfxPaths.Mod GfxRegions.Mod # Gfx (eos)
  1035. GfxFonts.Mod Gfx.Mod GfxRaster.Mod GfxBuffer.Mod
  1036. WMGraphicsGfx.Mod
  1037. CSS2Properties.Mod XMLComponents.Mod XMLStyle.Mod XMLLoader.Mod
  1038. SVGUtilities.Mod SVGColors.Mod SVGMatrix.Mod SVG.Mod SVGGradients.Mod
  1039. SVGFilters.Mod SVGRenderer.Mod SVGLoader.Mod SVGDecoder.Mod # SVG support
  1040. WebBrowserComponents.Mod
  1041. XMLTransformer.Mod HTMLTransformer.Mod WebBrowserPanel.Mod WebBrowser.Mod
  1042. MailStorage.Mod BimboMail.Mod
  1043. DebugLog.Mod # Multiprocess Log
  1044. WMJoysticks.Mod # Joystick tools
  1045. END
  1046. PACKAGE Fun ARCHIVE "Fun.zip" SOURCE "FunSrc.zip" DESCRIPTION "Games, Demos and other fun stuff"
  1047. # games
  1048. WMTetris.Mod
  1049. VNCTetrisServer.Mod
  1050. Bimso.Mod
  1051. # Demos
  1052. WMScribble.Mod
  1053. #WMGraphicsDemo.Mod
  1054. SortDemo.Mod
  1055. Demos.rep
  1056. FractalDemo.Mod
  1057. WMBunny.Mod WMBunnyImages.tar
  1058. TuringCoatWnd.Mod
  1059. # 3D menu
  1060. W3dVectors.Mod W3dMatrix.Mod W3dGeometry.Mod W3dAbstractWorld.Mod
  1061. W3dObjectGenerator.Mod W3dRasterizer.Mod W3dWorld.Mod W3dExplorer.Mod
  1062. W3dMenu.Mod W3dMenu.XML
  1063. W3dMenuIcons.tar
  1064. CATServer.Mod
  1065. W3dClusterWatch.Mod W3dClusterWatchIcons.tar Cluster.XML # 3D Cluster monitor tool
  1066. # Slide show
  1067. WMSlideshow.Mod RetoWMSlideshow.XML SlideShowData.tar
  1068. # Example data
  1069. stucki01.svg stucki02.svg
  1070. Clouds.jp2 Evening.jp2 Rainbow.jp2
  1071. flags.avi
  1072. ComponentStyle.XML ElevatorStyle.XML # example component styles, load with WMComponents.LoadStyle
  1073. # DTP Editor examples
  1074. Demo.Style.XML Demo.Layout.XML Demo.Content.XML
  1075. # Xmas
  1076. xmas04.tar Snow.Mod SaasFee.jpg present.tar MenuEdit.Mod
  1077. PresentViewer.Mod XmasMenu.XML
  1078. END
  1079. PACKAGE Testing ARCHIVE "Testing.zip" SOURCE "TestingSrc.zip" DESCRIPTION "Tests and benchmarks"
  1080. # Compiler Testsuite
  1081. TestSuite.Mod PCTest.Mod Versioning.Mod FoxTest.Mod
  1082. Oberon.Compilation.Test Oberon.Execution.Test
  1083. MathArrays.Compilation.Test MathArrays.Execution.Test
  1084. # Files.Mod testing
  1085. TestFiles.Mod Files.Test
  1086. CSV.Test
  1087. NATIVEORIG, NATIVEGEN {
  1088. TestLocks.Mod
  1089. BenchSpeedup.Mod BenchObjCount.Mod
  1090. BenchClockDrift.Mod BenchNew.Mod BenchLocks.Mod
  1091. BenchPingPong.Mod
  1092. BluetoothTest.Mod
  1093. }
  1094. I386ORIG, I386GEN { I386.BenchInterrupts.Mod }
  1095. AMD64 { AMD64.BenchInterrupts.Mod }
  1096. BenchTCP.Mod
  1097. TestDates.Mod # Dates.Mod
  1098. TestStrings.Mod # Strings.Mod
  1099. BenchXML.Mod
  1100. BenchSyntaxHighlighter.Mod
  1101. testutf8.txt # utf8 sample file
  1102. # Crypto framework tests
  1103. CryptoTestBigNumbers.Mod CryptoTestCiphers.Mod
  1104. CryptoTestDH.Mod CryptoTestDSA.Mod CryptoTestHMAC.Mod CryptoTestHashes.Mod
  1105. CryptoTestRSA.Mod
  1106. # Device Driver tests
  1107. BeepTest.Mod
  1108. JoysticksTest.Mod
  1109. # Component framework
  1110. TestMenu.Mod Menu.XML # Test WMMenu.Mod
  1111. PieTest.Mod # Test WMPieMneu.Mod
  1112. TestTrees.Mod # Test WMTrees.Mod
  1113. TestComponentDragDrop.Mod
  1114. ComponentInfo.Mod
  1115. TestComponents.Mod
  1116. TestXMLPlugins.Mod
  1117. END
  1118. PACKAGE Education ARCHIVE "Education.zip" SOURCE "EducationSrc.zip" DESCRIPTION "Examples and Programs For Education Purposes"
  1119. NATIVE,WIN { SSFS.Mod } # Simple Silly File System
  1120. HelloWorld.Mod HelloWorld1.Mod HelloWorld2.Mod HelloWorld3.Mod
  1121. # examples
  1122. Example1.Mod Example2.Mod Example3.Mod
  1123. Example4.Mod Example5.Mod Example6.Mod Example7.Mod
  1124. Example8.Mod
  1125. ExampleTextWriter.Mod
  1126. GUIPat.txt GUIPat.tar # GUI patterns
  1127. JavaLocks.Mod
  1128. # Dynamic Webpage examples
  1129. WebAccounts.Mod WebForum.Mod ExerciseGroups.Mod # Active Elements Examples
  1130. DynamicWebpagePlugin.Text accounts.dxp rotator.dxp test0.dxp # Dynamic Pages Examples
  1131. test1.dxp test2.dxp test3.dxp
  1132. test4.dxp tutorial1.dxp
  1133. tutorial2.dxp tutorial3.dxp tutorial4.dxp tutorial5.dxp tutorial6.dxp
  1134. public.form.html public.info.ssmp public.System.ssmp public.ActiveObjects.ssmp # sample extended website
  1135. public.Memory.ssmp public.WebServer.ssmp
  1136. END
  1137. PACKAGE Build ARCHIVE "Build.zip" SOURCE "BuildSrc.zip" DESCRIPTION "Build Tools"
  1138. Build.Tool Build.VMWare.Tool
  1139. WIN { Win32.Build.Tool Win32.BuildMini.Tool }
  1140. AosInst.Tool Aos.Par # Install tool
  1141. IsoImages.Mod
  1142. ReleaseThreadPool.Mod Release.Mod Release.Tool # Build release tool
  1143. PETReleaseTree.Mod
  1144. Linker0.Mod Linker1.Mod Linker.Mod
  1145. WIN { Win32.Aos.Link }
  1146. UNIX {
  1147. Unix.BootLinkerHeaps.Mod Unix.BootLinkerModules.Mod Unix.BootLinkerLoader.Mod
  1148. Unix.BootLinker.Mod UnixAos.Tool
  1149. }
  1150. OBEMBR4.ASM BootManager.Asm OBL.Asm # Asm
  1151. BootManager.Mod BootManager.Tool # Splits up BootManager.Bin into BootManagerMBR.Bin and BootManagerTail.Bin
  1152. END
  1153. PACKAGE EFI ARCHIVE "EFI.zip" SOURCE "EFISrc.zip" DESCRIPTION "EFI Boot Loader and API"
  1154. EFI.Tool EFI.Mod
  1155. I386, WINORIG, WINGEN32, UNIX32, UNIXG32 {I386.EFIMachine.Mod}
  1156. AMD64, WINGEN64, UNIXG64 { AMD64.EFIMachine.Mod }
  1157. EFIBlockIO.Mod EFIDiskIO.Mod
  1158. EFIFileProtocol.Mod EFISimpleFS.Mod
  1159. EFILoadedImage.Mod EFIGraphicsOutput.Mod EFITrace.Mod
  1160. EFILib.Mod
  1161. EFITest.Mod EFIGraphicalConsole.Mod EFIA2Loader.Mod
  1162. END
  1163. PACKAGE Contributions ARCHIVE "Contributions.zip" SOURCE "ContributionsSrc.zip" DESCRIPTION "Contributions"
  1164. # Alan D. Freed (AlFreed@ohio.net) and Felix Friedrich (friedrich@gsf.de)
  1165. # CAPO - Computational Analysis Platform for Oberon
  1166. # BSD - License ok to use in release files
  1167. Capo.Text Capo.Tool Capo.Ascii.Text
  1168. Sage.UDPChat.Text Sage.UDPChatBase.Mod Sage.UDPChatServer.Mod # UDP chat tool (Yaroslav Romanchenko)
  1169. Sage.UDPChatClient.Mod
  1170. CyrillicUtilities.Mod # by sage
  1171. YMF754Util.Mod # Utilitiy for creating YMF754.Bin for YMF754.Mod sound card driver
  1172. # SMB client & server
  1173. SambaClient.Mod SambaServer.Mod
  1174. srRenderTools.Text srReadMe.Text # Realtime Fractal-Voxel Raytracer (Soren Renner)
  1175. srBase.Mod srRayEngine.Mod srMath.Mod I386.srE.Mod srGL.Mod srHex.Mod srImage.Mod
  1176. srVoxel.Mod srVoxel2.Mod srVoxel3.Mod srVolShader.Mod srVoxel4.Mod srVoxel5.Mod
  1177. srM2Space.Mod srM3Space.Mod srM5Space.Mod srM6Space.Mod srRastermovie.Mod
  1178. srTexVox.Mod srThermoCell.Mod srTree.Mod sr3DTexture.Mod srLifeVox.Mod
  1179. srRotaVox.Mod srvoxels.Mod srRender.Mod
  1180. recticle.png
  1181. MenuPages.Mod # generate MenuPageXX.XML files
  1182. # Video for Windows
  1183. RasterPixelFormats.Mod
  1184. WIN { Win32.VfW.Mod VideoExample.Mod TestVideo.Mod}
  1185. WMOverlay.Mod WMOverlay.tar
  1186. # Oberon pretty printing
  1187. PrettyPrint.Mod PrettyPrintHighlighter.XML
  1188. # streams and files compression
  1189. OZip.mod
  1190. NbrInt8.Mod NbrInt16.Mod NbrInt32.Mod NbrInt64.Mod NbrInt.Mod NbrRat.Mod
  1191. NbrRe32.Mod NbrRe64.Mod NbrRe.Mod NbrCplx.Mod NbrStrings.Mod
  1192. DataErrors.Mod DataIO.Mod Data.Mod DataStacks.Mod DataQueues.Mod
  1193. DataLists.Mod DataTrees.Mod
  1194. MathInt.Mod MathRat.Mod MathReSeries.Mod MathRe.Mod MathCplxSeries.Mod
  1195. MathCplx.Mod MathCbrt.Mod MathErf.Mod MathGamma.Mod
  1196. CalcFn.Mod CalcD1.Mod CalcD2.Mod CalcD3.Mod CalcD4.Mod CalcGauss.Mod
  1197. MathMitLef.Mod CalcConvolution.Mod CalcGrunwald.Mod CalcDiethelm.Mod
  1198. NATIVE,WINORIG,WINGEN32,UNIXG32 {
  1199. # Disable index checking for these modules with \sx for efficiency
  1200. I386.Array1dBytes.Mod Array1dInt.Mod Array1dRat.Mod Array1dRe.Mod Array1dCplx.Mod I386.ArrayXdBytes.Mod
  1201. ArrayXdInt.Mod ArrayXdRat.Mod ArrayXdRe.Mod ArrayXdCplx.Mod Array2dInt.Mod Array2dRat.Mod
  1202. Array2dRe.Mod Array2dCplx.Mod
  1203. VecInt.Mod VecRat.Mod VecRe.Mod VecCplx.Mod
  1204. MtxInt.Mod MtxRat.Mod MtxRe.Mod MtxCplx.Mod
  1205. CubeInt.Mod CubeRat.Mod CubeRe.Mod CubeCplx.Mod
  1206. LinEqRe.Mod LinEqLU.Mod LinEqCholesky.Mod LinEqSVD.Mod
  1207. HCubeInt.Mod HCubeRat.Mod HCubeRe.Mod HCubeCplx.Mod
  1208. DataTemplate.Mod.Text MathRandomSeed.dat
  1209. }
  1210. # Testsuite
  1211. CapoTest1.2.zip # requires Oberon
  1212. WPM.Mod # Web page maker
  1213. # Aubrey McIntosh (aubrey.macintosh@alumni.utexas.net)
  1214. # BSD - License ok to use in release files
  1215. AlmSmtpReceiver.Atg AlmSmtpReceiver.Tool AlmSmtpReceiver.Mod # SMTP receiver
  1216. AlmSmtpReceiver.Guide.Text
  1217. # Thomas Frey (tfrey@enigon.net)
  1218. # BSD - License ok to use in release files
  1219. NATIVE { TFSMTPServer.Mod TFSMTPServer.Text Rename.TFMailConfig.XML } # SMTP Mail forwarder
  1220. WMFontCCGConverter.Mod
  1221. WebCGI.Mod RegisterRFW.Mod WebBimbodot.Mod TFWebForum.Mod # CGI support and examples
  1222. PDF.Mod AFM.Mod PDFExample.Mod # PDF Writer
  1223. Visualizer.Mod # generate class diagrams
  1224. ReleaseVisualizerScanner.Mod ReleaseVisualizer.Mod # generate PDF poster of all modules
  1225. # ObeDAV - WebDAV and DeltaV for Oberon, Edgar Schwarz, edited by Robin Stoll. OdSVN.Mod also required
  1226. # Subversion Client by Robin Stoll (rstoll@student.ethz.ch)
  1227. OdUtil.Mod OdXml.Mod OdCond.Mod
  1228. OdAuthBase.Mod OdAuth.Mod
  1229. OdClient.Mod
  1230. # OdClientTools.Mod
  1231. OdVCSBase.Mod
  1232. # OdDeltavBase.Mod
  1233. OdSvn.Tool
  1234. # OdPlugin.Mod
  1235. SVN.Text
  1236. SVNArgument.Mod
  1237. SVNOutput.Mod
  1238. SVNUtil.Mod
  1239. NATIVE { SVNAdmin.Mod }
  1240. WIN { Win32.SVNAdmin.Mod }
  1241. NATIVE, WIN {
  1242. OdSvn.Mod
  1243. SVNWebDAV.Mod
  1244. SVN.Mod
  1245. }
  1246. # GPL!
  1247. NATIVE { UsbRS232.Mod GPL.Text }
  1248. NATIVE { FirewireLowUtil.Mod FirewireLow.Mod FirewireSBP2.Mod } # IEEE 1394 support (HD)
  1249. TeletextServer.zip # Teletext Server for TV
  1250. END
  1251. PACKAGE Oberon ARCHIVE "Oberon.zip" SOURCE "OberonSrc.zip" DESCRIPTION "Oberon for A2"
  1252. # emulation modules
  1253. NATIVE,UNIX, UNIXG { Oberon.Kernel.Mod }
  1254. NATIVE,WIN { Oberon.Types.Mod }
  1255. WIN { Win32.Oberon.Kernel.Mod }
  1256. Oberon.Modules.Mod
  1257. NATIVE,UNIX, UNIXG { Oberon.FileDir.Mod Oberon.Files.Mod }
  1258. WIN { Win32.Oberon.FileDir.Mod Win32.Oberon.Files.Mod }
  1259. Oberon.Disks.Mod
  1260. Oberon.Objects.Mod
  1261. OberonInput.Mod # WM-less Oberon I/O
  1262. NATIVE,iWIN, UNIX, UNIXG {
  1263. OberonDisplay.Mod Oberon.Display.Mod Oberon.Display.Mod
  1264. Oberon.Input.Mod # WM-based Display & Input
  1265. Oberon.Viewers.Mod Oberon.Fonts.Mod
  1266. }
  1267. NATIVE, iWIN, UNIX, UNIXG {Oberon.Mod}
  1268. eWIN {
  1269. Win32.Oberon.Mod
  1270. Win32.Threads.Mod
  1271. Win32.Oberon.Displays.Mod Win32.Oberon.Display.Mod Win32.Oberon.Viewers.Mod
  1272. Win32.Oberon.Input.Mod Win32.Oberon.Fonts.Mod Win32.Oberon.Windows.Mod
  1273. }
  1274. Oberon.Texts.Mod
  1275. WIN { Win32.OberonConfiguration.Mod }
  1276. NATIVE,iWIN,UNIX, UNIXG { Oberon.Oberon.Mod }
  1277. eWIN { Win32.Oberon.WinFonts.Mod Win32.Oberon.Oberon.Mod }
  1278. Oberon.MenuViewers.Mod Oberon.TextFrames.Mod
  1279. NATIVE,iWIN,UNIX, UNIXG { Oberon.System.Mod }
  1280. Oberon.In.Mod Oberon.Out.Mod Oberon.Dates.Mod Oberon.Strings.Mod # Utility modules
  1281. NATIVE, iWIN { Oberon.Centronics.Mod }
  1282. NATIVE,iWIN,UNIX, UNIXG { I386.Oberon.Bitmaps.Mod Oberon.Pictures.Mod }
  1283. Oberon.RandomNumbers.Mod
  1284. Oberon.V24.Mod
  1285. NATIVE { Oberon.Printer.Mod }
  1286. UNIX, UNIXG{ Unix.Oberon.Printer.Mod }
  1287. eWIN { Win32.Oberon.Bitmaps.Mod Win32.Oberon.Pictures.Mod }
  1288. WIN { Win32.Oberon.Printer.Mod Win32.ADVAPI32.Mod }
  1289. eWIN { Win32.Oberon.System.Mod Win32.OberonDisplay.Mod }
  1290. Compiler.Tool Oberon.OPM.Mod Oberon.OPS.Mod Oberon.OPT.Mod Oberon.OPB.Mod Oberon.OPA.Mod Oberon.OPP.Mod # Compiler (prk)
  1291. Oberon.OPO.Mod Oberon.OPL.Mod Oberon.OPC.Mod Oberon.OPV.Mod Oberon.Compiler.Mod Oberon.OPAData.Mod OPA.Data
  1292. Edit.Tool Oberon.Edit.Mod # Edit
  1293. Script.Tool Oberon.Styles.Mod Oberon.ScriptFrames.Mod Oberon.Script.Mod # Script
  1294. NATIVEORIG, NATIVEGEN {
  1295. Oberon.Diskettes.Mod # Diskette driver
  1296. Backup.Tool Oberon.Diskette.Mod Oberon.Backup.Mod # Backup
  1297. }
  1298. Partitions.Tool Oberon.Partitions.Mod # Partition
  1299. NATIVE, iWIN { Oberon.Miscellaneous.Mod } # Miscellaneous
  1300. Miscellaneous.Tool
  1301. Oberon.Browser.Mod # Browser (Compiler.Tool)
  1302. DOS.Tool Oberon.FATFiles.Mod Oberon.DOS.Mod # DOS
  1303. Oberon.Hello.Mod # Demo program (UserGuide.Text)
  1304. NATIVE,UNIX, UNIXG { Oberon.PSPrinter.Mod PSHeader.Text Oberon.HPLaserPrinter.Mod Oberon.HPPCL.Mod } # Printer drivers
  1305. WIN { Win32.Oberon.PSPrinter.Mod }
  1306. UNIX, UNIXG { Unix.Oberon.UnixPrinter.Mod }
  1307. Default.Pal Light.Pal Dark.Pal White.Pal Black.Pal # Palettes
  1308. System.Text UserGuide.Text Feedback.Text Release.Oberon.Text # Texts
  1309. System.Tool LoadGadgets.Text # Tools
  1310. # Configuration
  1311. Configuration.Tool
  1312. WINORIG, WINGEN32 { Win32.Oberon.Registry.Mod }
  1313. eWIN { Win32.Oberon.Configuration.Mod }
  1314. NATIVE,iWIN { Oberon.Configuration.Mod }
  1315. # Basic Tools. NetSystem, Telnet, TextMail, ET, developer's tools, OpenType.
  1316. Tools.Tool
  1317. # NetSystem TCP/IP
  1318. Release.NetSystem.Tool
  1319. NATIVE { Oberon.NetSystem.Mod }
  1320. WIN { Win32.Oberon.NetSystem.Mod }
  1321. UNIX, UNIXG { Unix.Oberon.NetSystem.Mod }
  1322. Oberon.HelloServer.Mod
  1323. Oberon.Terminals.Mod Oberon.TerminalFrames.Mod Oberon.Telnet.Mod # Telnet
  1324. Oberon.TextMail.Mod # TextMail
  1325. Oberon.FTP.Mod # FTP
  1326. IFS.Tool Oberon.XYplane.Mod Oberon.IFS.Mod # IFS
  1327. Greek.Tool Math.Tool # Greek & Math fonts
  1328. # Developer tools
  1329. ET.Tool Oberon.ET.Mod Oberon.Menu.Mod ET.Popup.Menu # ET and Menu
  1330. Oberon.Decoder.Mod # Decode .Obj & .Sym files
  1331. Oberon.V24Log.Mod Oberon.SysLog.Mod # V24 log and SysLog
  1332. OFS.Tool # OFS tool module
  1333. Oberon.ZlibWriters.Mod Oberon.ZlibReaders.Mod # Zip tool
  1334. Oberon.Zip.Mod Zip.Tool Oberon.ZipTool.Mod
  1335. GZip.Tool Oberon.GZWriters.Mod Oberon.GZReaders.Mod Oberon.GZip.Mod # GZip tool
  1336. Oberon.TGZ.Mod # .tgz unpacker
  1337. NATIVE { Oberon.PCITools.Mod } # PCI scanner
  1338. # ARM decoder
  1339. Oberon.PCARMDecoder.Mod
  1340. # Additional things
  1341. Oberon.Aos.Mod Oberon.OFSTools.Mod Oberon.CleanupFiles.Mod # Aos-specific tools
  1342. NATIVE { Oberon.TestNet.Mod }
  1343. AosTools.Tool
  1344. NATIVE { Oberon.TFTPTool.Mod }
  1345. GUI.Text
  1346. Oberon.FATTools.Mod FAT.Tool
  1347. END
  1348. PACKAGE OberonGadgets ARCHIVE "OberonGadgets.zip" SOURCE "OberonGadgetsSrc.zip" DESCRIPTION "Oberon Gadgets Framework"
  1349. Colors.Tool
  1350. NATIVE,iWIN,UNIX, UNIXG {
  1351. Oberon.Colors.Mod # Color models
  1352. Oberon.Display3.Mod Oberon.Effects.Mod
  1353. }
  1354. eWIN {
  1355. Win32.Oberon.Colors.Mod
  1356. Win32.Oberon.Display3.Mod Win32.Oberon.Effects.Mod
  1357. }
  1358. Oberon.Printer3.Mod Oberon.Attributes.Mod Oberon.Links.Mod
  1359. NATIVE,iWIN,UNIX, UNIXG { Oberon.Gadgets.Mod }
  1360. eWIN { Win32.Oberon.Gadgets.Mod }
  1361. WIN { Win32.Oberon.PrinterInfo.Mod }
  1362. Oberon.BasicGadgets.Mod Oberon.TextFields.Mod Oberon.ListRiders.Mod Oberon.ListModels.Mod Oberon.ListDags.Mod # Gadget catalog in Gadgets.Panel
  1363. Oberon.ListGadgets.Mod
  1364. Oberon.Lists.Mod
  1365. Oberon.Panels.Mod
  1366. NATIVE,WIN, UNIXG { Oberon.TextGadgets0.Mod Oberon.TextGadgets.Mod }
  1367. UNIX { Unix.Oberon.TextGadgets0.Mod Unix.Oberon.TextGadgets.Mod }
  1368. Oberon.BasicFigures.Mod
  1369. NATIVE,WIN,UNIXG { Oberon.Scrollbars.Mod }
  1370. UNIX { Unix.Oberon.Scrollbars.Mod Unix.Oberon.TextSBControl.Mod }
  1371. NATIVE,UNIX, UNIXG { Oberon.Directories.Mod }
  1372. WIN { Win32.Oberon.Directories.Mod }
  1373. Oberon.Clocks.Mod Oberon.Organizers.Mod
  1374. Oberon.Complex.Mod Oberon.SetGadgets.Mod Oberon.TimeStamps.Mod Oberon.Gages.Mod Oberon.AudioGadgets.Mod
  1375. Oberon.ProgressMeters.Mod Oberon.Sisiphus.Mod Sisyphus.Data
  1376. Oberon.Documents.Mod Oberon.Views.Mod
  1377. NATIVE,iWIN,UNIX, UNIXG { Oberon.Desktops.Mod }
  1378. eWIN { Win32.Oberon.Desktops.Mod }
  1379. NATIVE,WIN, UNIXG{ Oberon.TextDocs.Mod }
  1380. UNIX { Unix.Oberon.TextDocs.Mod }
  1381. TextDocs.Lib Oberon.PanelDocs.Mod # Document catalog
  1382. Oberon.Icons.Mod Oberon.ColorTools.Mod Oberon.NamePlates.Mod Oberon.Navigators.Mod Oberon.NoteBooks.Mod
  1383. NATIVE,iWIN,UNIX, UNIXG { Oberon.Finder.Mod }
  1384. eWIN { Win32.Oberon.Finder.Mod }
  1385. Oberon.GadgetsIn.Mod Oberon.GadgetsOut.Mod
  1386. eWIN { Win32.Oberon.Miscellaneous.Mod Win32.COMDLG32.Mod Win32.Oberon.WinMenus.Mod Win32.Oberon.WinPrinter.Mod }
  1387. Libraries.Panel Oberon.ScrollViews.Mod Oberon.RefGadgets.Mod Oberon.Columbus.Mod Columbus.Lib # Columbus in Popups.Tool
  1388. ObjExplorer.Panel Oberon.ObjExplorer.Mod # ObjExplorer in Popups.Tool
  1389. Compress.Tool Oberon.Compress.Mod Oberon.CompressCrypt.Mod # Compress in Popups.Tool
  1390. AsciiCoder.Tool Oberon.AsciiCoder.Mod # AsciiCoder in Popups.Tool
  1391. Decoders.Tool Oberon.Base64.Mod Oberon.UUDecoder.Mod Oberon.BinHex.Mod Oberon.Rot13.Mod # Decoders in Popups.Tool
  1392. Oberon.Tar.Mod Oberon.QuotedPrintable.Mod
  1393. Builder.Tool Oberon.Builder.Mod # Builder in Popups.Tool
  1394. Watson.Panel Definitions.Tool Oberon.Watson0.Mod Oberon.Watson.Mod Watson.Lib # Watson in Popups.Tool
  1395. EditTools.Tool Oberon.EditTools.Mod # EditTools in Popups.Tool
  1396. Outlines.Tool Oberon.Outlines.Mod # Outlines in Popups.Tool
  1397. Oberon.OFormatterIO.Mod Oberon.OFormatter.Mod
  1398. Oberon.StyleGadgets.Mod Oberon.ScriptGadgets.Mod
  1399. Rembrandt.Panel Oberon.Rembrandt0.Mod
  1400. NATIVE,iWIN,UNIX, UNIXG { Oberon.Rembrandt.Mod }
  1401. eWIN { Win32.Oberon.Rembrandt.Mod }
  1402. Oberon.RembrandtDocs.Mod # Rembrandt in Popups.Tool
  1403. Oberon.RembrandtTools.Mod Rembrandt.Lib Clown.Pict Grapes.Pict
  1404. Gadgets.Pict Default.Pict # Default.Pict used in Scramble
  1405. PC.Tool Oberon.ErrorGadgets.Mod Oberon.PC.Mod # Oberon Interface for PACO
  1406. WINORIG,WINGEN32 { Win32.PELinker.Mod PELinker.Tool }
  1407. iWIN { Win32.Oberon.Clipboard.Mod }
  1408. eWIN { Win32.External.Oberon.Clipboard.Mod Win32.Oberon.RegistryTools.Mod }
  1409. WIN { Win32.Oberon.FontRes.Mod FontRes.Tool }
  1410. UNIX, UNIXG{ Unix.Oberon.Clipboard.Mod }
  1411. WIN,UNIX, UNIXG { Clipboard.Tool }
  1412. Oberon.JPEG.Mod Oberon.GIF.Mod Oberon.XBM.Mod Oberon.BMP.Mod Oberon.ICO.Mod Oberon.PCX.Mod Oberon.TGA.Mod Oberon.IFF.Mod # Picture converters
  1413. Oberon.ColorModels.Mod Oberon.XPM.Mod Oberon.PPM.Mod Oberon.PSD.Mod
  1414. Images.Tool Oberon.Images.Mod
  1415. NATIVE,iWIN,UNIX, UNIXG { Oberon.ImageGadgets.Mod }
  1416. eWIN { Win32.Oberon.WinImages.Mod Win32.Oberon.ImageGadgets.Mod }
  1417. Oberon.ImageDocs.Mod # Images
  1418. Oberon.PictImages.Mod Oberon.BMPImages.Mod Oberon.JPEGImages.Mod Oberon.GIFImages.Mod Oberon.PSDImages.Mod
  1419. Colors.Panel
  1420. NATIVE, iWIN,UNIX, UNIXG { Oberon.ColorGadgets.Mod }
  1421. eWIN { Win32.Oberon.ColorGadgets.Mod }
  1422. Oberon.PCXImages.Mod # Color views
  1423. Oberon.ColorWells.Mod # Leonardo legacy
  1424. System3.Tool Applications.Tool Documentation.Tool Release.Popups.Tool Programming.Tool Editing.Tool # Hypertools in Popups.Tool
  1425. Desktops.Tool Gadgets.Tool # in Popups.Tool
  1426. Printers.Tool
  1427. Gadgets.Panel Documents.Panel TextDocs.Panel # Panels in Popups.Tool
  1428. Oberon.Desk # in Popups.Tool
  1429. Backdrop.Pict # in Popups.Tool
  1430. TextDocs.Tool # in Popups.Tool
  1431. Icons.Lib Symbols.Lib # Symbols.Lib used in DirectoryView
  1432. # Gadgets Networking
  1433. Network.Tool NetDocs.Lib
  1434. Oberon.Streams.Mod Oberon.TextStreams.Mod Oberon.BTrees.Mod Oberon.MIME.Mod Oberon.HyperDocs.Mod # Utility modules
  1435. Oberon.NetTools.Mod Oberon.PasswordFields.Mod
  1436. HyperDocs.Tool HyperDocs.Panel HyperLinks.Panel Oberon.HyperDocTools.Mod # HyperDocs
  1437. Mail.Tool Mail.Panel # MD5.Mod
  1438. Oberon.Mail.Mod # Mail
  1439. FTP.Tool Oberon.FTPDocs.Mod # FTP
  1440. Finger.Tool Oberon.Finger.Mod # Finger
  1441. News.Tool Oberon.News.Mod # News
  1442. Gopher.Tool Oberon.Gopher.Mod # Gopher
  1443. Telnet.Panel Oberon.TerminalGadgets.Mod Oberon.TelnetGadgets.Mod Telnet.Tool # Telnet
  1444. HTTP.Tool Oberon.HTTPDocs0.Mod Oberon.HTMLDocs.Mod Oberon.HTTPDocs.Mod Authorization.html # HTTP/HTML
  1445. Oberon.HTMLForms.Mod Oberon.HTMLImages.Mod Oberon.HTMLTables.Mod
  1446. Oberon.ZipDocs.Mod # .zip reader
  1447. Oberon.Packages.Mod Oberon.PlugIns.Mod Oberon.HTMLPlugIns.Mod # Packages
  1448. WIN { Win32.Oberon.PlugInDocs.Mod }
  1449. NATIVEORIG, NATIVEGEN {
  1450. Oberon.Profiler.Mod # alternative profiler (prk)
  1451. Oberon.FATDocs.Mod # FAT browser (be)
  1452. }
  1453. END
  1454. # Additional/contributed Gadgets applications.
  1455. PACKAGE OberonApplications ARCHIVE "OberonApplications.zip" SOURCE "OberonApplicationsSrc.zip" DESCRIPTION "Oberon Applications"
  1456. Oberon.Copyright.Mod Copyright.Text # Add/remove copyright
  1457. Oberon.FileDisks.Mod
  1458. # Gadgets Applications
  1459. Oberon.OTInt.Mod Oberon.OTScan.Mod Oberon.OType.Mod Oberon.OTFonts.Mod OType.Text # OpenType
  1460. Gfx.Tool Oberon.GfxMatrix.Mod Oberon.GfxImages.Mod Oberon.GfxPaths.Mod Oberon.GfxRegions.Mod # Gfx library
  1461. Oberon.GfxFonts0.Mod
  1462. Oberon.GfxFonts.Mod Oberon.Gfx.Mod Oberon.GfxRaster.Mod Oberon.GfxPrinter.Mod
  1463. Oberon.GfxBuffer.Mod Oberon.GfxDisplay.Mod Oberon.GfxPS.Mod Oberon.GfxOType.Mod
  1464. Oberon.GfxPKFonts.Mod
  1465. GfxProlog.ps
  1466. GfxHowto.html GfxOverview.html Oberon.GfxTest.Mod Oberon.GfxDemo.Mod # Gfx documentation
  1467. Leonardo.Panel Leonardo.Lib LeoConfig.Text Leonardo.Fig # Leonardo in Popups.Tool
  1468. Oberon.Leonardo.Mod Oberon.LeoFrames.Mod Oberon.LeoTools.Mod Oberon.LeoDocs.Mod
  1469. Oberon.LeoPanels.Mod Oberon.LeoLists.Mod Oberon.LeoPens.Mod Oberon.LeoOutliners.Mod
  1470. Oberon.LeoPenEditors.Mod Oberon.LeoPaths.Mod Oberon.LeoPathEditors.Mod
  1471. Oberon.LeoSplines.Mod Oberon.LeoSplineEditors.Mod Oberon.LeoCaptions.Mod
  1472. Oberon.LeoCaptionEditors.Mod Oberon.LeoBasic.Mod Oberon.LeoBasicEditors.Mod
  1473. Oberon.LeoImages.Mod Oberon.LeoImageEditors.Mod Oberon.LeoDraw.Mod
  1474. Leonardo.Text # Leonardo documentation
  1475. Oberon.Scheme.Mod Oberon.SchemeOps.Mod Oberon.Vinci.Mod Oberon.VinciGadgets.Mod # Vinci
  1476. Oberon.VinciDocs.Mod Oberon.VinciShapes.Mod Oberon.VinciPens.Mod Oberon.VinciEditors.Mod
  1477. Scheme.Init Vinci.Init
  1478. Clip.Vinci Labels.Vinci Smiley.Vinci Stars.Vinci Test.Vinci Test1.Vinci Test2.Vinci
  1479. Rect2.Shape NGon.Shape Distance.Shape CoordSys.Shape YinYang.Shape
  1480. Vinci.Text # Vinci documentation
  1481. TextPopups.Tool Oberon.TextPopups.Mod TextPopups.Text # TextPopups in Applications.Tool
  1482. V24.Panel Oberon.V24Gadgets.Mod # V24Gadgets in Applications.Tool
  1483. Hex.Tool Oberon.Hex.Mod # Binary file editor in Applications.Tool
  1484. HPCalc.Panel Oberon.Conversions.Mod Oberon.HPCalc.Mod # HPCalc in Applications.Tool
  1485. NATIVE { Snapshot.Tool Oberon.Snapshot.Mod } # SnapShot in Applications.Tool
  1486. EditKeys.Tool Oberon.EditKeys.Mod EditKeys.Text # EditKeys in Applications.Tool
  1487. Find.Tool Find.Panel # Find in Applications.Tool
  1488. Oberon.Find.Mod
  1489. Oberon.TeXTools.Mod # TeXTools in TextPopups.Text
  1490. SaveScreen.Tool Oberon.SaveScreen.Mod Oberon.SaveTiles.Mod Oberon.SaveParticles.Mod # SaveScreen in Applications.Tool
  1491. Oberon.SaveDecay.Mod Oberon.SaveSisyphus.Mod Oberon.SaveSwarm.Mod SaveScreen.Text
  1492. SavePoints.Text Oberon.SavePoints.Mod SavePoints.Data Oberon.MakePoints.Mod
  1493. SaveLife.html SaveLife.gif Oberon.SaveLife.Mod Oberon.SaveArt.Mod
  1494. NATIVE { LPRPrinter.Tool Oberon.LPRPrinter.Mod } # LPRPrinter
  1495. Oberon.DayTime.Mod # DayTime client
  1496. Backdrops.Panel Oberon.Backdrops.Mod Backdrops.Book Bows.Pict Bricks.Pict Cells.Pict # Backdrops in Applications.Tool
  1497. Clouds.Pict Coins.Pict Fractal.Pict Molecules.Pict Plasma.Pict Spirals.Pict Surface.Pict # (used by Tetris)
  1498. Textils.Pict Threads.Pict Trees.Pict Marble.Pict Crochet.Pict Flock.Pict Pebbles.Pict
  1499. Layout.Tool LayoutEdit.Panel Oberon.LayoutPanels0.Mod Oberon.LayoutPanels.Mod # LayoutEditor in Applications.Tool
  1500. LayoutSamples.Arc
  1501. LayLa.Tool Oberon.Layouts.Mod Oberon.LayLaS.Mod Oberon.LayLa.Mod Oberon.LayLa2S.Mod Oberon.LayLa2.Mod # LayLa in Applications.Tool
  1502. Oberon.LayLaDemo.Mod LayLa.QuickGuide.Text LayLa.Guide.Eng.Text # LayLa.Guide.De.Text
  1503. LayLa.Demo.Config LayLa.Include.Config LayLa2.Demo.Config LayLa2.Include.Config
  1504. LayLaTest.Lib
  1505. NATIVE {
  1506. Dim3.Panel Oberon.Dim3Base.Mod Oberon.Dim3Paint.Mod Oberon.Dim3Engine.Mod Oberon.Dim3Read.Mod # Dim3 in Applications.Tool
  1507. Oberon.Dim3Frames.Mod City.poly Cube.poly Example.poly Gadgets.poly Room.poly
  1508. Sphere.poly Tetra.poly Tree.poly XMas.poly Tree1.Pict X29Plane.poly Dim3Guide.Text
  1509. }
  1510. BooksDev.Panel BooksUser.Panel Tutorials.Book Tutorials.Tool # Book tutorials (not linked)
  1511. Oberon.Books0.Mod Oberon.Books.Mod Oberon.BooksHelp.Mod Oberon.BookDocs.Mod Oberon.BookCompiler.Mod
  1512. Coco.Tool Oberon.Sets.Mod Oberon.CRS.Mod Oberon.CRT.Mod Oberon.CRA.Mod Oberon.CRX.Mod Oberon.CRP.Mod # Coco in Applications.Tool
  1513. Oberon.Coco.Mod CR.ATG Scanner.FRM Parser.FRM Coco.Report.ps
  1514. FontEditor.Panel Oberon.FontEditor.Mod # FontEditor in Applications.Tool
  1515. ASCIITab.Tool Oberon.ASCIITab.Mod # ASCIITab in Applications.Tool
  1516. Oberon.Magnifier.Mod # Magnifier in Applications.Tool
  1517. Games.Tool Icons2.Lib Icons3.Lib
  1518. CardGames.Panel Oberon.Cards.Mod Oberon.Solitaire.Mod Oberon.Spider.Mod Oberon.Freecell.Mod Cards.Pict # CardGames in Games.Tool
  1519. CardGames.Book
  1520. Oberon.MineSweeper.Mod MineSweeperBD.Pict # MineSweeper in Games.Tool
  1521. Oberon.Sokoban.Mod Sokoban.Data # Sokoban in Games.Tool
  1522. Oberon.Scramble.Mod # Scramble (uses Default.Pict) in Games.Tool
  1523. Oberon.Shanghai.Mod Shanghai.Scn.Fnt # Shanghai in Games.Tool
  1524. Tetris.Panel Oberon.Tetris.Mod # Tetris (uses Backdrops) in Games.Tool
  1525. Oberon.Asteroids.Mod # Asteroids in Games.Tool
  1526. HTML.Tool Oberon.HTML.Mod TestHTML.Text # HTML in Applications.Tool
  1527. WTS.Tool Oberon.WTS.Mod Oberon.WTSFold.Mod Oberon.WTSPict.Mod Oberon.WTSStamp.Mod Oberon.WTSDraw.Mod # WTS in Applications.Tool
  1528. CUSeeMe.Panel Oberon.CUSM.Mod # CuSeeMe in Applications.Tool
  1529. Diff.Tool Oberon.DiffGadgets.Mod Oberon.Diff.Mod # Diff in Applications.Tool
  1530. Sort.Tool Oberon.Sort.Mod # Sort in Applications.Tool
  1531. RX.Tool Oberon.RXA.Mod Oberon.RX.Mod # RX in Applications.Tool
  1532. PictConverters.Tool Oberon.PictConverters.Mod Oberon.PS.Mod PS.HeaderR.Text # PictConverters in Applications.Tool
  1533. Histogram.Panel Oberon.Histogram.Mod # Histogram in Applications.Tool
  1534. MultiMail.Panel Oberon.MultiMail.Mod # MultiMail in Applications.Tool
  1535. Calc.Tool Oberon.Calc.Mod # Calc in Applications.Tool
  1536. Calculator.Panel Oberon.Calculator.Mod Oberon.CalculatorGadgets.Mod Calculator.LayLa # Calculator in Applications.Tool
  1537. Oberon.DBF.Mod Oberon.DBFDump.Mod # DBFDump in Applications.Tool
  1538. Swarm.Panel Oberon.Swarm.Mod Swarm.Book Swarm.Lib # Swarm in Applications.Tool
  1539. Oberon.DVIFiles.Mod Oberon.DVIViewers.Mod Oberon.DVIDocs.Mod DVI.Lib # DVI viewer
  1540. Packages.Tool # install Oberon packages
  1541. END
  1542. # Gadgets examples & documentation. All internal links valid.
  1543. PACKAGE OberonDocumentation ARCHIVE "OberonDocumentation.zip" SOURCE "" DESCRIPTION "Oberon Documentation"
  1544. SamplePrograms.Tool
  1545. ColorSystem.Panel Oberon.ColorSystem.Mod # ColorSystem in Documentation.Tool
  1546. PhonePad.Panel Oberon.PhonePad.Mod # PhonePad
  1547. Plotter.Panel Oberon.Plotter.Mod Oberon.Plot.Mod # Plotter
  1548. Lissajous.Panel Oberon.Lissajous.Mod Oberon.Graphs.Mod # Lissajous
  1549. Simulator.Panel Oberon.Diagrams.Mod Oberon.Simulator.Mod # Simulator
  1550. Oberon.Popups.Mod # Popups
  1551. Oberon.BartSimpson.Mod Bart.Pict # BartSimpson
  1552. Oberon.Cups.Mod # Cups
  1553. Oberon.Examples.Mod Oberon.Examples1.Mod Oberon.OpenDemo.Mod Oberon.OpenDemo2.Mod # Examples
  1554. Oberon.ExampleOberon.Mod # how to use Oberon within A2
  1555. Oberon.Suitcases.Mod # Suitcases
  1556. Oberon.Skeleton.Mod Oberon.ViewSkeleton.Mod Oberon.ColorDriver.Mod Oberon.DocumentSkeleton.Mod # Skeletons
  1557. Oberon.Portraits.Mod # Portraits
  1558. Oberon.Reminders.Mod # in SamplePrograms.Tool
  1559. # use Compiler.Compile
  1560. TestOrganizer.Panel # in SamplePrograms.Tool
  1561. Oberon.TaskExample.Mod # in SamplePrograms.Tool
  1562. NATIVE { Oberon.UDPExample.Mod }
  1563. Oberon.TCPExample.Mod # NetSystem examples
  1564. System3F1.Graphic System3F2.Graphic System3F3.Graphic System3F4.Graphic # Some example Gadgets diagrams
  1565. System3F5.Graphic System3F6.Graphic System3F7.Graphic
  1566. IntroToGadgets.Text OberonReport.html Oberon.Report.Text References.Text GadgetsChanges.Text # Introductory documentation
  1567. Book.Tool Chapter0.Text Chapter1.Text Chapter2.Text Chapter3.Text Chapter4.Text # The Oberon Companion
  1568. Chapter5.Text Chapter6.Text Chapter7.Text AppendA.Text AppendB.Text
  1569. AppendC.Text Biblio.Text
  1570. Images.Text # Images documentation
  1571. ScriptGuide.Text ETGuide.Text # Script and ET documentation
  1572. END
  1573. PACKAGE OberonVoyager ARCHIVE "OberonVoyager.zip" SOURCE "OberonVoyagerSrc.zip" DESCRIPTION "Oberon Voyager"
  1574. # Portability Module
  1575. eWIN { Win32.Oberon.vyPortability.Mod }
  1576. NATIVE, iWIN,UNIX, UNIXG { Oberon.vyPortability.Mod }
  1577. Oberon.vyHost.Mod Oberon.vyHostFonts.Mod # Host modules
  1578. Oberon.vyLinks.Mod Oberon.vyHostStrings.Mod Oberon.vyHostTexts.Mod Oberon.vyBase.Mod Oberon.vyName.Mod # Base and Name
  1579. Oberon.vyScanners.Mod Oberon.vyParser.Mod Oberon.vyPars.Mod Oberon.vyIn.Mod Oberon.vyOut.Mod Oberon.vyFiles.Mod Oberon.vyTextsCtl.Mod # In and Output
  1580. Oberon.vyBoolean.Mod Oberon.vyBit.Mod Oberon.vySet.Mod Oberon.vyReal.Mod Oberon.vyLongreal.Mod
  1581. Oberon.vyChiSquare.Mod Oberon.vyInteger.Mod Oberon.vyLongint.Mod # 1d Arrays
  1582. Oberon.vyLongintVec.Mod Oberon.vyRealVec.Mod Oberon.vyStringVec.Mod Oberon.vyReadMatrix.Mod Oberon.vyConsume.Mod
  1583. Oberon.vyBooleanVec.Mod Oberon.vyIntVec.Mod Oberon.vyLongrealVec.Mod Oberon.vyTypes.Mod Oberon.vyPointerVec.Mod # 1d Vectors
  1584. Oberon.vyRanBase.Mod Oberon.vyRanSkeleton.Mod Oberon.vyRanParksMiller.Mod Oberon.vyRandom.Mod Oberon.vyRandu.Mod
  1585. Oberon.vyRan1.Mod Oberon.vyRanCombo.Mod Oberon.vyRanKiss.Mod Oberon.vyRanMWC.Mod Oberon.vyRanMWC1616.Mod
  1586. Oberon.vyRanSupr.Mod Oberon.vy.jbrtStdNormal.Mod # Random number generation
  1587. Oberon.vyKolSmirL.Mod Oberon.vyXPValues.Mod Oberon.vyQFisher.Mod Oberon.vyMatrixTypes.Mod
  1588. Oberon.vyGraphBase0.Mod Oberon.vyGraphBase.Mod Oberon.vyEvents.Mod Oberon.vyRectangles.Mod Oberon.vyPatterns.Mod
  1589. Oberon.vyTracking.Mod Oberon.vyCommandMenus.Mod Oberon.vyDisplay2d.Mod Oberon.vyPHIGS3D.Mod
  1590. Oberon.vyPaint3d.Mod Oberon.vyAxis.Mod Oberon.vyColorPalettes.Mod Oberon.vyPort.Mod Oberon.vyHostPrint.Mod Oberon.vyGraphicCtl.Mod # Graphics
  1591. Oberon.vyLine.Mod Oberon.vyLinePlot.Mod Oberon.vyHighlight.Mod Oberon.vyScatter2.Mod Oberon.vyRegress.Mod Oberon.vyPolyWorld.Mod
  1592. Oberon.vyBitmaps.Mod Oberon.vyLayers3d.Mod Oberon.vyGraph.Mod Oberon.vyRectPlot.Mod Oberon.vyScatter1.Mod Oberon.vyScatter3.Mod
  1593. Oberon.vyScatter.Mod Oberon.vyHistogram.Mod Oberon.vyCharts.Mod Oberon.vySketch.Mod Oberon.vyDistribution.Mod
  1594. Oberon.vySurface.Mod Oberon.vyMaxMass.Mod Oberon.vyShorth.Mod Oberon.vyScale.Mod Oberon.vyGrid.Mod
  1595. Oberon.vySlider.Mod Oberon.vySlider2d.Mod Oberon.vyLabel.Mod Oberon.vyBoxWhisker.Mod Oberon.vyCaption.Mod Oberon.vyFctEdit.Mod
  1596. Oberon.vyMouseData.Mod # Layers
  1597. Oberon.vy.Voyager.Mod Oberon.vyFctRandom.Mod Oberon.vyComplex.Mod Oberon.vyLCpx.Mod Oberon.vyLongComplex.Mod
  1598. Oberon.vyPComplex.Mod Oberon.vyPLongComplex.Mod Oberon.vyDialogElems.Mod Oberon.vyStd2dLayer.Mod Oberon.vyXYPlane.Mod
  1599. Oberon.vyxPlots.Mod
  1600. Oberon.vy.dbgSortTest.Mod Oberon.vy.dbgTestVec.Mod Oberon.vydbg.RandomTest.Mod Oberon.vyDemo.Mod
  1601. Oberon.vyIcons.Mod Oberon.vyQuickDraw.Mod
  1602. END
  1603. PACKAGE OberonAnts ARCHIVE "OberonAnts.zip" SOURCE "OberonAntsSrc.zip" DESCRIPTION "OberonAnts"
  1604. Oberon.antsS3.ScrollbarsR.Mod Oberon.antsCommandInvoker.Mod # generic tools
  1605. eWIN { Win32.Oberon.antsPortability.Mod }
  1606. NATIVE,iWIN,UNIX,UNIXG { Oberon.antsPortability.Mod } # Portability
  1607. NATIVE,WIN {
  1608. Oberon.antsExpressionsObjects.Mod Oberon.antsExpressions.Mod Oberon.antsExpressionsDefaults.Mod # command prompt interpreter
  1609. Oberon.antsSecurity.Mod Oberon.antsOrganizers.Mod Oberon.antsMessages.Mod Oberon.antsScriptObjects.Mod
  1610. }
  1611. eWIN { Win32.Oberon.antsTracking.Mod }
  1612. NATIVE,WIN {
  1613. Oberon.antsContainers.Mod Oberon.antsTexts.Mod Oberon.antsGlobals.Mod Oberon.antsBasicGadgets.Mod Oberon.antsOnTheFly.Mod
  1614. Oberon.antsConstRandom.Mod Oberon.antsFiles.Mod Oberon.antsCommands.Mod Oberon.ants.fofAutomatic.Mod Oberon.antsArrays.Mod
  1615. Oberon.antsReadWrite.Mod Oberon.antsCaches.Mod Oberon.antsPictCoordinate.Mod Oberon.antsBellman.Mod Oberon.antsDirSet.Mod
  1616. Oberon.antsVecOpt.Mod Oberon.antsEffects.Mod Oberon.antsToolbox.Mod Oberon.antsObjects.Mod Oberon.antsArrayObjects.Mod
  1617. Oberon.antsArrayImages.Mod Oberon.antsArrayPictures.Mod
  1618. Oberon.antsHybridObjects.Mod Oberon.antsFunctions.Mod Oberon.antsFctVector.Mod Oberon.ants.Mod Oberon.antsRandom.Mod
  1619. Oberon.antsMC.Mod Oberon.antsKernel.Mod Oberon.antsPerfectS.Mod Oberon.antsMasks.Mod Oberon.antsMatrixPar.Mod
  1620. Oberon.antsNeighbourhoods.Mod Oberon.antsStatistics.Mod Oberon.ants1dArrayObjects.Mod Oberon.ants3dArrayObjects.Mod
  1621. Oberon.ants4dArrayObjects.Mod Oberon.antsHistogramEdit.Mod Oberon.ants1dArrayVectors.Mod Oberon.antsVectors.Mod
  1622. Oberon.antsMeanArray.Mod Oberon.antsEdges.Mod Oberon.antsColors.Mod Oberon.antsMatrixParView.Mod Oberon.antsGraph.Mod
  1623. Oberon.antsDependency.Mod Oberon.antsPointPlot.Mod Oberon.antsArrayPictures16.Mod Oberon.antsArrayConversions.Mod
  1624. Oberon.antsArrayImages16.Mod Oberon.antsViews.Mod Oberon.antsRegions.Mod Oberon.antsModels.Mod Oberon.antsArrayStatistics.Mod
  1625. Oberon.antsPEV.Mod Oberon.ants3D.Mod Oberon.antsPictureViews.Mod Oberon.antsPlots.Mod Oberon.antsFilters.Mod Oberon.antsArrayViews.Mod
  1626. Oberon.antsImageViews.Mod Oberon.ants3dArrayViews.Mod Oberon.antsLinkView.Mod Oberon.antsNDistrView.Mod
  1627. Oberon.antsMCView.Mod Oberon.antsKernelViewer.Mod Oberon.antsInteractivePar.Mod Oberon.antsScale.Mod
  1628. Oberon.antsObjectView.Mod Oberon.antsFctEdit.Mod Oberon.antsValuePlot.Mod Oberon.antsPointPlot2.Mod Oberon.antsLayerOps.Mod
  1629. Oberon.ants1dCup.Mod Oberon.antsBinaryIsingS.Mod Oberon.antsBinaryIsingS2.Mod Oberon.ants3dBinaryIsingS2.Mod
  1630. Oberon.ants4dBinaryIsingS2.Mod Oberon.antsDiscreteIsingS.Mod Oberon.antsMDimDiscreteIsingS.Mod
  1631. Oberon.antsMDimMDiscreteIsingS.Mod Oberon.antsNNSampler.Mod Oberon.antsMDimDiscreteS.Mod
  1632. Oberon.antsMDimDiscreteGS.Mod Oberon.antsAutobinomialS.Mod Oberon.antsAutoNormalS.Mod Oberon.antsGauss1dModel.Mod
  1633. Oberon.antsRandomWalk.Mod Oberon.antsPEIsingDS.Mod Oberon.antsPEVIsingDS.Mod Oberon.antsPotts1DSurvey.Mod
  1634. Oberon.antsHierarchicPotts2d.Mod Oberon.antsComet.Mod Oberon.antsAztec.Mod Oberon.antsLife.Mod Oberon.antsProgRandomWalk.Mod
  1635. Oberon.antsTravelingS.Mod Oberon.antsPottsMonotone.Mod Oberon.antsMinimizeF.Mod Oberon.antsEmpiricD.Mod
  1636. Oberon.antsBinaryEmpiricD.Mod Oberon.antsBinaryEmpiricD2.Mod Oberon.antsDiscreteEmpiricD.Mod
  1637. Oberon.antsBinaryNINNED.Mod Oberon.antsIsingE.Mod Oberon.antsMDimEstimator.Mod Oberon.antsTextures.Mod
  1638. Oberon.antsEstimate.Mod Oberon.antsEstimate2.Mod Oberon.antsPottsSimDataStructure.Mod Oberon.antsTautStringTree.Mod
  1639. Oberon.antsTautString.Mod Oberon.antsPottsSimAdministration.Mod Oberon.antsPottsSimulation.Mod Oberon.antsPorts.Mod
  1640. }
  1641. END
  1642. PACKAGE TrueTypeFonts ARCHIVE "TrueTypeFonts.zip" SOURCE "" DESCRIPTION "True-type fonts"
  1643. benevento.ttf
  1644. VeraCOPYRIGHT.TXT
  1645. Vera.ttf VeraBd.ttf VeraBI.ttf VeraI.ttf
  1646. VeraMo.ttf VeraMoBd.ttf VeraMoBI.ttf VeraMoI.ttf
  1647. VeraSe.ttf VeraSeBd.ttf
  1648. END
  1649. PACKAGE CjkFonts ARCHIVE "CjkFonts.zip" SOURCE "" DESCRIPTION "Chinese, Japanese and Korean Fonts"
  1650. Song.ccg Single.ccg
  1651. END
  1652. PACKAGE ScreenFonts ARCHIVE "ScreenFonts.zip" SOURCE "" DESCRIPTION "Bitmap fonts for screen"
  1653. Courier8.Scn.Fnt Courier10.Scn.Fnt Courier12.Scn.Fnt
  1654. Greek10.Scn.Fnt Greek12.Scn.Fnt Greek14.Scn.Fnt
  1655. Greek16.Scn.Fnt Greek20.Scn.Fnt Greek24.Scn.Fnt
  1656. Math10.Scn.Fnt Math12.Scn.Fnt Math14.Scn.Fnt
  1657. Math16.Scn.Fnt Math20.Scn.Fnt Math24.Scn.Fnt
  1658. Oberon8.Scn.Fnt Oberon8b.Scn.Fnt Oberon8i.Scn.Fnt
  1659. Oberon10.Scn.Fnt Oberon10b.Scn.Fnt Oberon10i.Scn.Fnt
  1660. Oberon12.Scn.Fnt Oberon12b.Scn.Fnt Oberon12i.Scn.Fnt
  1661. Oberon14.Scn.Fnt Oberon14b.Scn.Fnt Oberon14i.Scn.Fnt
  1662. Oberon16.Scn.Fnt Oberon16b.Scn.Fnt Oberon16i.Scn.Fnt
  1663. Oberon20.Scn.Fnt Oberon20b.Scn.Fnt Oberon20i.Scn.Fnt
  1664. Oberon24.Scn.Fnt Oberon24b.Scn.Fnt Oberon24i.Scn.Fnt
  1665. Syntax8.Scn.Fnt Syntax8b.Scn.Fnt Syntax8i.Scn.Fnt Syntax8m.Scn.Fnt
  1666. Syntax10.Scn.Fnt Syntax10b.Scn.Fnt Syntax10i.Scn.Fnt Syntax10m.Scn.Fnt
  1667. Syntax12.Scn.Fnt Syntax12b.Scn.Fnt Syntax12i.Scn.Fnt Syntax12m.Scn.Fnt
  1668. Syntax14.Scn.Fnt Syntax14b.Scn.Fnt Syntax14i.Scn.Fnt Syntax14m.Scn.Fnt
  1669. Syntax16.Scn.Fnt Syntax16b.Scn.Fnt Syntax16i.Scn.Fnt Syntax16m.Scn.Fnt
  1670. Syntax20.Scn.Fnt Syntax20b.Scn.Fnt Syntax20i.Scn.Fnt Syntax20m.Scn.Fnt
  1671. Syntax24.Scn.Fnt Syntax24b.Scn.Fnt Syntax24i.Scn.Fnt Syntax24m.Scn.Fnt
  1672. Philus10.Scn.Fnt Philus10b.Scn.Fnt Philus12.Scn.Fnt Philus12b.Scn.Fnt
  1673. END
  1674. PACKAGE Pr3Fonts ARCHIVE "Pr3Fonts.zip" SOURCE "" DESCRIPTION "Printer Fonts (300DPI)"
  1675. Courier8.Pr3.Fnt Courier10.Pr3.Fnt Courier12.Pr3.Fnt # Courier
  1676. Greek10.Pr3.Fnt Greek12.Pr3.Fnt Greek14.Pr3.Fnt # Greek
  1677. Greek16.Pr3.Fnt Greek20.Pr3.Fnt Greek24.Pr3.Fnt
  1678. Math10.Pr3.Fnt Math12.Pr3.Fnt Math14.Pr3.Fnt # Math
  1679. Math16.Pr3.Fnt Math20.Pr3.Fnt Math24.Pr3.Fnt
  1680. Oberon8.Pr3.Fnt Oberon8b.Pr3.Fnt Oberon8i.Pr3.Fnt # Oberon
  1681. Oberon10.Pr3.Fnt Oberon10b.Pr3.Fnt Oberon10i.Pr3.Fnt
  1682. Oberon12.Pr3.Fnt Oberon12b.Pr3.Fnt Oberon12i.Pr3.Fnt
  1683. Oberon14.Pr3.Fnt Oberon14b.Pr3.Fnt Oberon14i.Pr3.Fnt
  1684. Oberon16.Pr3.Fnt Oberon16b.Pr3.Fnt Oberon16i.Pr3.Fnt
  1685. Oberon20.Pr3.Fnt Oberon20b.Pr3.Fnt Oberon20i.Pr3.Fnt
  1686. Oberon24.Pr3.Fnt Oberon24b.Pr3.Fnt Oberon24i.Pr3.Fnt
  1687. Syntax8.Pr3.Fnt Syntax8b.Pr3.Fnt Syntax8i.Pr3.Fnt Syntax8m.Pr3.Fnt # Syntax
  1688. Syntax10.Pr3.Fnt Syntax10b.Pr3.Fnt Syntax10i.Pr3.Fnt Syntax10m.Pr3.Fnt
  1689. Syntax12.Pr3.Fnt Syntax12b.Pr3.Fnt Syntax12i.Pr3.Fnt Syntax12m.Pr3.Fnt
  1690. Syntax14.Pr3.Fnt Syntax14b.Pr3.Fnt Syntax14i.Pr3.Fnt Syntax14m.Pr3.Fnt
  1691. Syntax16.Pr3.Fnt Syntax16b.Pr3.Fnt Syntax16i.Pr3.Fnt Syntax16m.Pr3.Fnt
  1692. Syntax20.Pr3.Fnt Syntax20b.Pr3.Fnt Syntax20i.Pr3.Fnt Syntax20m.Pr3.Fnt
  1693. Syntax24.Pr3.Fnt Syntax24b.Pr3.Fnt Syntax24i.Pr3.Fnt Syntax24m.Pr3.Fnt
  1694. END
  1695. PACKAGE Pr6Fonts ARCHIVE "Pr6Fonts.zip" SOURCE "" DESCRIPTION "Printer Fonts (600DPI)"
  1696. Courier8.Pr6.Fnt Courier10.Pr6.Fnt Courier12.Pr6.Fnt # Courier
  1697. Math10.Pr6.Fnt Math12.Pr6.Fnt Math14.Pr6.Fnt # Math
  1698. Math16.Pr6.Fnt Math20.Pr6.Fnt Math24.Pr6.Fnt
  1699. Oberon8.Pr6.Fnt Oberon8b.Pr6.Fnt Oberon8i.Pr6.Fnt # Oberon
  1700. Oberon10.Pr6.Fnt Oberon10b.Pr6.Fnt Oberon10i.Pr6.Fnt
  1701. Oberon12.Pr6.Fnt Oberon12b.Pr6.Fnt Oberon12i.Pr6.Fnt
  1702. Oberon14.Pr6.Fnt Oberon14b.Pr6.Fnt Oberon14i.Pr6.Fnt
  1703. Oberon16.Pr6.Fnt Oberon16b.Pr6.Fnt Oberon16i.Pr6.Fnt
  1704. Oberon20.Pr6.Fnt Oberon20b.Pr6.Fnt Oberon20i.Pr6.Fnt
  1705. Oberon24.Pr6.Fnt Oberon24b.Pr6.Fnt Oberon24i.Pr6.Fnt
  1706. END