├── .codacy.yml ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .gitmodules ├── ACKNOWLEDGEMENTS ├── CONTRIBUTING.md ├── LEGAL ├── LICENSE ├── LICENSE.Author ├── LICENSE.GPL ├── LICENSE.LGPL ├── Makefile.in ├── README.md ├── acinclude.m4 ├── aclocal.m4 ├── arch ├── .gitignore ├── .unmaintained │ ├── all-freebsd │ │ └── kernel │ │ │ ├── cpu_i386.h │ │ │ └── mmakefile.src │ ├── all-netbsd │ │ └── kernel │ │ │ ├── cpu_i386.h │ │ │ └── mmakefile.src │ ├── all-openbsd │ │ └── kernel │ │ │ ├── cpu_i386.h │ │ │ └── mmakefile.src │ ├── amiga │ │ ├── boot │ │ │ ├── arosboot.config │ │ │ ├── arosboot.doc │ │ │ ├── boot.h │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── ils.c │ │ │ ├── ils.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── mmakefile │ │ │ ├── printresmodules.c │ │ │ ├── showvecs.c │ │ │ └── version.h │ │ ├── graphics_driver.c │ │ ├── intuition_driver.c │ │ ├── mmakefile │ │ └── workbench │ │ │ └── hidds │ │ │ └── graphics │ │ │ └── intuition │ │ │ ├── BM_Class.c │ │ │ ├── GraphicsClass.c │ │ │ ├── graphics_amiga_intui_init.c │ │ │ ├── graphics_intern.h │ │ │ ├── include │ │ │ └── graphics-amiga-intuition.h │ │ │ ├── lib.conf │ │ │ └── mmakefile.src │ ├── arm-all │ │ ├── exec │ │ │ ├── arm_exec_internal.h │ │ │ ├── cache.c │ │ │ ├── cause.c │ │ │ ├── core.c │ │ │ ├── detect_memory.c │ │ │ ├── detect_memory_handlers.S │ │ │ ├── disable.c │ │ │ ├── enable.c │ │ │ ├── idletask.c │ │ │ ├── init.c │ │ │ ├── ints.S │ │ │ ├── mmakefile.src │ │ │ ├── offsets.c │ │ │ ├── preparecontext.c │ │ │ ├── rawputchar.c │ │ │ ├── set_sp.S │ │ │ ├── setsr.c │ │ │ ├── superstate.S │ │ │ ├── supervisor.S │ │ │ ├── switch.c │ │ │ ├── switchtouser.S │ │ │ ├── sys_dispatch.c │ │ │ ├── sys_swi_handler.S │ │ │ ├── tools.c │ │ │ └── tools_asm.S │ │ └── include │ │ │ ├── aros │ │ │ ├── core.h │ │ │ ├── machine.h │ │ │ └── machine.i │ │ │ ├── asm │ │ │ ├── cpu.h │ │ │ ├── irq.h │ │ │ ├── linkage.h │ │ │ └── registers.h │ │ │ ├── exec │ │ │ └── ptrace.h │ │ │ ├── mmakefile.src │ │ │ └── sigcore.h │ ├── dummy │ │ ├── cachecleare.c │ │ ├── cacheclearu.c │ │ ├── cachecontrol.c │ │ ├── cachepostdma.c │ │ ├── cachepredma.c │ │ ├── disable.c │ │ ├── dispatch.c │ │ ├── enable.c │ │ ├── exception.c │ │ ├── forbid.c │ │ ├── getcc.c │ │ ├── permit.c │ │ ├── runprocess.c │ │ ├── setsr.c │ │ ├── stackswap.c │ │ ├── superstate.c │ │ ├── switch.c │ │ └── userstate.c │ ├── generic │ │ ├── README │ │ └── hidd │ │ │ ├── parallel │ │ │ ├── ParallelClass.c │ │ │ ├── ParallelUnitClass.c │ │ │ ├── lib.conf │ │ │ ├── parallel_init.c │ │ │ └── parallel_intern.h │ │ │ └── serial │ │ │ ├── SerialClass.c │ │ │ ├── SerialUnitClass.c │ │ │ ├── lib.conf │ │ │ ├── serial_init.c │ │ │ └── serial_intern.h │ ├── hidd │ │ ├── activescreen.c │ │ └── unused_planar_funcs.c │ ├── m68k-emul │ │ ├── cache.c │ │ ├── cachecleare.s │ │ ├── cacheclearu.s │ │ ├── cachecontrol.s │ │ ├── cachepostdma.s │ │ ├── cachepredma.s │ │ ├── clib │ │ │ ├── longjmp.s │ │ │ ├── mmakefile.src │ │ │ └── setjmp.s │ │ ├── disable.c │ │ ├── disable.s │ │ ├── dispatch.s │ │ ├── dist.src │ │ ├── enable.c │ │ ├── enable.s │ │ ├── exception.c │ │ ├── exception.s │ │ ├── exec │ │ │ ├── execstubs.s │ │ │ └── mmakefile.src │ │ ├── forbid.c │ │ ├── forbid.s │ │ ├── geninc.c │ │ ├── getcc.s │ │ ├── init.c │ │ ├── initcore.c │ │ ├── machine.h │ │ ├── mmakefile.src │ │ ├── osints.c │ │ ├── permit.c │ │ ├── permit.s │ │ ├── preparecontext.c │ │ ├── runprocess.s │ │ ├── semaphoreglue.s │ │ ├── setsr.c │ │ ├── setsr.s │ │ ├── sigcore.h │ │ ├── special.c │ │ ├── special.s │ │ ├── stackswap.s │ │ ├── superstate.c │ │ ├── superstate.s │ │ ├── supervisor.s │ │ ├── switch.s │ │ ├── userstate.c │ │ ├── userstate.s │ │ └── utility │ │ │ ├── mmakefile.src │ │ │ ├── sdivmod32.s │ │ │ ├── smult32.s │ │ │ ├── smult64.s │ │ │ ├── udivmod32.s │ │ │ ├── umult32.s │ │ │ └── umult64.s │ ├── m68k-linux │ │ ├── alib │ │ │ ├── mmakefile.src │ │ │ └── stubs.s │ │ ├── clib │ │ │ ├── longjmp.s │ │ │ ├── mmakefile.src │ │ │ └── setjmp.s │ │ ├── exec │ │ │ ├── cache.c │ │ │ ├── execstubs.s │ │ │ ├── mmakefile.src │ │ │ └── sighandler.s │ │ ├── geninc.c │ │ ├── jmpdefs.h │ │ ├── machine.h │ │ ├── mmakefile.src │ │ ├── script.normal │ │ ├── script.so │ │ ├── sigcore.h.src │ │ └── utility │ │ │ ├── mmakefile.src │ │ │ ├── sdivmod32.s │ │ │ ├── smult32.s │ │ │ ├── smult64.s │ │ │ ├── udivmod32.s │ │ │ ├── umult32.s │ │ │ └── umult64.s │ ├── m68k-mac │ │ ├── ReadMe │ │ ├── boot │ │ │ ├── entrycode.S │ │ │ ├── entrycode2.S │ │ │ ├── linkerscript │ │ │ ├── linkerscript_test │ │ │ └── mmakefile.src │ │ ├── exec │ │ │ ├── 6x10.h │ │ │ ├── cache.c │ │ │ ├── cause.c │ │ │ ├── coldreboot.S │ │ │ ├── core.c │ │ │ ├── detect_memory.c │ │ │ ├── detect_memory_handlers.S │ │ │ ├── disable.c │ │ │ ├── enable.c │ │ │ ├── ep_info.h │ │ │ ├── execstubs.S │ │ │ ├── idletask.c │ │ │ ├── init.c │ │ │ ├── ints.S │ │ │ ├── mmakefile.src │ │ │ ├── offsets.c │ │ │ ├── pp_exec_internal.h │ │ │ ├── preparecontext.c │ │ │ ├── rawputchar.c │ │ │ ├── screen.c │ │ │ ├── setsr.S │ │ │ ├── stackswap.S │ │ │ ├── superstate.S │ │ │ ├── supervisor.S │ │ │ ├── switch.c │ │ │ ├── switchtouser.S │ │ │ ├── sys_dispatch.c │ │ │ ├── sys_trap1_handler.S │ │ │ ├── traps.c │ │ │ ├── traps.h │ │ │ └── userstate.S │ │ ├── include │ │ │ ├── aros │ │ │ │ ├── core.h │ │ │ │ └── machine.i │ │ │ ├── asm │ │ │ │ ├── cpu.h │ │ │ │ ├── irq.h │ │ │ │ ├── linkage.h │ │ │ │ └── registers.h │ │ │ ├── exec │ │ │ │ └── ptrace.h │ │ │ ├── mmakefile.src │ │ │ └── sigcore.h │ │ └── mmakefile.src │ ├── m68k-pp-native │ │ ├── DEBUGGING.txt │ │ ├── Drivers │ │ │ ├── display.hidd │ │ │ │ ├── bitmap.h │ │ │ │ ├── bitmap_common.c │ │ │ │ ├── display.h │ │ │ │ ├── display_init.c │ │ │ │ ├── displayclass.c │ │ │ │ ├── displayclass.h │ │ │ │ ├── displayhw.c │ │ │ │ ├── displayhw.h │ │ │ │ ├── lib.conf │ │ │ │ ├── mmakefile.src │ │ │ │ ├── offbitmap.c │ │ │ │ └── onbitmap.c │ │ │ ├── graphics │ │ │ │ ├── graphics_init.c │ │ │ │ ├── lib.conf │ │ │ │ └── mmakefile.src │ │ │ ├── serial.hidd │ │ │ │ ├── SerialClass.c │ │ │ │ ├── SerialUnitClass.c │ │ │ │ ├── lib.conf │ │ │ │ ├── mmakefile.src │ │ │ │ ├── serial_init.c │ │ │ │ └── serial_intern.h │ │ │ └── touchscreen.hidd │ │ │ │ ├── lib.conf │ │ │ │ ├── mmakefile.src │ │ │ │ ├── touchscreen.h │ │ │ │ ├── touchscreen_init.c │ │ │ │ ├── touchscreen_interrupt.c │ │ │ │ └── touchscreenclass.c │ │ ├── POSE.txt │ │ ├── ReadMe │ │ ├── TODO │ │ ├── TxElf │ │ │ ├── TxElf.c │ │ │ ├── mmakefile.src │ │ │ └── myinternalloadseg_elf.c │ │ ├── battclock │ │ │ ├── battclock_init.c │ │ │ ├── battclock_intern.h │ │ │ ├── mmakefile.src │ │ │ ├── readbattclock.c │ │ │ └── writebattclock.c │ │ ├── boot-elf │ │ │ ├── Makefile │ │ │ ├── exec.c │ │ │ └── gfx.c │ │ ├── boot │ │ │ ├── Makefile │ │ │ ├── callback.h │ │ │ ├── exec.c │ │ │ ├── exec.pbm │ │ │ ├── exec.rco │ │ │ ├── exec.rcp │ │ │ ├── execRsc.h │ │ │ ├── gfx.c │ │ │ └── machine.i │ │ ├── build-rom │ │ │ ├── entrycode.S │ │ │ ├── linkerscript │ │ │ └── mmakefile.src │ │ ├── clib │ │ │ ├── longjmp.s │ │ │ ├── mmakefile.src │ │ │ └── setjmp.s │ │ ├── dos │ │ │ ├── aros.c │ │ │ ├── boot.c │ │ │ ├── dosboot.c │ │ │ ├── hidds.c │ │ │ └── mmakefile.src │ │ ├── exec │ │ │ ├── cache.c │ │ │ ├── cause.c │ │ │ ├── coldreboot.S │ │ │ ├── core.c │ │ │ ├── detect_memory.c │ │ │ ├── detect_memory_handlers.S │ │ │ ├── disable.c │ │ │ ├── enable.c │ │ │ ├── execstubs.S │ │ │ ├── idletask.c │ │ │ ├── init.c │ │ │ ├── ints.S │ │ │ ├── mmakefile.src │ │ │ ├── offsets.c │ │ │ ├── pp_exec_internal.h │ │ │ ├── preparecontext.c │ │ │ ├── rawputchar.c │ │ │ ├── setsr.S │ │ │ ├── stackswap.S │ │ │ ├── superstate.S │ │ │ ├── supervisor.S │ │ │ ├── switch.c │ │ │ ├── switchtouser.S │ │ │ ├── sys_dispatch.c │ │ │ ├── sys_trap1_handler.S │ │ │ ├── traps.c │ │ │ ├── traps.h │ │ │ └── userstate.S │ │ ├── include │ │ │ ├── aros │ │ │ │ ├── core.h │ │ │ │ ├── machine.h │ │ │ │ └── machine.i │ │ │ ├── asm │ │ │ │ ├── cpu.h │ │ │ │ ├── irq.h │ │ │ │ ├── linkage.h │ │ │ │ └── registers.h │ │ │ ├── exec │ │ │ │ └── ptrace.h │ │ │ ├── mmakefile.src │ │ │ └── sigcore.h │ │ ├── libgcc1 │ │ │ ├── A_LIRE │ │ │ ├── Makefile │ │ │ ├── _addsubdf3.s │ │ │ ├── _addsubsf3.s │ │ │ ├── _divdf3.s │ │ │ ├── _divmodsi3.s │ │ │ ├── _divsf3.s │ │ │ ├── _eqdf2.s │ │ │ ├── _eqsf2.s │ │ │ ├── _extend.s │ │ │ ├── _extendsfdf2.s │ │ │ ├── _fixdfsi.s │ │ │ ├── _fixsfsi.s │ │ │ ├── _floatsidf.s │ │ │ ├── _floatsisf.s │ │ │ ├── _gedf2.s │ │ │ ├── _gesf2.s │ │ │ ├── _gtdf2.s │ │ │ ├── _gtsf2.s │ │ │ ├── _ledf2.s │ │ │ ├── _lesf2.s │ │ │ ├── _ltdf2.s │ │ │ ├── _ltsf2.s │ │ │ ├── _muldf3.s │ │ │ ├── _mulsf3.s │ │ │ ├── _mulsi3.s │ │ │ ├── _nedf2.s │ │ │ ├── _negdf2.s │ │ │ ├── _negsf2.s │ │ │ ├── _nesf2.s │ │ │ ├── _normdf.s │ │ │ ├── _normsf.s │ │ │ ├── _truncdfsf2.s │ │ │ ├── _udivmodsi3.s │ │ │ └── mmakefile.src │ │ ├── loader │ │ │ ├── Makefile │ │ │ ├── callback.h │ │ │ ├── loader.c │ │ │ ├── loader.pbm │ │ │ ├── loader.rco │ │ │ ├── loader.rcp │ │ │ ├── loaderRsc.h │ │ │ ├── machine.i │ │ │ └── util.S │ │ ├── mlib │ │ │ ├── dummy.c │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ └── xcopilotpatch │ │ │ ├── README │ │ │ └── memory.c │ ├── morphos │ │ ├── Include │ │ │ ├── aros │ │ │ │ ├── amiga.h │ │ │ │ ├── asmcall.h │ │ │ │ ├── bigendianio.h │ │ │ │ ├── config.h │ │ │ │ ├── debug.h │ │ │ │ ├── libcall.h │ │ │ │ ├── machine.h │ │ │ │ ├── macros.h │ │ │ │ ├── options.h │ │ │ │ └── system.h │ │ │ ├── dos │ │ │ │ ├── bptr.h │ │ │ │ └── dosextens.h │ │ │ ├── exec │ │ │ │ ├── lists.h │ │ │ │ └── types.h │ │ │ ├── gadgets │ │ │ │ ├── aroscheckbox.h │ │ │ │ ├── aroscycle.h │ │ │ │ ├── aroslist.h │ │ │ │ ├── aroslistview.h │ │ │ │ ├── arosmx.h │ │ │ │ └── arospalette.h │ │ │ ├── intuition │ │ │ │ ├── classusr.h │ │ │ │ ├── gadgetclass.h │ │ │ │ └── imageclass.h │ │ │ ├── libcore │ │ │ │ ├── base.h │ │ │ │ ├── compiler.h │ │ │ │ ├── libheader.c │ │ │ │ └── libtail.c │ │ │ ├── libraries │ │ │ │ ├── asl.h │ │ │ │ ├── gadtools.h │ │ │ │ └── reqtools.h │ │ │ ├── mmakefile │ │ │ └── proto │ │ │ │ ├── alib.h │ │ │ │ └── arossupport.h │ │ └── mmakefile.src │ └── ppc-native │ │ ├── boot │ │ ├── apus-amiboot.readme │ │ ├── bin2c.exe │ │ ├── bootmesg │ │ ├── bootstrap.c │ │ ├── bootstrap.h │ │ ├── compile │ │ ├── linuxboot.c │ │ ├── linuxboot.h │ │ ├── ppc_boot.c │ │ ├── startup.o │ │ └── startup.s │ │ ├── exec │ │ ├── alloctrap.c │ │ ├── cachecleare.s │ │ ├── cacheclearu.s │ │ ├── cachecontrol.s │ │ ├── cachepostdma.s │ │ ├── disable.s │ │ ├── enable.s │ │ ├── exception_vectors.s │ │ ├── forbid.s │ │ ├── freetrap.c │ │ ├── getcc.s │ │ ├── mmakefile.src │ │ ├── permit.s │ │ ├── setsr.s │ │ ├── special.s │ │ ├── superstate.s │ │ ├── supervisor.s │ │ └── userstate.s │ │ ├── geninc.c │ │ ├── machine.h │ │ ├── macros.s │ │ └── mmakefile.src ├── aarch64-all │ └── include │ │ ├── .gitignore │ │ ├── aros │ │ ├── atomic.h │ │ ├── atomic_v8.h │ │ ├── cpu.h │ │ ├── cpucontext.h │ │ └── fenv.h │ │ ├── asm │ │ └── mmu.h │ │ └── mmakefile.src ├── all-android │ ├── README.txt │ ├── bootstrap │ │ ├── android.h │ │ ├── app │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.properties │ │ │ ├── default.properties.in │ │ │ ├── mmakefile │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── aros │ │ │ │ └── bootstrap │ │ │ │ ├── AROSActivity.java │ │ │ │ ├── AROSBootstrap.java │ │ │ │ ├── DisplayServer.java │ │ │ │ ├── LandscapeActivity.java │ │ │ │ └── PortraitActivity.java │ │ ├── filesystem.c │ │ ├── kickstart.c │ │ ├── kputc.c │ │ ├── main.c │ │ ├── make.opts │ │ ├── mmakefile.src │ │ ├── runtime.c │ │ └── ui.c │ ├── filesys │ │ └── emul_handler │ │ │ ├── emul_dir.c │ │ │ └── mmakefile.src │ ├── hidd │ │ └── androidgfx │ │ │ ├── android_kbdclass.c │ │ │ ├── android_keyboard.h │ │ │ ├── android_mouse.h │ │ │ ├── android_mouseclass.c │ │ │ ├── android_server.c │ │ │ ├── android_server.h │ │ │ ├── androidgfx.conf │ │ │ ├── androidgfx_bitmap.h │ │ │ ├── androidgfx_bitmapclass.c │ │ │ ├── androidgfx_hidd.h │ │ │ ├── androidgfx_hiddclass.c │ │ │ ├── androidgfx_intern.h │ │ │ ├── mmakefile.src │ │ │ └── startup.c │ ├── kernel │ │ ├── _displayalert.c │ │ ├── displayalert.c │ │ ├── getpagesize.c │ │ ├── kernel_android.h │ │ ├── kernel_panic.c │ │ ├── mmakefile.src │ │ └── sigcore.i386.h │ └── mmakefile.src ├── all-darwin │ ├── README.txt │ ├── boot │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── bootstrap │ │ └── make.opts │ ├── exec │ │ └── make.opts │ ├── hostdisk │ │ ├── geometry.c │ │ └── mmakefile.src │ ├── kernel │ │ ├── cpu_arm.h │ │ ├── cpu_i386.h │ │ ├── cpu_ppc.h │ │ ├── cpu_x86_64.h │ │ ├── make.opts │ │ └── mmakefile.src │ └── mmakefile ├── all-hosted │ ├── bootstrap │ │ ├── bootstrap.c │ │ ├── bootstrap.h │ │ ├── elf_io.c │ │ ├── elf_io.h │ │ ├── filesystem.c │ │ ├── filesystem.h │ │ ├── hostinterface.c │ │ ├── kickstart.c │ │ ├── kickstart.h │ │ ├── log.c │ │ ├── log.h │ │ ├── main.c │ │ ├── memory.c │ │ ├── memory.h │ │ ├── mmakefile.src │ │ ├── runtime.c │ │ ├── shutdown.c │ │ ├── shutdown.h │ │ ├── support.c │ │ ├── support.h │ │ └── ui.c │ ├── devs │ │ └── hostdisk │ │ │ ├── automount.c │ │ │ ├── hostdisk.conf │ │ │ ├── hostdisk.txt │ │ │ ├── hostdisk_device.c │ │ │ ├── hostdisk_device.h │ │ │ ├── hostdisk_host.c │ │ │ ├── hostdisk_host.h │ │ │ └── mmakefile.src │ ├── filesys │ │ └── emul_handler │ │ │ ├── boot.c │ │ │ ├── emul.conf │ │ │ ├── emul_handler.c │ │ │ ├── emul_host.c │ │ │ ├── emul_init.c │ │ │ ├── emul_intern.h │ │ │ ├── filenames.c │ │ │ └── mmakefile.src │ ├── hidd │ │ ├── sdl │ │ │ ├── event.c │ │ │ ├── icon.h │ │ │ ├── icon.png │ │ │ ├── keymap.c │ │ │ ├── mmakefile.src │ │ │ ├── sdl_hostlib.c │ │ │ ├── sdl_hostlib.h │ │ │ ├── sdl_init.c │ │ │ ├── sdl_intern.h │ │ │ ├── sdl_kbdclass.c │ │ │ ├── sdl_mouseclass.c │ │ │ ├── sdlgfx_bitmapclass.c │ │ │ ├── sdlgfx_hiddclass.c │ │ │ └── startup.c │ │ └── x11 │ │ │ ├── alt-nb-x11-keycode2rawkey.table │ │ │ ├── alt-x11-keycode2rawkey.table │ │ │ ├── def-x11-keycode2rawkey.table │ │ │ ├── disk_startup.c │ │ │ ├── icon.h │ │ │ ├── icon.png │ │ │ ├── icon.readme │ │ │ ├── icons │ │ │ └── Gorilla │ │ │ │ ├── X11.info.src │ │ │ │ ├── X11.png │ │ │ │ └── mmakefile.src │ │ │ ├── mac-x11-keycode2rawkey.table │ │ │ ├── makexkeytable.c │ │ │ ├── mmakefile.src │ │ │ ├── startup.c │ │ │ ├── x11.c │ │ │ ├── x11.h │ │ │ ├── x11_class.h │ │ │ ├── x11_clipboard.c │ │ │ ├── x11_debug.h │ │ │ ├── x11_hostlib.c │ │ │ ├── x11_hostlib.h │ │ │ ├── x11_init.c │ │ │ ├── x11_kbdclass.c │ │ │ ├── x11_keytable-en_gb.c │ │ │ ├── x11_keytable-en_us.c │ │ │ ├── x11_keytable.h │ │ │ ├── x11_keytable_default.c │ │ │ ├── x11_keytable_german.c │ │ │ ├── x11_keytable_italian.c │ │ │ ├── x11_keytable_template.c │ │ │ ├── x11_mouseclass.c │ │ │ ├── x11_support.c │ │ │ ├── x11_types.h │ │ │ ├── x11_xshm.c │ │ │ ├── x11_xshm.h │ │ │ ├── x11gfx.conf │ │ │ ├── x11gfx_bitmap.h │ │ │ ├── x11gfx_bitmapclass.c │ │ │ ├── x11gfx_bitmapclass.h │ │ │ ├── x11gfx_fullscreen.c │ │ │ ├── x11gfx_fullscreen.h │ │ │ ├── x11gfx_hiddclass.c │ │ │ ├── x11gfx_offbitmap.c │ │ │ └── x11gfx_onbitmap.c │ ├── hostlib │ │ ├── close.c │ │ ├── dropinterface.c │ │ ├── freeerrorstr.c │ │ ├── getinterface.c │ │ ├── getpointer.c │ │ ├── hostlib.conf │ │ ├── hostlib_init.c │ │ ├── hostlib_intern.h │ │ ├── lock.c │ │ ├── mmakefile.src │ │ ├── open.c │ │ └── unlock.c │ ├── libs │ │ └── hostgl │ │ │ ├── .gitignore │ │ │ ├── glx_hostlib.c │ │ │ ├── glx_hostlib.h │ │ │ ├── hostgl_ctx_manager.c │ │ │ ├── hostgl_ctx_manager.h │ │ │ ├── hostgl_funcs.c │ │ │ ├── hostgl_funcs.h │ │ │ ├── hostgl_gl_api.c │ │ │ ├── hostgl_glacreatecontext.c │ │ │ ├── hostgl_gladestroycontext.c │ │ │ ├── hostgl_glagetconfig.c │ │ │ ├── hostgl_glagetcurrentcontext.c │ │ │ ├── hostgl_glagetopenglstatetrackerapi.c │ │ │ ├── hostgl_glagetprocaddress.c │ │ │ ├── hostgl_glamakecurrent.c │ │ │ ├── hostgl_glasetrast.c │ │ │ ├── hostgl_glaswapbuffers.c │ │ │ ├── hostgl_renderer_config.h │ │ │ ├── hostgl_support.c │ │ │ ├── hostgl_support.h │ │ │ ├── hostgl_types.h │ │ │ ├── mmakefile.src │ │ │ ├── x11_hostlib.c │ │ │ └── x11_hostlib.h │ └── mmakefile ├── all-ios │ ├── README.txt │ ├── bootstrap │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── appdelegate.h │ │ ├── appdelegate.m │ │ ├── appsign.sh │ │ ├── filesystem.m │ │ ├── kickstart.c │ │ ├── main.m │ │ ├── make.opts │ │ ├── mkplist.sh │ │ ├── mmakefile.src │ │ └── ui.m │ ├── hidd │ │ └── uikit │ │ │ ├── alertdelegate.h │ │ │ ├── alertdelegate.m │ │ │ ├── displaycontroller.h │ │ │ ├── displaycontroller.m │ │ │ ├── displaywindow.h │ │ │ ├── displaywindow.m │ │ │ ├── eventtask.c │ │ │ ├── mmakefile.src │ │ │ ├── native_api.h │ │ │ ├── native_api.m │ │ │ ├── startup.c │ │ │ ├── uikit.conf │ │ │ ├── uikit_bitmap.h │ │ │ ├── uikit_bitmapclass.c │ │ │ ├── uikit_hidd.h │ │ │ ├── uikit_hiddclass.c │ │ │ └── uikit_intern.h │ └── kernel │ │ ├── _displayalert.c │ │ └── mmakefile.src ├── all-linux │ ├── android │ │ └── exec │ │ │ └── make.opts │ ├── boot │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── bootstrap │ │ ├── malloc.c │ │ ├── mmakefile.src │ │ └── preboot.c │ ├── hidd │ │ ├── linuxfb │ │ │ ├── linuxfbgfx.conf │ │ │ ├── linuxfbgfx_bitmap.h │ │ │ ├── linuxfbgfx_bitmapclass.c │ │ │ ├── linuxfbgfx_hiddclass.c │ │ │ ├── linuxfbgfx_init.c │ │ │ ├── linuxfbgfx_intern.h │ │ │ ├── linuxfbgfx_startup.c │ │ │ ├── mmakefile.src │ │ │ └── table2c.c │ │ ├── linuxinput │ │ │ ├── .gitignore │ │ │ ├── kbdclass.c │ │ │ ├── linuxinput.conf │ │ │ ├── linuxinput_init.c │ │ │ ├── linuxinput_inputtask.c │ │ │ ├── linuxinput_intern.h │ │ │ ├── mmakefile.src │ │ │ ├── mouseclass.c │ │ │ └── startup.c │ │ └── pcilinux │ │ │ ├── driverclass.c │ │ │ ├── mmakefile.src │ │ │ ├── pci.h │ │ │ ├── pcilinux.conf │ │ │ ├── pcilinux_init.c │ │ │ └── syscall.h │ ├── hostdisk │ │ ├── geometry.c │ │ └── mmakefile.src │ ├── kernel │ │ ├── cpu_arm.h │ │ ├── cpu_i386.h │ │ ├── cpu_ppc.h │ │ ├── cpu_x86_64.h │ │ ├── mksigcore.sh │ │ ├── mmakefile.src │ │ └── sigcore.h.i386.src │ ├── mmakefile.src │ └── processor │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── processor_hostcpu.c │ │ └── processor_hostlib.c ├── all-mingw32 │ ├── README.txt │ ├── battclock │ │ ├── battclock_init.c │ │ ├── battclock_intern.h │ │ ├── mmakefile.src │ │ ├── readbattclock.c │ │ └── writebattclock.c │ ├── boot │ │ ├── AROSBootstrap.conf │ │ └── mmakefile.src │ ├── bootstrap │ │ ├── hostinterface.c │ │ ├── hostlib.c │ │ ├── hostlib.h │ │ ├── icon.ico │ │ ├── icon.rc │ │ ├── make.opts │ │ ├── memory.c │ │ ├── mmakefile.src │ │ ├── sharedmem.h │ │ ├── shutdown.c │ │ ├── support.c │ │ ├── ui.c │ │ └── unicode.h │ ├── bsdsocket │ │ ├── accept.c │ │ ├── bind.c │ │ ├── bsdsocket.conf │ │ ├── bsdsocket_init.c │ │ ├── bsdsocket_intern.h │ │ ├── bsdsocket_open.c │ │ ├── bsdsocket_util.c │ │ ├── bsdsocket_util.h │ │ ├── closesocket.c │ │ ├── connect.c │ │ ├── dup2socket.c │ │ ├── errno.c │ │ ├── getdtablesize.c │ │ ├── gethostbyaddr.c │ │ ├── gethostbyname.c │ │ ├── gethostid.c │ │ ├── gethostname.c │ │ ├── getnetbyaddr.c │ │ ├── getnetbyname.c │ │ ├── getpeername.c │ │ ├── getprotobyname.c │ │ ├── getprotobynumber.c │ │ ├── getservbyname.c │ │ ├── getservbyport.c │ │ ├── getsocketevents.c │ │ ├── getsockname.c │ │ ├── getsockopt.c │ │ ├── host_socket.c │ │ ├── host_socket.h │ │ ├── inet_addr.c │ │ ├── inet_lnaof.c │ │ ├── inet_makeaddr.c │ │ ├── inet_netof.c │ │ ├── inet_network.c │ │ ├── inet_ntoa.c │ │ ├── ioctlsocket.c │ │ ├── listen.c │ │ ├── mmakefile.src │ │ ├── netdb_util.c │ │ ├── netdb_util.h │ │ ├── obtainsocket.c │ │ ├── recv.c │ │ ├── recvfrom.c │ │ ├── recvmsg.c │ │ ├── releasecopyofsocket.c │ │ ├── releasesocket.c │ │ ├── send.c │ │ ├── sendmsg.c │ │ ├── sendto.c │ │ ├── seterrnoptr.c │ │ ├── setsocketsignals.c │ │ ├── setsockopt.c │ │ ├── shutdown.c │ │ ├── socket.c │ │ ├── socket_intern.h │ │ ├── socketbasetaglist.c │ │ ├── vsyslog.c │ │ ├── waitselect.c │ │ └── winsock2.h │ ├── devs │ │ └── hostdisk │ │ │ ├── hostdisk_host.c │ │ │ ├── hostdisk_host.h │ │ │ └── mmakefile.src │ ├── exec │ │ ├── cachecleare.c │ │ ├── coldreboot.c │ │ ├── exec_platform.h │ │ ├── mmakefile.src │ │ ├── platform_init.c │ │ └── shutdowna.c │ ├── filesys │ │ └── emul_handler │ │ │ ├── emul_handler.rc │ │ │ ├── emul_handler_native.c │ │ │ ├── emul_host.c │ │ │ ├── emul_host.h │ │ │ ├── emul_host_mingw32.c │ │ │ ├── emul_winapi.h │ │ │ ├── filenames.c │ │ │ └── mmakefile.src │ ├── hidd │ │ └── wingdi │ │ │ ├── disk_startup.c │ │ │ ├── e0keytable.h │ │ │ ├── gdi.h │ │ │ ├── gdi_hostlib.c │ │ │ ├── gdi_hostlib.h │ │ │ ├── gdi_native.c │ │ │ ├── icons │ │ │ └── Gorilla │ │ │ │ ├── GDI.info.src │ │ │ │ ├── GDI.png │ │ │ │ └── mmakefile.src │ │ │ ├── mmakefile.src │ │ │ ├── startup.c │ │ │ ├── stdkeytable.h │ │ │ ├── winapi.h │ │ │ ├── wingdi.conf │ │ │ ├── wingdi.rc │ │ │ ├── wingdi_bitmap.h │ │ │ ├── wingdi_bitmapclass.c │ │ │ ├── wingdi_hidd.h │ │ │ ├── wingdi_hiddclass.c │ │ │ ├── wingdi_kbdclass.c │ │ │ └── wingdi_mouseclass.c │ ├── hostlib │ │ ├── freeerrorstr.c │ │ └── mmakefile.src │ ├── include │ │ ├── mingw32 │ │ │ └── aros │ │ │ │ └── irq.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── _displayalert.c │ │ ├── addirqhandler.c │ │ ├── cli.c │ │ ├── cpu_arm.h │ │ ├── cpu_i386.c │ │ ├── cpu_i386.h │ │ ├── cpu_x86_64.c │ │ ├── cpu_x86_64.h │ │ ├── host_debug.c │ │ ├── host_intern.h │ │ ├── host_intr.c │ │ ├── host_mmu.c │ │ ├── hostinterface.h │ │ ├── issuper.c │ │ ├── kernel.rc │ │ ├── kernel_arch.h │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_debug.c │ │ ├── kernel_intern.h │ │ ├── kernel_intr.c │ │ ├── kernel_startup.c │ │ ├── kernel_traps.h │ │ ├── leaveinterrupt_i386.s │ │ ├── leaveinterrupt_x86_64.s │ │ ├── maygetchar.c │ │ ├── mmakefile.src │ │ ├── obtaininput.c │ │ ├── putchar.c │ │ ├── setprotection.c │ │ └── sti.c │ ├── processor │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── processor_hostcpu.c │ │ ├── processor_hostlib.c │ │ └── wincpu.rc │ ├── testboot │ │ ├── mmakefile.src │ │ └── testboot.c │ └── timer │ │ ├── mmakefile.src │ │ ├── timer_init.c │ │ └── timer_platform.h ├── all-native │ ├── acpica │ │ ├── .gitignore │ │ ├── acpica-unix-20250807-aros.diff │ │ ├── acpica.conf │ │ ├── acpica_intern.h │ │ ├── acpios_aros.c │ │ ├── include │ │ │ └── acpica.h │ │ └── mmakefile.src │ ├── acpitool │ │ ├── .gitignore │ │ ├── icons │ │ │ ├── .gitignore │ │ │ ├── ACPITool.info.src │ │ │ ├── ACPITool_Gorilla.png │ │ │ └── mmakefile.src │ │ ├── locale.c │ │ ├── locale.h │ │ ├── main.c │ │ ├── mmakefile.src │ │ ├── parsers.c │ │ └── parsers.h │ ├── boot │ │ └── iso │ │ │ ├── .gitignore │ │ │ └── mmakefile.src │ ├── bootconsole │ │ ├── clear.c │ │ ├── common.c │ │ ├── console.h │ │ ├── font8x14.c │ │ ├── include │ │ │ └── bootconsole.h │ │ ├── init_multiboot.c │ │ ├── init_multiboot2.c │ │ ├── init_taglist.c │ │ ├── mmakefile.src │ │ ├── screen_fb.c │ │ ├── screen_text.c │ │ ├── serial_16450.c │ │ ├── serial_16450_unused.c │ │ ├── util_fb.c │ │ └── vars.c │ ├── c │ │ ├── ACPIInfo.c │ │ └── mmakefile.src │ ├── econsole │ │ ├── .gitignore │ │ ├── econsole.c │ │ ├── econsole.conf │ │ └── mmakefile.src │ ├── efi │ │ ├── efi.conf │ │ ├── efi_init.c │ │ ├── efi_intern.h │ │ ├── findconfigtable.c │ │ └── mmakefile.src │ ├── hidd │ │ └── vgagfx │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── vgagfx.conf │ │ │ ├── vgagfx_bitmap.h │ │ │ ├── vgagfx_bitmapclass.c │ │ │ ├── vgagfx_hidd.h │ │ │ ├── vgagfx_hiddclass.c │ │ │ ├── vgagfx_init.c │ │ │ ├── vgagfx_intern.h │ │ │ ├── vgagfx_support.c │ │ │ └── vgagfx_support.h │ ├── kernel │ │ ├── boot_utils.c │ │ ├── boot_utils.h │ │ ├── kernel_bootmem.c │ │ ├── kernel_bootmem.h │ │ ├── mmakefile.src │ │ ├── tags.c │ │ └── tags.h │ └── mmakefile.src ├── all-pc │ ├── _notes │ │ └── x86-cpu-vectors.txt │ ├── arossupport │ │ ├── mmakefile.src │ │ └── vkprintf.c │ ├── battclock │ │ ├── battclock_init.c │ │ ├── battclock_intern.h │ │ ├── cmos.h │ │ ├── mmakefile.src │ │ ├── readbattclock.c │ │ └── writebattclock.c │ ├── boot │ │ ├── grub-tools │ │ │ ├── .gitignore │ │ │ ├── Install-grub.c │ │ │ └── mmakefile.src │ │ ├── grub │ │ │ ├── README.AROS │ │ │ ├── grub-0.97-aros.diff │ │ │ └── mmakefile.src │ │ ├── grub2-aros │ │ │ ├── grub-2.12-aros.diff │ │ │ └── mmakefile.src │ │ ├── grub2-host │ │ │ ├── mmakefile.src │ │ │ └── unicode.pf2 │ │ ├── grub2-tools │ │ │ ├── Install-grub2.c │ │ │ └── mmakefile.src │ │ └── grub2_def │ ├── bootstrap │ │ ├── bootstrap.c │ │ ├── bootstrap.h │ │ ├── ldscript.lds │ │ ├── memory_io.c │ │ ├── mmakefile.src │ │ ├── multiboot1.c │ │ ├── multiboot2.c │ │ ├── support.c │ │ ├── support.h │ │ ├── vesa.c │ │ ├── vesa.h │ │ └── vesa_setup.c │ ├── debug │ │ ├── .gitignore │ │ └── hyperv │ │ │ ├── .gitignore │ │ │ ├── hyperv-cpu.c │ │ │ ├── hyperv-cpu.h │ │ │ ├── hyperv-debug.c │ │ │ ├── hyperv-debug.conf │ │ │ ├── hyperv-debug_intern.h │ │ │ ├── hyperv-tasks.c │ │ │ ├── hyperv-tasks.h │ │ │ ├── mmakefile.src │ │ │ └── notes.txt │ ├── drivers │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── exec │ │ ├── exec_idle.c │ │ ├── exec_platform.h │ │ ├── exec_vlog.c │ │ ├── intserver_vblank.c │ │ ├── mmakefile.src │ │ ├── platform_init.c │ │ ├── powerstate_handlers.c │ │ └── supervisor.c │ ├── hidds │ │ ├── hidd │ │ │ ├── .gitignore │ │ │ ├── initcode.c │ │ │ ├── make.opts │ │ │ └── mmakefile.src │ │ ├── i8042 │ │ │ ├── .gitignore │ │ │ ├── e0keytable.h │ │ │ ├── i8042.conf │ │ │ ├── i8042_acpi.c │ │ │ ├── i8042_classinit.c │ │ │ ├── i8042_common.c │ │ │ ├── i8042_common.h │ │ │ ├── i8042_init.c │ │ │ ├── i8042_intern.h │ │ │ ├── i8042_kbd.h │ │ │ ├── i8042_kbdclass.c │ │ │ ├── i8042_mouse.h │ │ │ ├── i8042_mouseclass.c │ │ │ ├── i8042_mouseps2.c │ │ │ ├── keys.h │ │ │ ├── mmakefile.src │ │ │ ├── oldkeytable.h │ │ │ └── stdkeytable.h │ │ └── pcipc │ │ │ ├── mmakefile.src │ │ │ ├── pciconf1.c │ │ │ ├── pciconf2.c │ │ │ ├── pcipc.conf │ │ │ ├── pcipc.h │ │ │ ├── pcipc_deviceclass.c │ │ │ ├── pcipc_driverclass.c │ │ │ └── pcipc_init.c │ ├── hpet │ │ ├── hpet.conf │ │ ├── hpet_alloccsunit.c │ │ ├── hpet_freecsunit.c │ │ ├── hpet_getcsattrsa.c │ │ ├── hpet_getcsunitattrsa.c │ │ ├── hpet_init.c │ │ ├── hpet_intern.h │ │ └── mmakefile.src │ ├── include │ │ ├── .gitignore │ │ ├── aros │ │ │ └── irqtypes.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── _bug.c │ │ ├── _displayalert.c │ │ ├── acpi.c │ │ ├── acpi.h │ │ ├── acpi_apic.c │ │ ├── acpi_ioapic.c │ │ ├── acpi_pm.c │ │ ├── acpi_set.c │ │ ├── addirqhandler.c │ │ ├── alert_arch.h │ │ ├── alloccpumask.c │ │ ├── allocirq.c │ │ ├── apic.c │ │ ├── apic.h │ │ ├── apic_error.c │ │ ├── apic_heartbeat.c │ │ ├── apic_ia32.c │ │ ├── apic_ia32.h │ │ ├── apic_msi.c │ │ ├── bug.c │ │ ├── clearcpumask.c │ │ ├── cli.s │ │ ├── cpu_intr.c │ │ ├── cpu_traps.c │ │ ├── cpu_traps.h │ │ ├── cpu_x86.h │ │ ├── cpuinmask.c │ │ ├── displayalert.c │ │ ├── exitinterrupt.c │ │ ├── fmtalertinfo.c │ │ ├── freecpumask.c │ │ ├── getcpucount.c │ │ ├── getcpumask.c │ │ ├── getcpunumber.c │ │ ├── getirq.c │ │ ├── getsystemattr.c │ │ ├── ictl.c │ │ ├── ioapic.h │ │ ├── issuper.s │ │ ├── kernel_arch.h │ │ ├── kernel_debug.h │ │ ├── kernel_ipi.c │ │ ├── kernel_ipi.h │ │ ├── kernel_mmap.c │ │ ├── kernel_mmap.h │ │ ├── kernel_scheduler.c │ │ ├── kernel_scheduler.h │ │ ├── kernel_timer.c │ │ ├── kernel_timer.h │ │ ├── make.opts │ │ ├── maygetchar.c │ │ ├── mmakefile.src │ │ ├── modifyirq.c │ │ ├── obtaininput.c │ │ ├── pic_i8259a.c │ │ ├── pic_i8259a.h │ │ ├── platform_post.c │ │ ├── schedulecpu.c │ │ ├── segments.h │ │ ├── smp.c │ │ ├── smp.h │ │ ├── smp_exec.c │ │ ├── spininit.c │ │ ├── spinislocked.c │ │ ├── spinlock.c │ │ ├── spintrylock.c │ │ ├── spinunlock.c │ │ ├── sti.s │ │ ├── syscall.c │ │ ├── timestamp.c │ │ └── x86_syscalls.h │ ├── processor │ │ ├── .gitignore │ │ ├── getcpuinfo.c │ │ ├── mmakefile.src │ │ ├── processor_arch_intern.h │ │ ├── processor_frequency.c │ │ ├── processor_init.c │ │ └── processor_util.c │ ├── timer │ │ ├── beginio.c │ │ ├── make.opts │ │ ├── mmakefile.src │ │ ├── ticks.c │ │ ├── ticks.h │ │ ├── timer_init.c │ │ └── timer_platform.h │ ├── udis86 │ │ ├── .gitignore │ │ ├── BUILD-WINDOWS │ │ ├── BuildVS2010 │ │ │ ├── README.txt │ │ │ ├── build.proj │ │ │ ├── buildVS2010.bat │ │ │ ├── libudis86.vcxproj │ │ │ ├── libudis86.vcxproj.filters │ │ │ ├── udcli.vcxproj │ │ │ ├── udcli.vcxproj.filters │ │ │ └── udis86.sln │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── Makefile.am │ │ │ ├── manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── conf.py │ │ │ │ ├── getstarted.rst │ │ │ │ ├── index.rst │ │ │ │ ├── libudis86.rst │ │ │ │ └── static │ │ │ │ │ └── udis86.css │ │ │ └── x86 │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── avx.xml │ │ │ │ ├── optable.xml │ │ │ │ └── optable.xsl │ │ ├── libudis86 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── extern.h │ │ │ ├── syn-att.c │ │ │ ├── syn-intel.c │ │ │ ├── syn.c │ │ │ ├── syn.h │ │ │ ├── types.h │ │ │ ├── udint.h │ │ │ └── udis86.c │ │ ├── m4 │ │ │ ├── ax_compare_version.m4 │ │ │ ├── ax_prog_sphinx_version.m4 │ │ │ ├── ax_prog_yasm_version.m4 │ │ │ ├── ax_with_prog.m4 │ │ │ └── ax_with_python.m4 │ │ ├── mmakefile.src │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ ├── asmtest.sh │ │ │ ├── ud_itab.py │ │ │ └── ud_opcode.py │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── asm │ │ │ │ ├── 16 │ │ │ │ │ ├── disp.asm │ │ │ │ │ └── test16.asm │ │ │ │ ├── 32 │ │ │ │ │ ├── att.asm │ │ │ │ │ ├── att.asm.Sref │ │ │ │ │ ├── att.asm.ref │ │ │ │ │ ├── avx.asm │ │ │ │ │ ├── avx.asm.Sref │ │ │ │ │ ├── avx.asm.ref │ │ │ │ │ ├── corner.asm │ │ │ │ │ ├── corner.asm.ref │ │ │ │ │ ├── disp.asm │ │ │ │ │ ├── disp.asm.Sref │ │ │ │ │ ├── invalid_seg.asm │ │ │ │ │ ├── invalid_seg.asm.ref │ │ │ │ │ ├── obscure.asm │ │ │ │ │ ├── obscure.asm.ref │ │ │ │ │ ├── reljmp.asm │ │ │ │ │ ├── reljmp.asm.ref │ │ │ │ │ ├── sext.asm │ │ │ │ │ ├── sext.asm.ref │ │ │ │ │ └── test32.asm │ │ │ │ └── 64 │ │ │ │ │ ├── amd │ │ │ │ │ ├── invalid.asm │ │ │ │ │ └── invalid.asm.ref │ │ │ │ │ ├── avx.asm │ │ │ │ │ ├── avx.asm.ref │ │ │ │ │ ├── branch.asm │ │ │ │ │ ├── branch.asm.ref │ │ │ │ │ ├── disp.asm │ │ │ │ │ ├── disp.asm.Sref │ │ │ │ │ ├── disp.asm.ref │ │ │ │ │ ├── intel │ │ │ │ │ ├── invalid.asm │ │ │ │ │ └── invalid.asm.ref │ │ │ │ │ ├── reljmp.asm │ │ │ │ │ ├── reljmp.asm.ref │ │ │ │ │ ├── sext.asm │ │ │ │ │ ├── sext.asm.ref │ │ │ │ │ └── test64.asm │ │ │ ├── difftest.sh.in │ │ │ ├── installcheck.c │ │ │ ├── libcheck.c │ │ │ ├── oprgen.py │ │ │ ├── symresolve.c │ │ │ └── symresolve.ref │ │ ├── udcli │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── mmakefile.src │ │ │ └── udcli.c │ │ ├── udis86.h │ │ ├── udis86.pc.in │ │ └── xcode │ │ │ ├── udcli │ │ │ ├── sample_input │ │ │ └── udcli.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── udis.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── udis.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── udis.xccheckout │ ├── usb │ │ └── pciusb │ │ │ ├── make.opts │ │ │ ├── mmakefile.src │ │ │ └── pciusb_init.c │ └── utility │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── setmem_avx.c │ │ ├── setmem_pc.h │ │ └── setmem_sse.c ├── all-unix │ ├── battclock │ │ ├── battclock_init.c │ │ ├── battclock_intern.h │ │ ├── mmakefile.src │ │ └── readbattclock.c │ ├── boot │ │ ├── AROSBootstrap.conf │ │ ├── AROSBootstrap_android.conf │ │ ├── mkbootconf.sh │ │ └── mmakefile.src │ ├── bootstrap │ │ ├── hostinterface.c │ │ ├── hostlib.c │ │ ├── hostlib.h │ │ ├── kickstart.c │ │ ├── kputc.c │ │ ├── make.opts │ │ ├── memory.c │ │ ├── mmakefile.src │ │ ├── platform.h │ │ ├── preboot.c │ │ ├── shutdown.c │ │ └── support.c │ ├── devs │ │ ├── hostdisk │ │ │ ├── geometry.c │ │ │ ├── hostdisk_host.c │ │ │ ├── hostdisk_host.h │ │ │ └── mmakefile.src │ │ ├── midi │ │ │ ├── hostmidi.c │ │ │ └── mmakefile.src │ │ ├── networks │ │ │ ├── eth │ │ │ │ ├── .gitignore │ │ │ │ ├── README │ │ │ │ ├── command.c │ │ │ │ ├── eth.conf │ │ │ │ ├── eth.h │ │ │ │ ├── init.c │ │ │ │ ├── iotask.c │ │ │ │ └── mmakefile.src │ │ │ └── tap │ │ │ │ ├── README │ │ │ │ ├── command.c │ │ │ │ ├── init.c │ │ │ │ ├── iotask.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── tap.conf │ │ │ │ └── tap.h │ │ └── unixio │ │ │ ├── deviceio.c │ │ │ ├── deviceutil.c │ │ │ └── unixio_device.h │ ├── exec │ │ ├── allocmem.c │ │ ├── coldreboot.c │ │ ├── exec_platform.h │ │ ├── freemem.c │ │ ├── make.opts │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── platform_init.c │ │ └── shutdowna.c │ ├── filesys │ │ └── emul_handler │ │ │ ├── emul_dir.c │ │ │ ├── emul_host.c │ │ │ ├── emul_host.h │ │ │ ├── emul_host_unix.c │ │ │ ├── emul_unix.h │ │ │ ├── mmakefile.src │ │ │ └── unix_hints.h │ ├── hidd │ │ ├── mmakefile │ │ ├── parallel │ │ │ ├── ParallelClass.c │ │ │ ├── ParallelUnitClass.c │ │ │ ├── mmakefile.src │ │ │ ├── parallel.conf │ │ │ └── parallel_intern.h │ │ ├── serial │ │ │ ├── SerialClass.c │ │ │ ├── SerialUnitClass.c │ │ │ ├── mmakefile.src │ │ │ ├── serial.conf │ │ │ ├── serial_intern.h │ │ │ ├── unix_funcs.c │ │ │ └── unix_funcs.h │ │ └── unixio │ │ │ ├── include │ │ │ └── unixio.h │ │ │ ├── mmakefile.src │ │ │ ├── unixio.conf │ │ │ ├── unixio.h │ │ │ ├── unixio_class.c │ │ │ └── unixpkt_class.c │ ├── kernel │ │ ├── allockernelbase.c │ │ ├── allocpages.c │ │ ├── cause.c │ │ ├── cli.c │ │ ├── coretest.c │ │ ├── cpu_arm.c │ │ ├── cpu_i386.c │ │ ├── cpu_ppc.c │ │ ├── cpu_x86_64.c │ │ ├── freepages.c │ │ ├── getpagesize.c │ │ ├── hostinterface.h │ │ ├── issuper.c │ │ ├── kernel.c │ │ ├── kernel_arch.h │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_cpusupport.c │ │ ├── kernel_debug.c │ │ ├── kernel_intern.h │ │ ├── kernel_intr.c │ │ ├── kernel_startup.c │ │ ├── kernel_unix.h │ │ ├── make.opts │ │ ├── maygetchar.c │ │ ├── mmakefile.src │ │ ├── obtaininput.c │ │ ├── releaseinput.c │ │ ├── setprotection.c │ │ └── sti.c │ ├── libs │ │ └── oss │ │ │ ├── funcs.c │ │ │ ├── mmakefile.src │ │ │ ├── oss.conf │ │ │ ├── oss_init.c │ │ │ ├── oss_intern.h │ │ │ └── playossunix.c │ ├── mmakefile │ └── timer │ │ ├── mmakefile.src │ │ ├── timer_init.c │ │ └── timer_platform.h ├── arm-all │ ├── arm-aeabi │ │ ├── dcmpun.c │ │ ├── fcmpun.c │ │ ├── i2d.c │ │ ├── i2f.c │ │ ├── idiv0.S │ │ ├── idivmod.S │ │ ├── l2d.c │ │ ├── l2f.c │ │ ├── lasr.c │ │ ├── ldiv.c │ │ ├── ldiv0.S │ │ ├── ldivmod.s │ │ ├── llsl.c │ │ ├── llsr.c │ │ ├── mmakefile.src │ │ ├── softfloat.c │ │ ├── uidivmod.S │ │ ├── uldiv.c │ │ ├── uldivmod.S │ │ └── unwind.S │ ├── dos │ │ ├── mmakefile.src │ │ └── probecpu.c │ ├── exec │ │ ├── alert_cpu.c │ │ ├── execstubs-armeb.s │ │ ├── execstubs.s │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── preparecontext.c │ │ ├── stackswap-armeb.S │ │ └── stackswap.S │ ├── include │ │ ├── aros-armeb │ │ │ ├── cpu-thumb2.h │ │ │ └── cpu.h │ │ ├── aros-armel │ │ │ ├── cpu-thumb2.h │ │ │ └── cpu.h │ │ ├── aros │ │ │ ├── atomic.h │ │ │ ├── atomic_v6.h │ │ │ ├── atomic_v7.h │ │ │ ├── cpucontext.h │ │ │ ├── fenv.h │ │ │ ├── fenv_soft.h │ │ │ ├── fenv_vfp.h │ │ │ ├── genmodule-thumb2.h │ │ │ └── genmodule.h │ │ ├── asm │ │ │ ├── cp15.h │ │ │ ├── cpu.h │ │ │ ├── mmu.h │ │ │ └── mx51.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── cpu_init.c │ │ ├── createcontext.c │ │ └── mmakefile.src │ ├── posixc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── siglongjmp.s │ │ ├── sigsetjmp.s │ │ ├── vfork.s │ │ └── vfork_longjmp.s │ └── stdc │ │ ├── .gitignore │ │ ├── fenv.c │ │ ├── longjmp.s │ │ ├── mmakefile.src │ │ └── setjmp.s ├── arm-efika │ ├── boot │ │ ├── atags.h │ │ ├── boot.c │ │ ├── boot.h │ │ ├── boot.script │ │ ├── elf.c │ │ ├── elf.h │ │ ├── ldscript.lds │ │ ├── mmakefile.src │ │ ├── serialdebug.c │ │ ├── serialdebug.h │ │ └── support.c │ ├── include │ │ ├── .gitignore │ │ ├── asm │ │ │ └── imx51.h │ │ ├── hardware │ │ │ ├── mx51_tzic.h │ │ │ └── mx51_uart.h │ │ └── mmakefile.src │ └── kernel │ │ ├── issuper.c │ │ ├── kernel_arch.h │ │ ├── kernel_cpu.h │ │ ├── kernel_debug.c │ │ ├── kernel_startup.c │ │ ├── ldscript.lds │ │ ├── maygetchar.c │ │ └── mmakefile.src ├── arm-linux │ ├── exec │ │ ├── cachecleare.c │ │ └── mmakefile.src │ └── processor │ │ ├── arch_init.c │ │ ├── arch_intern.h │ │ ├── getcpuinfo.c │ │ └── mmakefile.src ├── arm-native │ ├── bus │ │ └── amba │ │ │ └── amba_init.c │ ├── ceboot │ │ ├── README.txt │ │ ├── bootmem.c │ │ ├── bootmem.h │ │ ├── bootstrap.c │ │ ├── bootstrap.h │ │ ├── elf_io.c │ │ ├── elf_io.h │ │ ├── filesystem.c │ │ ├── filesystem.h │ │ ├── hardware.c │ │ ├── hardware.h │ │ ├── mmakefile.src │ │ ├── ui.c │ │ └── winapi.h │ ├── exec │ │ ├── .gitignore │ │ ├── cachecleare.c │ │ ├── cachepredma.c │ │ ├── coldreboot.c │ │ ├── exec_idle.c │ │ ├── exec_platform.h │ │ ├── mmakefile.src │ │ ├── platform_init.c │ │ ├── superstate.c │ │ └── userstate.c │ ├── kernel │ │ ├── .gitignore │ │ ├── cli.c │ │ ├── devicetree.c │ │ ├── getcpucount.c │ │ ├── getcpumask.c │ │ ├── getcpunumber.c │ │ ├── getsystemattr.c │ │ ├── intr.c │ │ ├── intvecs.s │ │ ├── io.h │ │ ├── issuper.c │ │ ├── kernel_arch.h │ │ ├── kernel_arm.h │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_debug.c │ │ ├── kernel_execsmp.c │ │ ├── kernel_fb.h │ │ ├── kernel_intern.h │ │ ├── kernel_ipi.c │ │ ├── kernel_ipi.h │ │ ├── kernel_scheduler.c │ │ ├── kernel_startup.c │ │ ├── kernel_systimer.c │ │ ├── ldscript.lds │ │ ├── mapglobal.c │ │ ├── maygetchar.c │ │ ├── mmakefile.src │ │ ├── mmu.c │ │ ├── mmu.h │ │ ├── platform_bcm2708.c │ │ ├── platform_init.c │ │ ├── setprotection.c │ │ ├── spininit.c │ │ ├── spinislocked.c │ │ ├── spinlock.c │ │ ├── spintrylock.c │ │ ├── spinunlock.c │ │ ├── sti.c │ │ ├── syscall.c │ │ ├── tags.c │ │ ├── tls.h │ │ ├── unmapglobal.c │ │ └── virtualtophysical.c │ ├── processor │ │ ├── .gitignore │ │ ├── getcpuinfo.c │ │ ├── mmakefile.src │ │ ├── processor_arch_intern.h │ │ ├── processor_frequency.c │ │ ├── processor_init.c │ │ └── processor_util.c │ └── soc │ │ └── broadcom │ │ └── 2708 │ │ ├── .gitignore │ │ ├── gpio │ │ ├── .gitignore │ │ ├── gpio.conf │ │ ├── gpio_init.c │ │ ├── gpio_private.h │ │ └── mmakefile.src │ │ ├── hidd │ │ ├── i2c │ │ │ ├── .gitignore │ │ │ ├── i2c-bcm2708.c │ │ │ ├── i2c-bcm2708.conf │ │ │ ├── i2c-bcm2708.h │ │ │ └── mmakefile.src │ │ └── vc4gfx │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── vc4gfx.conf │ │ │ ├── vc4gfx_bitmap.h │ │ │ ├── vc4gfx_bitmapclass.c │ │ │ ├── vc4gfx_hardware.c │ │ │ ├── vc4gfx_hardware.h │ │ │ ├── vc4gfx_hdmi.c │ │ │ ├── vc4gfx_hidd.h │ │ │ ├── vc4gfx_hiddclass.c │ │ │ ├── vc4gfx_init.c │ │ │ ├── vc4gfx_memory.c │ │ │ ├── vc4gfx_onbitmap.c │ │ │ ├── vc4gfx_pixfmts.c │ │ │ └── vc4gfx_sdtv.c │ │ ├── include │ │ ├── .gitignore │ │ ├── hardware │ │ │ ├── arasan.h │ │ │ ├── bcm2708.h │ │ │ ├── bcm2708_boot.h │ │ │ ├── pl011uart.h │ │ │ ├── usb2otg.h │ │ │ └── videocore.h │ │ └── mmakefile.src │ │ ├── mbox │ │ ├── .gitignore │ │ ├── mbox.conf │ │ ├── mbox_init.c │ │ ├── mbox_private.h │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ ├── sdcard │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── sdcard_bcm2708bus.c │ │ ├── sdcard_bcm2708init.c │ │ ├── sdcard_bcm2708time.c │ │ └── sdcard_intern.h │ │ └── usb │ │ ├── poseidon │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ └── usbromstartup.c │ │ └── usb2otg │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── usb2otg.conf │ │ ├── usb2otg_core.c │ │ ├── usb2otg_device.c │ │ ├── usb2otg_hub.c │ │ ├── usb2otg_hub.h │ │ ├── usb2otg_intern.h │ │ ├── usb2otg_intr.c │ │ └── usb2otg_schedule.c ├── arm-raspi │ ├── boot │ │ ├── .gitignore │ │ ├── bc │ │ │ ├── font8x14.c │ │ │ ├── screen_fb.c │ │ │ └── vars.c │ │ ├── boot.c │ │ ├── devicetree.c │ │ ├── elf.c │ │ ├── include │ │ │ ├── atags.h │ │ │ ├── boot.h │ │ │ ├── bootconsole.h │ │ │ ├── devicetree.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── mmu.h │ │ │ ├── serialdebug.h │ │ │ ├── vc_fb.h │ │ │ └── vc_mb.h │ │ ├── kprintf.c │ │ ├── ldscript-be.lds │ │ ├── ldscript-le.lds │ │ ├── mmakefile.src │ │ ├── mmu.c │ │ ├── serialdebug.c │ │ ├── support.c │ │ ├── vc_fb.c │ │ └── vc_mb.c │ └── timer │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── timer_init.c │ │ └── timer_platform.h ├── armeb-all │ ├── exec │ │ ├── .gitignore │ │ ├── alert_cpu.c │ │ ├── execstubs.s │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── preparecontext.c │ │ └── stackswap.S │ ├── posixc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── siglongjmp.s │ │ ├── sigsetjmp.s │ │ ├── vfork.s │ │ └── vfork_longjmp.s │ └── stdc │ │ ├── .gitignore │ │ ├── fenv.c │ │ ├── longjmp.s │ │ ├── mmakefile.src │ │ └── setjmp.s ├── i386-all │ ├── debug │ │ ├── debug_platform.c │ │ ├── disassemble.c │ │ ├── make.opts │ │ └── mmakefile.src │ ├── exec │ │ ├── alert_cpu.c │ │ ├── copymem_SSE.S │ │ ├── cpu_init.c │ │ ├── execstubs.s │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── preparecontext.c │ │ └── stackswap.S │ ├── hidd │ │ └── gfx │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── rgbconv_arch.c │ │ │ ├── rgbconv_avx.c │ │ │ └── rgbconv_sse.c │ ├── include │ │ ├── aros │ │ │ ├── atomic.h │ │ │ ├── cpu.h │ │ │ ├── cpucontext.h │ │ │ ├── fenv.h │ │ │ └── genmodule.h │ │ ├── asm │ │ │ ├── cpu.h │ │ │ └── io.h │ │ ├── gencall.c │ │ └── mmakefile.src │ ├── kernel │ │ ├── cpu_init.c │ │ ├── createcontext.c │ │ └── mmakefile.src │ ├── posixc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── siglongjmp.s │ │ ├── sigsetjmp.s │ │ ├── vfork.s │ │ └── vfork_longjmp.s │ ├── stdc │ │ ├── .gitignore │ │ ├── fenv.c │ │ ├── longjmp.s │ │ ├── math │ │ │ ├── e_fmod.s │ │ │ ├── e_fmodf.s │ │ │ ├── e_fmodl.s │ │ │ ├── e_log.s │ │ │ ├── e_log10.s │ │ │ ├── e_log10f.s │ │ │ ├── e_logf.s │ │ │ ├── e_remainder.s │ │ │ ├── e_remainderf.s │ │ │ ├── e_remainderl.s │ │ │ ├── e_sqrt.s │ │ │ ├── e_sqrtf.s │ │ │ ├── e_sqrtl.s │ │ │ ├── ld80 │ │ │ │ └── invtrig.c │ │ │ ├── s_ceil.s │ │ │ ├── s_ceilf.s │ │ │ ├── s_ceill.s │ │ │ ├── s_copysign.s │ │ │ ├── s_copysignf.s │ │ │ ├── s_copysignl.s │ │ │ ├── s_cos.s │ │ │ ├── s_floor.s │ │ │ ├── s_floorf.s │ │ │ ├── s_floorl.s │ │ │ ├── s_llrint.s │ │ │ ├── s_llrintf.s │ │ │ ├── s_llrintl.s │ │ │ ├── s_logb.s │ │ │ ├── s_logbf.s │ │ │ ├── s_logbl.s │ │ │ ├── s_lrint.s │ │ │ ├── s_lrintf.s │ │ │ ├── s_lrintl.s │ │ │ ├── s_remquo.s │ │ │ ├── s_remquof.s │ │ │ ├── s_remquol.s │ │ │ ├── s_rint.s │ │ │ ├── s_rintf.s │ │ │ ├── s_rintl.s │ │ │ ├── s_scalbn.s │ │ │ ├── s_scalbnf.s │ │ │ ├── s_scalbnl.s │ │ │ ├── s_significand.s │ │ │ ├── s_significandf.s │ │ │ ├── s_sin.s │ │ │ ├── s_tan.s │ │ │ ├── s_trunc.s │ │ │ ├── s_truncf.s │ │ │ └── s_truncl.s │ │ ├── mmakefile.src │ │ ├── setjmp.s │ │ └── sse.c │ └── utility │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ └── utility_archinit.c ├── i386-pc │ ├── boot │ │ ├── floppy │ │ │ ├── copypath │ │ │ ├── install.c │ │ │ ├── menu.lst │ │ │ └── mmakefile.src │ │ ├── grub │ │ │ ├── menu.lst │ │ │ ├── menu.lst.DH0 │ │ │ └── mmakefile.src │ │ ├── grub2 │ │ │ ├── grub-efi.cfg │ │ │ ├── grub.cfg │ │ │ └── mmakefile.src │ │ ├── iso │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ └── modules.default │ ├── bootstrap │ │ ├── cpu.c │ │ └── mmakefile.src │ ├── drivers │ │ ├── parallel.hidd │ │ │ ├── ParallelClass.c │ │ │ ├── ParallelUnitClass.c │ │ │ ├── mmakefile.src │ │ │ ├── parallel.conf │ │ │ ├── parallel_init.c │ │ │ ├── parallel_intern.h │ │ │ └── parallelpc_io.h │ │ └── serial.hidd │ │ │ ├── SerialClass.c │ │ │ ├── SerialUnitClass.c │ │ │ ├── mmakefile.src │ │ │ ├── serial.conf │ │ │ ├── serial_init.c │ │ │ ├── serial_intern.h │ │ │ └── serialpc_io.h │ ├── exec │ │ ├── cache.S │ │ ├── cachecleare.c │ │ ├── debug_init.c │ │ ├── debug_internal.c │ │ ├── memoryrawio.c │ │ ├── mmakefile.src │ │ └── userstate.s │ ├── include │ │ ├── asm │ │ │ └── speaker.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── core_interrupts.s │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_debug.c │ │ ├── kernel_intern.h │ │ ├── kernel_startup.c │ │ ├── mmakefile.src │ │ ├── platform_init.c │ │ ├── smpbootstrap.s │ │ ├── utils.c │ │ └── utils.h │ └── mmakefile.src ├── m68k-all │ ├── debug │ │ ├── debug_gdb.c │ │ ├── mmakefile.src │ │ └── segtracker.c │ ├── dos │ │ ├── bcpl.S │ │ ├── bcpl.h │ │ ├── bcpl.inc │ │ ├── bcpl_patches.c │ │ ├── bcpl_putpkt.c │ │ ├── bcpl_readargs.c │ │ ├── bcpl_support.c │ │ ├── bcpl_writef.S │ │ ├── bstr_helper.c │ │ ├── callentry.S │ │ ├── callglobvec.c │ │ ├── exit.c │ │ └── mmakefile.src │ ├── dosboot │ │ ├── bootcode.c │ │ └── mmakefile.src │ ├── exec │ │ ├── addmemlist.c │ │ ├── alert_cpu.c │ │ ├── cache.h │ │ ├── cachecleare.c │ │ ├── cachecleare_.S │ │ ├── cacheclearu.c │ │ ├── cacheclearu_.S │ │ ├── cachecontrol.c │ │ ├── cachecontrol_.S │ │ ├── cachepostdma.c │ │ ├── cachepostdma_.S │ │ ├── cachepredma.c │ │ ├── cachepredma_.S │ │ ├── copymem.c │ │ ├── copymem_.S │ │ ├── copymem_020.S │ │ ├── copymem_040.S │ │ ├── copymem_060.S │ │ ├── copymem_ac080.S │ │ ├── copymemquick.S │ │ ├── copymemquick_040.S │ │ ├── copymemquick_060.S │ │ ├── debug.S │ │ ├── dispatch.S │ │ ├── exec_platform.c │ │ ├── exec_platform.h │ │ ├── exitintr.S │ │ ├── forbid.S │ │ ├── getcc.c │ │ ├── mmakefile.src │ │ ├── newstackswap.S │ │ ├── obtainquickvector.S │ │ ├── offsets.c │ │ ├── preparecontext.c │ │ ├── schedule.S │ │ ├── setfunction.c │ │ ├── setsr.S │ │ ├── stackswap.S │ │ ├── superstate.S │ │ ├── supervisor.S │ │ ├── switch.S │ │ └── userstate.S │ ├── include │ │ ├── aros │ │ │ ├── ammxcontext.h │ │ │ ├── atomic.h │ │ │ ├── cpu.h │ │ │ ├── cpucontext.h │ │ │ ├── fenv.h │ │ │ ├── fpucontext.h │ │ │ ├── genmodule.h │ │ │ └── libcall_cc.h │ │ ├── gencall.c │ │ ├── jmpdefs.h │ │ └── mmakefile.src │ ├── inflate │ │ ├── crc16_ccitt.S │ │ ├── degzip.c │ │ ├── depacker_entry.S │ │ ├── depacker_main.S │ │ ├── depacker_packed.S │ │ ├── inflate.S │ │ ├── mmakefile.src │ │ └── pack_exe.py │ ├── kernel │ │ ├── ammxrestorecontext.S │ │ ├── ammxsavecontext.S │ │ ├── buserror.S │ │ ├── bushandler.c │ │ ├── cpu_m68k.h │ │ ├── dispatch.c │ │ ├── fpurestorecontext.S │ │ ├── fpusavecontext.S │ │ ├── issuper.S │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_intern.h │ │ ├── kernel_intr.c │ │ ├── m68k_exception.c │ │ ├── m68k_exception.h │ │ ├── mapglobal.c │ │ ├── mmakefile.src │ │ ├── mmu.c │ │ ├── platform_init.c │ │ ├── schedule.c │ │ ├── schedulecpu.c │ │ ├── setprotection.c │ │ ├── switch.c │ │ └── virtualtophysical.c │ ├── libgcc1 │ │ ├── A_LIRE │ │ ├── Makefile │ │ ├── _addsubdf3.s │ │ ├── _addsubsf3.s │ │ ├── _divdf3.s │ │ ├── _divmodsi3.s │ │ ├── _divsf3.s │ │ ├── _eqdf2.s │ │ ├── _eqsf2.s │ │ ├── _extend.s │ │ ├── _extendsfdf2.s │ │ ├── _fixdfsi.s │ │ ├── _fixsfsi.s │ │ ├── _floatsidf.s │ │ ├── _floatsisf.s │ │ ├── _gedf2.s │ │ ├── _gesf2.s │ │ ├── _gtdf2.s │ │ ├── _gtsf2.s │ │ ├── _ledf2.s │ │ ├── _lesf2.s │ │ ├── _ltdf2.s │ │ ├── _ltsf2.s │ │ ├── _muldf3.s │ │ ├── _mulsf3.s │ │ ├── _mulsi3.s │ │ ├── _nedf2.s │ │ ├── _negdf2.s │ │ ├── _negsf2.s │ │ ├── _nesf2.s │ │ ├── _normdf.s │ │ ├── _normsf.s │ │ ├── _truncdfsf2.s │ │ ├── _udivmodsi3.s │ │ └── mmakefile.src │ ├── m680x0 │ │ ├── 060sp │ │ │ ├── Makefile │ │ │ ├── Makefile.inc │ │ │ ├── ReadMe.NetBSD │ │ │ ├── asm2gas │ │ │ ├── copyright.S │ │ │ ├── dist │ │ │ │ ├── changes │ │ │ │ ├── errata │ │ │ │ ├── fplsp.doc │ │ │ │ ├── fplsp.s │ │ │ │ ├── fplsp.sa │ │ │ │ ├── fpsp.doc │ │ │ │ ├── fpsp.s │ │ │ │ ├── fpsp.sa │ │ │ │ ├── fskeletn.s │ │ │ │ ├── ftest.s │ │ │ │ ├── ftest.sa │ │ │ │ ├── ilsp.doc │ │ │ │ ├── ilsp.s │ │ │ │ ├── ilsp.sa │ │ │ │ ├── iskeletn.s │ │ │ │ ├── isp.doc │ │ │ │ ├── isp.s │ │ │ │ ├── isp.sa │ │ │ │ ├── itest.s │ │ │ │ ├── itest.sa │ │ │ │ ├── misc │ │ │ │ ├── os.s │ │ │ │ ├── pfpsp.s │ │ │ │ ├── pfpsp.sa │ │ │ │ ├── readme │ │ │ │ └── test.doc │ │ │ ├── files.060sp │ │ │ ├── fnetbsd.S │ │ │ ├── fpsp.S │ │ │ ├── inetbsd.S │ │ │ ├── isp.S │ │ │ ├── netbsd060sp.S │ │ │ └── pfpsp.S │ │ ├── 680x0.conf │ │ ├── fpsp │ │ │ ├── DYADIC.CI5 │ │ │ ├── DYADIC.GCC │ │ │ ├── DYADIC.GEN │ │ │ ├── DYADIC.R3V6 │ │ │ ├── FPSP.sa │ │ │ ├── L_ENTRY.AWK │ │ │ ├── L_LIST │ │ │ ├── MONADIC.CI5 │ │ │ ├── MONADIC.GCC │ │ │ ├── MONADIC.GEN │ │ │ ├── MONADIC.R3V6 │ │ │ ├── Makefile │ │ │ ├── Makefile.inc │ │ │ ├── asm2gas │ │ │ ├── bindec.sa │ │ │ ├── binstr.sa │ │ │ ├── bugfix.sa │ │ │ ├── copyright.s │ │ │ ├── decbin.sa │ │ │ ├── do_func.sa │ │ │ ├── fpsp.h │ │ │ ├── gen_except.sa │ │ │ ├── get_op.sa │ │ │ ├── kernel_ex.sa │ │ │ ├── l_fpsp.h │ │ │ ├── l_support.sa │ │ │ ├── netbsd.sa │ │ │ ├── res_func.sa │ │ │ ├── round.sa │ │ │ ├── sacos.sa │ │ │ ├── sasin.sa │ │ │ ├── satan.sa │ │ │ ├── satanh.sa │ │ │ ├── scale.sa │ │ │ ├── scosh.sa │ │ │ ├── setox.sa │ │ │ ├── sgetem.sa │ │ │ ├── sint.sa │ │ │ ├── skeleton.sa │ │ │ ├── slog2.sa │ │ │ ├── slogn.sa │ │ │ ├── smovecr.sa │ │ │ ├── srem_mod.sa │ │ │ ├── ssin.sa │ │ │ ├── ssinh.sa │ │ │ ├── stan.sa │ │ │ ├── stanh.sa │ │ │ ├── sto_res.sa │ │ │ ├── stwotox.sa │ │ │ ├── tbldo.sa │ │ │ ├── util.sa │ │ │ ├── x_bsun.sa │ │ │ ├── x_fline.sa │ │ │ ├── x_operr.sa │ │ │ ├── x_ovfl.sa │ │ │ ├── x_snan.sa │ │ │ ├── x_store.sa │ │ │ ├── x_unfl.sa │ │ │ ├── x_unimp.sa │ │ │ └── x_unsupp.sa │ │ ├── init.c │ │ ├── m680x0_intern.h │ │ ├── m68k_060fpu.S │ │ ├── m68k_060int.S │ │ ├── m68k_060sp.S │ │ └── mmakefile.src │ ├── mathffp │ │ ├── mmakefile.src │ │ ├── spcmp.S │ │ └── sptst.S │ ├── mathieeedoubbas │ │ ├── fpu.S │ │ ├── ieeedpbas_fpu.c │ │ ├── mathieeedoubbas_init.c │ │ └── mmakefile.src │ ├── mathieeedoubtrans │ │ ├── fpu.S │ │ ├── ieeedptrans_fpu.c │ │ ├── mathieeedoubtrans_init.c │ │ └── mmakefile.src │ ├── mathieeesingbas │ │ ├── fpu.S │ │ ├── mathieeesingbas_init.c │ │ └── mmakefile.src │ ├── mathieeesingtrans │ │ ├── fpu.S │ │ ├── mathieeesingtrans_init.c │ │ └── mmakefile.src │ ├── posixc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── siglongjmp.s │ │ ├── sigsetjmp.s │ │ ├── vfork.s │ │ └── vfork_longjmp.s │ ├── processor │ │ ├── getcpuinfo.c │ │ ├── mmakefile.src │ │ ├── processor_arch_intern.h │ │ └── processor_init.c │ ├── stdc │ │ ├── .gitignore │ │ ├── __stdc_fpumath.c │ │ ├── fenv.c │ │ ├── jmptests.s │ │ ├── longjmp.s │ │ ├── math │ │ │ ├── e_acos-881.s │ │ │ ├── e_asin-881.s │ │ │ ├── e_atanh-881.s │ │ │ ├── e_cosh-881.s │ │ │ ├── e_exp-881.s │ │ │ ├── e_fmod-881.s │ │ │ ├── e_hypot-881.s │ │ │ ├── e_log-881.s │ │ │ ├── e_log10-881.s │ │ │ ├── e_log2-881.s │ │ │ ├── e_remainder-881.s │ │ │ ├── e_sinh-881.s │ │ │ ├── e_sqrt-881.s │ │ │ ├── s_atan-881.s │ │ │ ├── s_ceil-881.s │ │ │ ├── s_copysign-881.s │ │ │ ├── s_cos-881.s │ │ │ ├── s_exp2-881.s │ │ │ ├── s_fabs-881.s │ │ │ ├── s_fdim-881.s │ │ │ ├── s_floor-881.s │ │ │ ├── s_fma-881.s │ │ │ ├── s_fmax-881.s │ │ │ ├── s_fmin-881.s │ │ │ ├── s_fpclassify-881.s │ │ │ ├── s_isfinite-881.s │ │ │ ├── s_isinf-881.s │ │ │ ├── s_isnan-881.s │ │ │ ├── s_isnormal-881.s │ │ │ ├── s_lround-881.s │ │ │ ├── s_nearbyint-881.s │ │ │ ├── s_round-881.s │ │ │ ├── s_signbit-881.s │ │ │ ├── s_sin-881.s │ │ │ ├── s_tan-881.s │ │ │ ├── s_tanh-881.s │ │ │ └── s_trunc-881.s │ │ ├── mmakefile.src │ │ └── setjmp.s │ ├── test │ │ ├── .gitignore │ │ ├── bcpl_strings.c │ │ └── mmakefile.src │ └── utility │ │ ├── mmakefile.src │ │ ├── sdivmod32.s │ │ ├── smult32.s │ │ ├── smult64.s │ │ ├── udivmod32.s │ │ ├── umult32.s │ │ ├── umult64.s │ │ └── utility_archinit.c ├── m68k-amiga │ ├── battclock │ │ ├── battclock_init.c │ │ ├── battclock_intern.c │ │ ├── battclock_intern.h │ │ ├── mmakefile.src │ │ ├── readbattclock.c │ │ ├── resetbattclock.c │ │ └── writebattclock.c │ ├── boot │ │ ├── amiga_hwreg.h │ │ ├── aros-dbg.ld │ │ ├── aros-ram-test.ld │ │ ├── aros-ram.ld │ │ ├── aros-rom.ld │ │ ├── cpu_detect.S │ │ ├── debug.c │ │ ├── debug.h │ │ ├── early.c │ │ ├── early.h │ │ ├── ext_entry.S │ │ ├── floppy │ │ │ ├── AROSBoot.info.src │ │ │ ├── AROSBoot.png │ │ │ ├── Emergency-Boot.info.src │ │ │ ├── README.txt │ │ │ ├── README.txt.info.src │ │ │ ├── README.txt.png │ │ │ ├── Startup-Sequence.boot │ │ │ ├── install.c │ │ │ └── mmakefile.src │ │ ├── iso │ │ │ ├── README.txt │ │ │ ├── README.txt.info.src │ │ │ ├── README.txt.png │ │ │ ├── Sources-README.txt.info.src │ │ │ ├── Sources-README.txt.png │ │ │ ├── Sources.info.src │ │ │ ├── Sources.png │ │ │ ├── Wanderer-global.prefs │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ ├── mmu.c │ │ ├── rom_entry.S │ │ ├── rom_init.S │ │ ├── romcheck.c │ │ ├── start.c │ │ └── superstack_swap.S │ ├── c │ │ ├── AROSBootstrap.c │ │ ├── SetPatch.c │ │ ├── SetPatchAROS.c │ │ ├── gdbstop.c │ │ ├── gdbstub.c │ │ ├── mmakefile.src │ │ ├── mmudump.c │ │ ├── newstackswap.s │ │ └── test-cas.c │ ├── card │ │ ├── begincardaccess.c │ │ ├── card_init.c │ │ ├── card_intern.h │ │ ├── cardaccessspeed.c │ │ ├── cardchangecount.c │ │ ├── cardforcechange.c │ │ ├── cardinterface.c │ │ ├── cardmiscontrol.c │ │ ├── cardprogramvoltage.c │ │ ├── cardresetcard.c │ │ ├── cardresetremove.c │ │ ├── copytuple.c │ │ ├── devicetuple.c │ │ ├── endcardaccess.c │ │ ├── getcardmap.c │ │ ├── ifamigaxip.c │ │ ├── lowlevel.c │ │ ├── mmakefile.src │ │ ├── owncard.c │ │ ├── readcardstatus.c │ │ ├── releasecard.c │ │ └── task.c │ ├── cia │ │ ├── ableicr.c │ │ ├── addicrvector.c │ │ ├── cia_init.c │ │ ├── cia_intern.h │ │ ├── cia_interrupt.c │ │ ├── cia_lib.sfd │ │ ├── mmakefile.src │ │ ├── remicrvector.c │ │ ├── resident_end.c │ │ └── seticr.c │ ├── devs │ │ ├── ata │ │ │ ├── ata_amiga.c │ │ │ ├── bus_pci.c │ │ │ ├── dma_generic.c │ │ │ ├── mmakefile.src │ │ │ └── waitnano.c │ │ ├── audio │ │ │ ├── audio.c │ │ │ ├── audio.conf │ │ │ ├── audio_device.h │ │ │ ├── audio_hardware.c │ │ │ ├── audio_intern.h │ │ │ └── mmakefile.src │ │ ├── cd │ │ │ ├── .gitignore │ │ │ ├── cd.c │ │ │ ├── cd.conf │ │ │ ├── cd32.c │ │ │ ├── cd32.h │ │ │ ├── cd_intern.h │ │ │ ├── chinon.h │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ └── trackdisk │ │ │ ├── mmakefile.src │ │ │ ├── trackdisk.conf │ │ │ ├── trackdisk_device.c │ │ │ ├── trackdisk_device.h │ │ │ ├── trackdisk_hw.c │ │ │ └── trackdisk_hw.h │ ├── diag │ │ ├── diag.c │ │ ├── mmakefile.src │ │ └── resident_end.c │ ├── disk │ │ ├── disk_intern_init.c │ │ └── mmakefile.src │ ├── exec │ │ ├── coldreboot.c │ │ ├── disable.S │ │ ├── enable.S │ │ ├── exec_globals.c │ │ ├── mmakefile.src │ │ ├── moveexecbase.c │ │ ├── readgayle.S │ │ └── shutdowna.c │ ├── expansion │ │ ├── configboard.c │ │ ├── configchain.c │ │ ├── memorytest.S │ │ ├── mmakefile.src │ │ ├── readexpansionbyte.c │ │ ├── readexpansionrom.c │ │ ├── writeexpansionbyte.c │ │ └── writeexpansionword.c │ ├── freeanim │ │ ├── .gitignore │ │ ├── freeanim.conf │ │ ├── freeanim_intern.h │ │ └── mmakefile.src │ ├── graphics │ │ ├── attemptlocklayerrom.S │ │ ├── changeextspritea.c │ │ ├── coppersupport.c │ │ ├── coppersupport.h │ │ ├── locklayerrom.S │ │ ├── mmakefile.src │ │ ├── movesprite.c │ │ ├── setchiprev.c │ │ ├── unlocklayerrom.S │ │ ├── vbeampos.c │ │ └── waitblit.S │ ├── hidd │ │ ├── amigavideo │ │ │ ├── .gitignore │ │ │ ├── amigavideo.conf │ │ │ ├── amigavideo_bitmap.h │ │ │ ├── amigavideo_bitmapclass.c │ │ │ ├── amigavideo_blitter.c │ │ │ ├── amigavideo_chipset.c │ │ │ ├── amigavideo_compositor.h │ │ │ ├── amigavideo_compositorclass.c │ │ │ ├── amigavideo_hidd.h │ │ │ ├── amigavideo_hiddclass.c │ │ │ ├── amigavideo_intern.h │ │ │ ├── blitter.h │ │ │ ├── chipset.h │ │ │ ├── compositor.h │ │ │ ├── include │ │ │ │ └── amigavideo.h │ │ │ ├── mmakefile.src │ │ │ └── startup.c │ │ ├── gayle_ata │ │ │ ├── .gitignore │ │ │ ├── ata_gayle.conf │ │ │ ├── bus_class.h │ │ │ ├── class_init.c │ │ │ ├── fastata_busclass.c │ │ │ ├── gayleata_busclass.c │ │ │ ├── interface_pio.c │ │ │ ├── interface_pio.h │ │ │ ├── mmakefile.src │ │ │ └── probe.c │ │ ├── gfx │ │ │ ├── mmakefile.src │ │ │ └── rgbconv.c │ │ ├── keyboard │ │ │ ├── amigakbd.conf │ │ │ ├── kbd.h │ │ │ ├── kbd_init.c │ │ │ ├── kbdclass.c │ │ │ └── mmakefile.src │ │ ├── mouse │ │ │ ├── amigamouse.conf │ │ │ ├── mmakefile.src │ │ │ ├── mouse.h │ │ │ ├── mouse_init.c │ │ │ └── mouseclass.c │ │ ├── p96gfx │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── p96call.c │ │ │ ├── p96call.h │ │ │ ├── p96gfx.conf │ │ │ ├── p96gfx_bitmap.h │ │ │ ├── p96gfx_bitmapclass.c │ │ │ ├── p96gfx_card.c │ │ │ ├── p96gfx_hidd.h │ │ │ ├── p96gfx_hiddclass.c │ │ │ ├── p96gfx_intern.h │ │ │ ├── p96gfx_rtg.c │ │ │ ├── p96gfx_rtg.h │ │ │ └── p96gfx_startup.c │ │ ├── parallel │ │ │ ├── .gitignore │ │ │ ├── ParallelClass.c │ │ │ ├── ParallelUnitClass.c │ │ │ ├── mmakefile.src │ │ │ ├── parallel.conf │ │ │ ├── parallel_init.c │ │ │ └── parallel_intern.h │ │ ├── pci-mediator │ │ │ ├── .gitignore │ │ │ ├── driverclass.c │ │ │ ├── empbreg.h │ │ │ ├── mmakefile.src │ │ │ ├── pci-mediator.conf │ │ │ ├── pci-mediator.hidd.info.src │ │ │ ├── pci-mediator.hidd.png │ │ │ ├── pci-mediator_init.c │ │ │ ├── pci.h │ │ │ ├── pci_resource.c │ │ │ └── pci_resource.h │ │ ├── pci-prometheus │ │ │ ├── .gitignore │ │ │ ├── driverclass.c │ │ │ ├── mmakefile.src │ │ │ ├── mppbreg.h │ │ │ ├── pci-prometheus.conf │ │ │ ├── pci-prometheus.hidd.info.src │ │ │ ├── pci-prometheus.hidd.png │ │ │ ├── pci-prometheus_init.c │ │ │ ├── pci.h │ │ │ ├── pci_resource.c │ │ │ └── pci_resource.h │ │ └── sagagfx │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── sagagfx.conf │ │ │ ├── sagagfx_bitmap.h │ │ │ ├── sagagfx_hidd.h │ │ │ ├── sagagfx_hiddclass.c │ │ │ ├── sagagfx_hw.c │ │ │ ├── sagagfx_hw.h │ │ │ ├── sagagfx_init.c │ │ │ └── sagagfx_onbitmap.c │ ├── include │ │ ├── aros │ │ │ ├── bootstruct.h │ │ │ └── machine.i │ │ ├── asm │ │ │ ├── cpu.h │ │ │ ├── irq.h │ │ │ ├── linkage.h │ │ │ └── registers.h │ │ ├── exec │ │ │ └── ptrace.h │ │ ├── hardware │ │ │ ├── adkbits.h │ │ │ └── dmabits.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── amiga_irq.c │ │ ├── amiga_irq.h │ │ ├── cause.c │ │ ├── cli.c │ │ ├── dispatch.c │ │ ├── getbootinfo.c │ │ ├── kernel_arch.h │ │ ├── kernel_debug.c │ │ ├── kernel_globals.c │ │ ├── kernel_globals.h │ │ ├── kernel_timer.c │ │ ├── maygetchar.c │ │ ├── mmakefile.src │ │ ├── obtaininput.c │ │ ├── releaseinput.c │ │ ├── romsupport.c │ │ └── sti.c │ ├── lowlevel │ │ ├── .gitignore │ │ ├── addtimerint.c │ │ ├── cia_timer.h │ │ ├── lowlevel_amiga.c │ │ ├── lowlevel_arch.h │ │ ├── make.opts │ │ ├── mmakefile.src │ │ ├── readjoyport.c │ │ ├── remtimerint.c │ │ ├── setjoyportattrsa.c │ │ ├── starttimerint.c │ │ └── stoptimerint.c │ ├── mmakefile.src │ ├── potgo │ │ ├── allocpotbits.c │ │ ├── freepotbits.c │ │ ├── mmakefile.src │ │ ├── potgo.conf │ │ ├── potgo_intern.h │ │ └── writepotgo.c │ ├── romboot │ │ ├── mmakefile.src │ │ ├── resident_end.c │ │ └── romboot.c │ ├── setpatch │ │ ├── .gitignore │ │ ├── README.txt │ │ ├── addpatch.c │ │ ├── findpatch.c │ │ ├── mmakefile.src │ │ ├── rempatch.c │ │ ├── setpatch.conf │ │ ├── setpatch_init.c │ │ └── setpatch_intern.h │ ├── timer │ │ ├── abortio.c │ │ ├── beginio.c │ │ ├── common_init.c │ │ ├── getsystime.c │ │ ├── getuptime.c │ │ ├── initcustom.c │ │ ├── lowlevel.c │ │ ├── mmakefile.src │ │ ├── readeclock.c │ │ ├── ticks.c │ │ ├── timer_init.c │ │ ├── timer_intern.h │ │ └── timer_platform.h │ └── wb.tag │ │ ├── mmakefile.src │ │ ├── resident_end.c │ │ └── wbtag.c ├── mmakefile.src ├── ppc-all │ ├── common │ │ └── include │ │ │ ├── aros │ │ │ └── multiboot.h │ │ │ └── mmakefile.src │ ├── exec │ │ ├── alert_cpu.c │ │ ├── cachecleare.c │ │ ├── execstubs.s │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── preparecontext.c │ │ └── stackswap.S │ ├── include │ │ ├── aros │ │ │ ├── atomic.h │ │ │ ├── cpu.h │ │ │ ├── cpucontext.h │ │ │ ├── fenv.h │ │ │ └── genmodule.h │ │ ├── asm │ │ │ ├── cpu.h │ │ │ ├── io.h │ │ │ └── ppc740.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── createcontext.c │ │ └── mmakefile.src │ ├── mmakefile.src │ ├── posixc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── siglongjmp.s │ │ ├── sigsetjmp.s │ │ ├── vfork.s │ │ └── vfork_longjmp.s │ ├── prep │ │ ├── CoreLink.lds │ │ ├── kernel │ │ │ ├── functable.c │ │ │ ├── io.c │ │ │ ├── kernel.h │ │ │ ├── kernel_init.c │ │ │ ├── lib.conf │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ ├── preplink.c │ │ └── startup │ │ │ ├── c_start.c │ │ │ ├── mmakefile.src │ │ │ ├── of1275.c │ │ │ ├── of1275.h │ │ │ └── startup.S │ └── stdc │ │ ├── .gitignore │ │ ├── fenv.c │ │ ├── longjmp.s │ │ ├── mmakefile.src │ │ └── setjmp.s ├── ppc-chrp │ ├── battclock │ │ ├── mmakefile.src │ │ ├── readbattclock.c │ │ └── writebattclock.c │ ├── boot │ │ └── openfirmware │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── include │ │ │ ├── debug.h │ │ │ ├── elf.h │ │ │ ├── kernel.h │ │ │ ├── menu.h │ │ │ ├── of1275.h │ │ │ └── support.h │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── bootstrap.c │ │ │ ├── elf.c │ │ │ ├── gpr.S │ │ │ ├── ldscript.lds │ │ │ ├── menu.c │ │ │ ├── mmakefile.src │ │ │ ├── of1275.c │ │ │ └── support.c │ ├── dos │ │ ├── internalloadseg_elf.c │ │ ├── internalunloadseg.c │ │ └── mmakefile.src │ ├── dosboot │ │ ├── bootconfig.c │ │ └── mmakefile.src │ ├── efika │ │ ├── ata │ │ │ ├── ata_bestcomm.c │ │ │ ├── lowlevel_mpc5200b.c │ │ │ ├── make.opts │ │ │ └── mmakefile.src │ │ ├── bestcomm │ │ │ ├── bestcomm.conf │ │ │ ├── bestcomm_init.c │ │ │ ├── bestcomm_private.h │ │ │ └── mmakefile.src │ │ ├── boot │ │ │ ├── menu.lst │ │ │ └── mmakefile.src │ │ ├── include │ │ │ ├── asm │ │ │ │ └── mpc5200b.h │ │ │ └── mmakefile.src │ │ ├── kernel │ │ │ ├── debug.c │ │ │ ├── ictl.c │ │ │ ├── intr.c │ │ │ ├── kernel_init.c │ │ │ ├── kernel_intern.h │ │ │ ├── ldscript.lds │ │ │ ├── mmakefile.src │ │ │ ├── mmu.c │ │ │ ├── scheduler.c │ │ │ ├── syscall.c │ │ │ ├── syscall.h │ │ │ └── tags.c │ │ ├── ohci │ │ │ ├── mmakefile.src │ │ │ └── ohci_init.c │ │ ├── pci │ │ │ ├── driverclass.c │ │ │ ├── mmakefile.src │ │ │ ├── pci-efika.conf │ │ │ ├── pci.h │ │ │ └── pci_efika_init.c │ │ └── timer │ │ │ ├── beginio.c │ │ │ ├── getsystime.c │ │ │ ├── lowlevel.c │ │ │ ├── lowlevel.h │ │ │ ├── make.opts │ │ │ ├── mmakefile.src │ │ │ ├── readeclock.c │ │ │ ├── ticks.c │ │ │ └── timer_init.c │ ├── exec │ │ ├── cachepostdma.c │ │ ├── cachepredma.c │ │ ├── coldreboot.c │ │ ├── exec_init.c │ │ ├── mmakefile.src │ │ ├── preparecontext.c │ │ ├── prepareexecbase.c │ │ ├── rawputchar.c │ │ ├── shutdowna.c │ │ ├── superstate.c │ │ ├── supervisor.c │ │ └── userstate.c │ ├── hidd.radeon │ │ ├── mmakefile.src │ │ └── radeon_bios.c │ ├── pegasos │ │ └── kernel │ │ │ ├── kernel_bootmem.c │ │ │ ├── kernel_bootmem.h │ │ │ ├── kernel_debug.c │ │ │ ├── kernel_intern.h │ │ │ ├── kernel_startup.c │ │ │ ├── make.opts │ │ │ └── mmakefile.src │ └── rtas │ │ ├── mmakefile.src │ │ ├── rtas.conf │ │ ├── rtas_init.c │ │ └── rtas_private.h ├── ppc-morphos │ └── include │ │ ├── aros │ │ └── cpu.h │ │ └── mmakefile.src ├── ppc-native │ ├── kernel │ │ ├── cli.s │ │ ├── issuper.s │ │ ├── mmakefile.src │ │ └── sti.s │ └── processor │ │ ├── .gitignore │ │ ├── getcpuinfo.c │ │ ├── mmakefile.src │ │ └── processor_intern_arch.h ├── ppc-sam440 │ ├── .gitignore │ ├── ata │ │ ├── .gitignore │ │ ├── bus_ppc460.c │ │ └── mmakefile.src │ ├── battclock │ │ ├── mmakefile.src │ │ ├── readbattclock.c │ │ └── writebattclock.c │ ├── boot │ │ ├── ldscript.lds │ │ ├── menu.lst │ │ ├── mmakefile.src │ │ └── parthenope │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── missing │ │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cdrom.c │ │ │ ├── cdrom.h │ │ │ ├── context.c │ │ │ ├── context.h │ │ │ ├── debug.h │ │ │ ├── device.h │ │ │ ├── dos.c │ │ │ ├── dos.h │ │ │ ├── elf.c │ │ │ ├── elf.h │ │ │ ├── ext2.c │ │ │ ├── ext2.h │ │ │ ├── image.h │ │ │ ├── ldscript.lds │ │ │ ├── menu.c │ │ │ ├── menu.h │ │ │ ├── mmakefile.src │ │ │ ├── parthenope.c │ │ │ ├── rdb.c │ │ │ ├── rdb.h │ │ │ ├── sfs.c │ │ │ ├── sfs.h │ │ │ ├── support.c │ │ │ ├── support.h │ │ │ ├── tftp.c │ │ │ ├── tftp.h │ │ │ └── uboot.h │ │ │ └── tools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── parthenope-install.c │ ├── debug │ │ ├── .gitignore │ │ ├── debug_init_arch.c │ │ └── mmakefile.src │ ├── dosboot │ │ ├── bootconfig.c │ │ └── mmakefile.src │ ├── exec │ │ ├── cachepostdma.c │ │ ├── cachepredma.c │ │ ├── coldreboot.c │ │ ├── mmakefile.src │ │ ├── preparecontext.c │ │ ├── superstate.c │ │ ├── supervisor.c │ │ └── userstate.c │ ├── hidd.radeon │ │ ├── mmakefile.src │ │ ├── radeon_bios.c │ │ └── radeon_bios_rom.h │ ├── i2c │ │ ├── i2c-amcc440.c │ │ ├── i2c-amcc440.conf │ │ ├── i2c-amcc440.h │ │ └── mmakefile.src │ ├── include │ │ ├── asm │ │ │ └── amcc440.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── intr.c │ │ ├── kernel_arch.h │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_debug.c │ │ ├── kernel_intern.h │ │ ├── kernel_startup.c │ │ ├── maygetchar.c │ │ ├── mmakefile.src │ │ ├── mmu.c │ │ ├── obtaininput.c │ │ ├── syscall.c │ │ ├── tags.c │ │ ├── uic.c │ │ └── virtualtophysical.c │ ├── mmakefile.src │ ├── parthenogenesis │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ └── parthenogenesis.c │ ├── pci │ │ ├── driverclass.c │ │ ├── mmakefile.src │ │ ├── pci-amcc440.conf │ │ ├── pci.h │ │ └── pci_amcc440_init.c │ ├── pci460 │ │ ├── .gitignore │ │ ├── driverclass.c │ │ ├── mmakefile.src │ │ ├── pci-amcc460.conf │ │ ├── pci.h │ │ └── pci_amcc460_init.c │ ├── processor │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ └── processor_init.c │ └── serial.hidd │ │ ├── .gitignore │ │ ├── SerialClass.c │ │ ├── SerialUnitClass.c │ │ ├── mmakefile.src │ │ ├── serial.conf │ │ ├── serial_init.c │ │ └── serial_intern.h ├── riscv-all │ ├── crt │ │ ├── posixc │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── siglongjmp.s │ │ │ ├── sigsetjmp.s │ │ │ ├── vfork.s │ │ │ └── vfork_longjmp.s │ │ └── stdc │ │ │ ├── .gitignore │ │ │ ├── fenv.c │ │ │ ├── longjmp.s │ │ │ ├── mmakefile.src │ │ │ └── setjmp.s │ ├── exec │ │ ├── alert_cpu.c │ │ ├── execstubs.s │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── preparecontext.c │ │ └── stackswap.S │ ├── include │ │ ├── aros │ │ │ ├── atomic.h │ │ │ ├── cpu.h │ │ │ ├── cpucontext.h │ │ │ ├── fenv.h │ │ │ └── genmodule.h │ │ ├── asm │ │ │ └── cpu.h │ │ └── mmakefile.src │ └── kernel │ │ ├── cpu_init.c │ │ ├── createcontext.c │ │ ├── getcpunumber.c │ │ └── mmakefile.src ├── riscv-native │ ├── boot │ │ └── mmakefile.src │ ├── exec │ │ ├── .gitignore │ │ ├── cachecleare.c │ │ ├── cachepredma.c │ │ ├── coldreboot.c │ │ ├── exec_idle.c │ │ ├── exec_platform.h │ │ ├── mmakefile.src │ │ ├── platform_init.c │ │ ├── superstate.c │ │ └── userstate.c │ ├── kernel │ │ ├── intr.c │ │ ├── kernel_arch.h │ │ ├── kernel_cpu.c │ │ ├── kernel_cpu.h │ │ ├── kernel_intern.h │ │ ├── kernel_scheduler.c │ │ ├── mmakefile.src │ │ ├── tags.c │ │ └── tls.h │ └── sifive_u │ │ ├── boot │ │ ├── boot.c │ │ ├── ldscript.lds │ │ └── mmakefile.src │ │ ├── kernel │ │ ├── kernel_startup.c │ │ ├── ldscript.lds │ │ └── mmakefile.src │ │ └── mmakefile.src ├── x86_64-all │ ├── cgfx │ │ ├── extractcolor_renderfunc.c │ │ ├── mmakefile.src │ │ ├── processpixelarray_opblur.c │ │ ├── processpixelarray_opbrightness.c │ │ ├── processpixelarray_opsetalpha.c │ │ └── processpixelarray_optint.c │ ├── debug │ │ ├── make.opts │ │ └── mmakefile.src │ ├── exec │ │ ├── alert_cpu.c │ │ ├── copymem.c │ │ ├── execstubs.s │ │ ├── mmakefile.src │ │ ├── newstackswap.c │ │ ├── preparecontext.c │ │ ├── stackswap.S │ │ └── taskexit.S │ ├── gcc_def │ ├── hidd │ │ └── gfx │ │ │ ├── .gitignore │ │ │ ├── make.opts │ │ │ ├── mmakefile.src │ │ │ └── rgbconv_arch.c │ ├── include │ │ ├── aros │ │ │ ├── atomic.h │ │ │ ├── cpu.h │ │ │ ├── cpucontext.h │ │ │ ├── fenv.h │ │ │ └── genmodule.h │ │ ├── asm │ │ │ └── cpu.h │ │ └── mmakefile.src │ ├── kernel │ │ ├── backtracefromframe.c │ │ ├── cpu_init.c │ │ ├── createcontext.c │ │ └── mmakefile.src │ ├── posixc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── siglongjmp.s │ │ ├── sigsetjmp.s │ │ ├── vfork.s │ │ └── vfork_longjmp.s │ ├── stdc │ │ ├── .gitignore │ │ ├── fenv.c │ │ ├── longjmp.s │ │ ├── math │ │ │ ├── e_fmod.s │ │ │ ├── e_fmodf.s │ │ │ ├── e_fmodl.s │ │ │ ├── e_remainder.s │ │ │ ├── e_remainderf.s │ │ │ ├── e_remainderl.s │ │ │ ├── e_sqrt.s │ │ │ ├── e_sqrtf.s │ │ │ ├── e_sqrtl.s │ │ │ ├── s_llrint.s │ │ │ ├── s_llrintf.s │ │ │ ├── s_llrintl.s │ │ │ ├── s_logbl.s │ │ │ ├── s_lrint.s │ │ │ ├── s_lrintf.s │ │ │ ├── s_lrintl.s │ │ │ ├── s_remquo.s │ │ │ ├── s_remquof.s │ │ │ ├── s_remquol.s │ │ │ ├── s_rintl.s │ │ │ ├── s_scalbn.s │ │ │ ├── s_scalbnf.s │ │ │ └── s_scalbnl.s │ │ ├── mmakefile.src │ │ └── setjmp.s │ └── utility │ │ ├── .gitignore │ │ ├── make.opts │ │ ├── mmakefile.src │ │ ├── setmem.c │ │ └── utility_archinit.c └── x86_64-pc │ ├── .gitignore │ ├── boot │ ├── grub │ │ ├── menu.lst │ │ ├── menu.lst.DH0 │ │ └── mmakefile.src │ ├── grub2 │ │ ├── grub.cfg │ │ └── mmakefile │ ├── iso │ │ └── mmakefile.src │ ├── mmakefile.src │ └── modules.default │ ├── bootstrap │ ├── cpu.c │ └── mmakefile.src │ ├── exec │ ├── mmakefile.src │ └── userstate.s │ ├── kernel │ ├── core_interrupts.s │ ├── kernel_cpu.c │ ├── kernel_cpu.h │ ├── kernel_debug.c │ ├── kernel_early.c │ ├── kernel_intern.h │ ├── kernel_startup.c │ ├── kernel_trapdebug.c │ ├── mmakefile.src │ ├── mmu.c │ ├── platform_init.c │ ├── smpbootstrap.s │ └── tls.h │ └── mmakefile.src ├── boot ├── mmakefile.src └── modular_kickstart.txt ├── bootstrap ├── elfloader.c ├── include │ ├── elfloader.h │ └── runtime.h └── mmakefile.src ├── compiler ├── .gitignore ├── alib │ ├── acrypt.c │ ├── addamigaguidehost.c │ ├── addappicon.c │ ├── addappmenuitem.c │ ├── addappwindow.c │ ├── addappwindowdropzone.c │ ├── alib_intern.h │ ├── alib_util.c │ ├── allocaslrequesttags.c │ ├── allocdosobjecttags.c │ ├── allocnamedobject.c │ ├── allocspritedata.c │ ├── andrectrect.c │ ├── argarraydone.c │ ├── argarrayinit.c │ ├── argint.c │ ├── argstring.c │ ├── arosinquire.c │ ├── aslrequesttags.c │ ├── asmallocpooled.c │ ├── asmcreatepool.c │ ├── asmdeletepool.c │ ├── asmfreepooled.c │ ├── beginio.c │ ├── bestcmodeidtags.c │ ├── bestmodeid.c │ ├── buildeasyrequest.c │ ├── callhook.c │ ├── changeextsprite.c │ ├── checkrexxmsg.c │ ├── closeworkbenchobject.c │ ├── coercemethod.c │ ├── copyregion.c │ ├── createextio.c │ ├── creategadget.c │ ├── createmenus.c │ ├── createnewproctags.c │ ├── createport.c │ ├── createstdio.c │ ├── createtask.c │ ├── deleteextio.c │ ├── deleteport.c │ ├── deletestdio.c │ ├── deletetask.c │ ├── dodtmethod.c │ ├── dogadgetmethod.c │ ├── domethod.c │ ├── dosupermethod.c │ ├── dosupernew.c │ ├── drawbevelbox.c │ ├── easyrequest.c │ ├── easystruct_util.h │ ├── erroroutput.c │ ├── extendfonttags.c │ ├── fastrand.c │ ├── fprintf.c │ ├── freeievents.c │ ├── fwritef.c │ ├── getdatastreamfromformat.c │ ├── getdtattrs.c │ ├── getextsprite.c │ ├── getrexxvar.c │ ├── getrpattrs.c │ ├── getseglistinfotags.c │ ├── getvisualinfo.c │ ├── gt_getgadgetattrs.c │ ├── gt_setgadgetattrs.c │ ├── hookentry.c │ ├── hotkey.c │ ├── invertstring.c │ ├── invertstringforward.c │ ├── layoutmenuitems.c │ ├── layoutmenus.c │ ├── liballocaligned.c │ ├── liballocpooled.c │ ├── libcreatepool.c │ ├── libdeletepool.c │ ├── libfreepooled.c │ ├── lockbitmaptags.c │ ├── makeworkbenchobjectvisible.c │ ├── mergesortlist.c │ ├── mmakefile.src │ ├── newdtobject.c │ ├── newlist.c │ ├── newloadsegtags.c │ ├── newobject.c │ ├── newrawdofmt.c │ ├── newrectregion.c │ ├── obtainbestpen.c │ ├── obtaininfo.c │ ├── openamigaguide.c │ ├── openamigaguideasync.c │ ├── opencatalog.c │ ├── openscreentags.c │ ├── openwindowtags.c │ ├── openworkbenchobject.c │ ├── pool.h │ ├── printf.c │ ├── rangerand.c │ ├── refreshdtobject.c │ ├── refreshdtobjects.c │ ├── releaseinfo.c │ ├── removeamigaguidehost.c │ ├── selecterroroutput.c │ ├── sendamigaguidecmd.c │ ├── sendamigaguidecontext.c │ ├── setamigaguideattrs.c │ ├── setamigaguidecontext.c │ ├── setattrs.c │ ├── setdtattrs.c │ ├── setgadgetattrs.c │ ├── setinfo.c │ ├── setrexxvar.c │ ├── setrpattrs.c │ ├── setsuperattrs.c │ ├── setwindowpointer.c │ ├── snprintf.c │ ├── sprintf.c │ ├── strdup.c │ ├── systemtags.c │ ├── timedelay.c │ ├── unlockbitmaptags.c │ ├── videocontroltags.c │ └── workbenchcontrol.c ├── arossupport │ ├── _vkprintf.c │ ├── calcchecksum.c │ ├── clonerastport.c │ ├── createbstr.c │ ├── createrastport.c │ ├── createseglist.c │ ├── debugmem.c │ ├── deinitrastport.c │ ├── freerastport.c │ ├── freestruct.c │ ├── hexdmp.c │ ├── include │ │ ├── 64bit.h │ │ ├── arossupportbase.h │ │ ├── asmcall.h │ │ ├── atomic.h │ │ ├── bigendianio.h │ │ ├── build.h │ │ ├── crt_replacement.h │ │ ├── debug.h │ │ ├── libcall.h │ │ ├── macros.h │ │ ├── mathieee64bitdefines.h │ │ ├── oldprograms.h │ │ ├── purify.h │ │ ├── strmacro.h │ │ └── system.h │ ├── isdosentrya.c │ ├── kprintf.c │ ├── libfindtagitem.c │ ├── libgettagdata.c │ ├── libnexttagitem.c │ ├── mmakefile.src │ ├── nastyfreemem.c │ ├── purify.c │ ├── rawputchars.c │ ├── readbyte.c │ ├── readdouble.c │ ├── readfloat.c │ ├── readlong.c │ ├── readstring.c │ ├── readstruct.c │ ├── readword.c │ ├── removeslist.c │ ├── rkprintf.c │ ├── vkprintf.c │ ├── writebyte.c │ ├── writedouble.c │ ├── writefloat.c │ ├── writelong.c │ ├── writestring.c │ ├── writestruct.c │ └── writeword.c ├── autoinit │ ├── __showerror.c │ ├── __stdiowin.c │ ├── _programname.c │ ├── auto │ ├── autoinit.h │ ├── autoinit_intern.h │ ├── commandline.c │ ├── commandname.c │ ├── detach.c │ ├── detach.h │ ├── fromwb.c │ ├── functions.c │ ├── initexitsets.c │ ├── libraries.c │ ├── libraries_nolibs.c │ ├── mmakefile.src │ ├── programentries.c │ ├── startupvars.c │ └── stdiowin.c ├── boost │ ├── boost_1_88_0-aros.diff │ └── mmakefile.src ├── coolimages │ ├── askimage.c │ ├── buttonclass.c │ ├── cancelimage.c │ ├── clockimage.c │ ├── diskimage.c │ ├── dotimage.c │ ├── flagimage.c │ ├── headimage.c │ ├── imageclass.c │ ├── include │ │ └── coolimages.h │ ├── infoimage.c │ ├── kbdimage.c │ ├── keyimage.c │ ├── loadimage.c │ ├── mmakefile.src │ ├── monitorimage.c │ ├── mouseimage.c │ ├── saveimage.c │ ├── switchimage.c │ ├── useimage.c │ ├── warnimage.c │ └── windowimage.c ├── crt │ ├── posixc │ │ ├── .gitignore │ │ ├── LEGAL │ │ ├── __alloca.c │ │ ├── __assert.c │ │ ├── __dirdesc.h │ │ ├── __exec.c │ │ ├── __exec.h │ │ ├── __fdesc.c │ │ ├── __fdesc.h │ │ ├── __fopen.c │ │ ├── __fseeko.c │ │ ├── __ftello.c │ │ ├── __get_default_file.c │ │ ├── __getc.c │ │ ├── __optionallibs.c │ │ ├── __optionallibs.h │ │ ├── __posixc_env.c │ │ ├── __posixc_env.h │ │ ├── __posixc_init.c │ │ ├── __posixc_intbase.h │ │ ├── __posixc_nixmain.c │ │ ├── __posixc_stdstreams.c │ │ ├── __posixc_time.h │ │ ├── __posixc_timer.c │ │ ├── __rand48.c │ │ ├── __stat.c │ │ ├── __stat.h │ │ ├── __stdio.c │ │ ├── __stdio.h │ │ ├── __termios.h │ │ ├── __upath.c │ │ ├── __upath.h │ │ ├── __usergrp.c │ │ ├── __usergrp.h │ │ ├── __vfork.c │ │ ├── __vfork.h │ │ ├── access.c │ │ ├── alphasort.c │ │ ├── alphasort64.c │ │ ├── background.c │ │ ├── basename.c │ │ ├── cfgetispeed.c │ │ ├── cfgetospeed.c │ │ ├── cfsetispeed.c │ │ ├── cfsetospeed.c │ │ ├── chdir.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── clearerr.c │ │ ├── clock_gettime.c │ │ ├── close.c │ │ ├── closedir.c │ │ ├── creat.c │ │ ├── creat64.c │ │ ├── ctype.c │ │ ├── dirfd.c │ │ ├── dirname.c │ │ ├── drand48.c │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── endgrent.c │ │ ├── endpwent.c │ │ ├── erand48.c │ │ ├── execl.c │ │ ├── execlp.c │ │ ├── execv.c │ │ ├── execve.c │ │ ├── execvp.c │ │ ├── fchdir.c │ │ ├── fchmod.c │ │ ├── fchmodat.c │ │ ├── fchown.c │ │ ├── fclose.c │ │ ├── fcntl.c │ │ ├── fdopen.c │ │ ├── fdopendir.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetpos.c │ │ ├── fgetpos64.c │ │ ├── fgets.c │ │ ├── fileno.c │ │ ├── flock.c │ │ ├── flockfile.c │ │ ├── fopen.c │ │ ├── fopen64.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fread.c │ │ ├── freelocale.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fseeko.c │ │ ├── fseeko64.c │ │ ├── fsetpos.c │ │ ├── fsetpos64.c │ │ ├── fstat.c │ │ ├── fstat64.c │ │ ├── fstatat.c │ │ ├── fstatvfs.c │ │ ├── fsync.c │ │ ├── ftell.c │ │ ├── ftello.c │ │ ├── ftello64.c │ │ ├── ftime.c │ │ ├── ftruncate.c │ │ ├── funlockfile.c │ │ ├── fwrite.c │ │ ├── gcvt.c │ │ ├── getc.c │ │ ├── getc_unlocked.c │ │ ├── getchar.c │ │ ├── getcwd.c │ │ ├── getegid.c │ │ ├── getenv.c │ │ ├── geteuid.c │ │ ├── getfsstat.c │ │ ├── getgid.c │ │ ├── getgrent.c │ │ ├── getgrgid.c │ │ ├── getgrnam.c │ │ ├── getgroups.c │ │ ├── getloadavg.c │ │ ├── getlogin.c │ │ ├── getopt.c │ │ ├── getopt_long.c │ │ ├── getpass.c │ │ ├── getpgid.c │ │ ├── getpgrp.c │ │ ├── getpid.c │ │ ├── getppid.c │ │ ├── getpwent.c │ │ ├── getpwnam.c │ │ ├── getpwuid.c │ │ ├── getrlimit.c │ │ ├── gets.c │ │ ├── gettimeofday.c │ │ ├── getuid.c │ │ ├── getw.c │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── aros │ │ │ │ ├── features.h │ │ │ │ ├── posixc │ │ │ │ │ ├── alloca.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── ctype.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── grp.h │ │ │ │ │ ├── langinfo.h │ │ │ │ │ ├── libgen.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── locale.h │ │ │ │ │ ├── nl_types.h │ │ │ │ │ ├── pwd.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── mount.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── select.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timeb.h │ │ │ │ │ │ ├── times.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── uio.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ └── wait.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── utime.h │ │ │ │ │ ├── wchar.h │ │ │ │ │ └── wctype.h │ │ │ │ └── types │ │ │ │ │ ├── blk_t.h │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ ├── dev_t.h │ │ │ │ │ ├── fs_t.h │ │ │ │ │ ├── gid_t.h │ │ │ │ │ ├── id_t.h │ │ │ │ │ ├── ino_t.h │ │ │ │ │ ├── iovec_s.h │ │ │ │ │ ├── itimerspec_s.h │ │ │ │ │ ├── key_t.h │ │ │ │ │ ├── mode_t.h │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ ├── off_t.h │ │ │ │ │ ├── pid_t.h │ │ │ │ │ ├── regoff_t.h │ │ │ │ │ ├── sa_family_t.h │ │ │ │ │ ├── sigaction_s.h │ │ │ │ │ ├── sigevent_s.h │ │ │ │ │ ├── siginfo_t.h │ │ │ │ │ ├── sigset_t.h │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ ├── ssize_t.h │ │ │ │ │ ├── stack_t.h │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ ├── timer_t.h │ │ │ │ │ ├── timespec_s.h │ │ │ │ │ ├── ucontext_t.h │ │ │ │ │ ├── uid_t.h │ │ │ │ │ └── useconds_t.h │ │ │ ├── libraries │ │ │ │ └── posixc.h │ │ │ └── mmakefile.src │ │ ├── ioctl.c │ │ ├── isatty.c │ │ ├── iswalnum_l.c │ │ ├── iswalpha_l.c │ │ ├── iswblank_l.c │ │ ├── iswcntrl_l.c │ │ ├── iswdigit_l.c │ │ ├── iswgraph_l.c │ │ ├── iswlower_l.c │ │ ├── iswprint_l.c │ │ ├── iswpunct_l.c │ │ ├── iswspace_l.c │ │ ├── iswupper_l.c │ │ ├── iswxdigit_l.c │ │ ├── jrand48.c │ │ ├── kill.c │ │ ├── lcong48.c │ │ ├── link.c │ │ ├── localeconv_l.c │ │ ├── lrand48.c │ │ ├── lseek.c │ │ ├── lseek64.c │ │ ├── lstat.c │ │ ├── lstat64.c │ │ ├── mbsnrtowcs.c │ │ ├── mkdir.c │ │ ├── mknod.c │ │ ├── mkstemp.c │ │ ├── mktemp.c │ │ ├── mmakefile.src │ │ ├── mrand48.c │ │ ├── nanosleep.c │ │ ├── newlocale.c │ │ ├── nl_langinfo.c │ │ ├── nl_langinfo_l.c │ │ ├── nrand48.c │ │ ├── open.c │ │ ├── openat.c │ │ ├── opendir.c │ │ ├── pathconf.c │ │ ├── pclose.c │ │ ├── perror.c │ │ ├── pipe.c │ │ ├── popen.c │ │ ├── posix_memalign.c │ │ ├── posixc.conf │ │ ├── posixc_environ.c │ │ ├── posixc_lfa.conf │ │ ├── posixc_startup.c │ │ ├── printf.c │ │ ├── pselect.c │ │ ├── putc.c │ │ ├── putchar.c │ │ ├── putenv.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── rand48.h │ │ ├── rand_r.c │ │ ├── random.c │ │ ├── random.h │ │ ├── read.c │ │ ├── readdir.c │ │ ├── readdir64.c │ │ ├── readlink.c │ │ ├── realpath.c │ │ ├── regex │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile.inc │ │ │ ├── WHATSNEW │ │ │ ├── cclass.h │ │ │ ├── cname.h │ │ │ ├── engine.c │ │ │ ├── re_format.7 │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regex.3 │ │ │ ├── regex2.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ └── utils.h │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── rewinddir.c │ │ ├── rmdir.c │ │ ├── scandir.c │ │ ├── scandir64.c │ │ ├── scanf.c │ │ ├── seed48.c │ │ ├── seekdir.c │ │ ├── select.c │ │ ├── setbuf.c │ │ ├── setegid.c │ │ ├── setenv.c │ │ ├── seteuid.c │ │ ├── setgid.c │ │ ├── setgrent.c │ │ ├── setlinebuf.c │ │ ├── setpwent.c │ │ ├── setrlimit.c │ │ ├── setsid.c │ │ ├── setuid.c │ │ ├── setvbuf.c │ │ ├── sigaction.c │ │ ├── sigaddset.c │ │ ├── sigdelset.c │ │ ├── sigemptyset.c │ │ ├── sigfillset.c │ │ ├── sigismember.c │ │ ├── siglongjmp.c │ │ ├── sigpending.c │ │ ├── sigprocmask.c │ │ ├── sigsetjmp.c │ │ ├── sigsuspend.c │ │ ├── sleep.c │ │ ├── srand48.c │ │ ├── stat.c │ │ ├── stat64.c │ │ ├── statfs.c │ │ ├── statvfs.c │ │ ├── strcoll_l.c │ │ ├── strerror.c │ │ ├── strftime_l.c │ │ ├── strptime.c │ │ ├── strtod_l.c │ │ ├── strtof_l.c │ │ ├── strtol_l.c │ │ ├── strtold_l.c │ │ ├── strtoll_l.c │ │ ├── strtoul_l.c │ │ ├── strtoull_l.c │ │ ├── strxfrm_l.c │ │ ├── swab.c │ │ ├── symlink.c │ │ ├── sync.c │ │ ├── sysconf.c │ │ ├── system.c │ │ ├── tcgetattr.c │ │ ├── tcgetpgrp.c │ │ ├── tcsetattr.c │ │ ├── telldir.c │ │ ├── tempnam.c │ │ ├── times.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── towlower_l.c │ │ ├── towupper_l.c │ │ ├── truncate.c │ │ ├── ttyname.c │ │ ├── umask.c │ │ ├── uname.c │ │ ├── ungetc.c │ │ ├── unlinkat.c │ │ ├── unsetenv.c │ │ ├── updatestdio.c │ │ ├── uselocale.c │ │ ├── usleep.c │ │ ├── utime.c │ │ ├── utimes.c │ │ ├── vfork.c │ │ ├── vfork_longjmp.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── wait.c │ │ ├── waitpid.c │ │ ├── wcscoll.c │ │ ├── wcscoll_l.c │ │ ├── wcsnrtombs.c │ │ ├── wcstoimax.c │ │ ├── wcstoll.c │ │ ├── wcstoull.c │ │ ├── wcstoumax.c │ │ ├── wcswcs.c │ │ ├── wcsxfrm_l.c │ │ └── write.c │ └── stdc │ │ ├── .gitignore │ │ ├── LEGAL │ │ ├── __assert.c │ │ ├── __ctype.c │ │ ├── __ctype.h │ │ ├── __ctype_linklib.c │ │ ├── __cxa_atexit.c │ │ ├── __cxa_finalize.c │ │ ├── __env.c │ │ ├── __env.h │ │ ├── __exitfunc.c │ │ ├── __exitfunc.h │ │ ├── __flt_rounds.c │ │ ├── __locale.c │ │ ├── __locale.h │ │ ├── __memalign.h │ │ ├── __optionallibs.c │ │ ├── __optionallibs.h │ │ ├── __signal.c │ │ ├── __signal.h │ │ ├── __stdc_fpuprivate.c │ │ ├── __stdc_geterrnoptr.c │ │ ├── __stdc_getsigngamptr.c │ │ ├── __stdc_gmtoffset.c │ │ ├── __stdc_intbase.h │ │ ├── __stdc_mb_cur_max.c │ │ ├── __stdc_startup.c │ │ ├── __stdcio_assert.c │ │ ├── __stdcio_env.c │ │ ├── __stdcio_environ.c │ │ ├── __stdcio_init.c │ │ ├── __stdcio_intbase.h │ │ ├── __stdcio_stdstreams.c │ │ ├── __stdio.c │ │ ├── __stdio.h │ │ ├── __vcformat.c │ │ ├── __vcscan.c │ │ ├── __vwformat.c │ │ ├── __vwscanf.c │ │ ├── _exit.c │ │ ├── _fenv.c │ │ ├── _unicode_tables.c │ │ ├── abort.c │ │ ├── abs.c │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── acoshl.c │ │ ├── acosl.c │ │ ├── aligned_alloc.c │ │ ├── asctime.c │ │ ├── asctime_r.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── asinl.c │ │ ├── asprintf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atan2f.c │ │ ├── atan2l.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── atanhl.c │ │ ├── atanl.c │ │ ├── atexit.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── background.c │ │ ├── bessel.c │ │ ├── bsearch.c │ │ ├── btowc.c │ │ ├── cabs.c │ │ ├── cabsf.c │ │ ├── cabsl.c │ │ ├── calloc.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── cbrtl.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── ceill.c │ │ ├── clearerr.c │ │ ├── clock.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── coshl.c │ │ ├── cosl.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── ctype.c │ │ ├── debug.h │ │ ├── difftime.c │ │ ├── div.c │ │ ├── empty.c │ │ ├── erf.c │ │ ├── erfc.c │ │ ├── erfcf.c │ │ ├── erfcl.c │ │ ├── erfclf.c │ │ ├── erff.c │ │ ├── erfl.c │ │ ├── exit.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── expf.c │ │ ├── expl.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── fabsl.c │ │ ├── fclose.c │ │ ├── fenv.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── floorl.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── fmodl.c │ │ ├── fopen.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── free.c │ │ ├── freopen.c │ │ ├── frexp.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── gamma.c │ │ ├── getc.c │ │ ├── getchar.c │ │ ├── getenv.c │ │ ├── gets.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── gmtime.c │ │ ├── gmtime_r.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── hypotl.c │ │ ├── imaxabs.c │ │ ├── imaxdiv.c │ │ ├── include │ │ ├── .gitignore │ │ ├── aros │ │ │ ├── stdc-wchar-char.h │ │ │ ├── stdc-wchar-utf8.h │ │ │ ├── stdc-wchar.h │ │ │ ├── stdc │ │ │ │ ├── _strings.h │ │ │ │ ├── assert.h │ │ │ │ ├── complex.h │ │ │ │ ├── ctype.h │ │ │ │ ├── errno.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── iso646.h │ │ │ │ ├── limits.h │ │ │ │ ├── locale.h │ │ │ │ ├── math.h │ │ │ │ ├── memory.h │ │ │ │ ├── sdgstd.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stdcnotimpl.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ ├── tgmath.h │ │ │ │ ├── time.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ │ └── types │ │ │ │ ├── __sighandler_t.h │ │ │ │ ├── clock_t.h │ │ │ │ ├── file_s.h │ │ │ │ ├── fpos_t.h │ │ │ │ ├── int_t.h │ │ │ │ ├── intptr_t.h │ │ │ │ ├── locale_s.h │ │ │ │ ├── locale_t.h │ │ │ │ ├── max_align_t.h │ │ │ │ ├── mbstate_t.h │ │ │ │ ├── null.h │ │ │ │ ├── ptrdiff_t.h │ │ │ │ ├── seek.h │ │ │ │ ├── size_t.h │ │ │ │ ├── time_t.h │ │ │ │ ├── uintptr_t.h │ │ │ │ ├── wchar_t.h │ │ │ │ ├── wctrans_t.h │ │ │ │ ├── wctype_t.h │ │ │ │ └── wint_t.h │ │ ├── libraries │ │ │ ├── stdc.h │ │ │ └── stdcio.h │ │ └── mmakefile.src │ │ ├── ioerr2errno.c │ │ ├── iswctype.c │ │ ├── labs.c │ │ ├── ldexp.c │ │ ├── ldiv.c │ │ ├── lgamma.c │ │ ├── lgammal.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── localeconv.c │ │ ├── localtime.c │ │ ├── localtime_r.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10l.c │ │ ├── log1p.c │ │ ├── log1pl.c │ │ ├── log2.c │ │ ├── log2l.c │ │ ├── logl.c │ │ ├── longjmp.c │ │ ├── malloc.c │ │ ├── math │ │ ├── LEGAL │ │ ├── aarch64 │ │ │ └── _fpmath.h │ │ ├── arm │ │ │ └── _fpmath.h │ │ ├── bsdsrc │ │ │ ├── b_exp.c │ │ │ ├── b_log.c │ │ │ ├── b_tgamma.c │ │ │ ├── math_private_openbsd.h │ │ │ └── mathimpl.h │ │ ├── e_acos.c │ │ ├── e_acosf.c │ │ ├── e_acosh.c │ │ ├── e_acoshf.c │ │ ├── e_acosl.c │ │ ├── e_asin.c │ │ ├── e_asinf.c │ │ ├── e_asinl.c │ │ ├── e_atan2.c │ │ ├── e_atan2f.c │ │ ├── e_atan2l.c │ │ ├── e_atanh.c │ │ ├── e_atanhf.c │ │ ├── e_cosh.c │ │ ├── e_coshf.c │ │ ├── e_exp.c │ │ ├── e_expf.c │ │ ├── e_fmod.c │ │ ├── e_fmodf.c │ │ ├── e_fmodl.c │ │ ├── e_gamma.c │ │ ├── e_gamma_r.c │ │ ├── e_gammaf.c │ │ ├── e_gammaf_r.c │ │ ├── e_hypot.c │ │ ├── e_hypotf.c │ │ ├── e_hypotl.c │ │ ├── e_j0.c │ │ ├── e_j0f.c │ │ ├── e_j1.c │ │ ├── e_j1f.c │ │ ├── e_jn.c │ │ ├── e_jnf.c │ │ ├── e_lgamma.c │ │ ├── e_lgamma_r.c │ │ ├── e_lgammaf.c │ │ ├── e_lgammaf_r.c │ │ ├── e_lgammal.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_log10f.c │ │ ├── e_log2.c │ │ ├── e_log2f.c │ │ ├── e_logf.c │ │ ├── e_pow.c │ │ ├── e_powf.c │ │ ├── e_rem_pio2.c │ │ ├── e_rem_pio2f.c │ │ ├── e_remainder.c │ │ ├── e_remainderf.c │ │ ├── e_remainderl.c │ │ ├── e_scalb.c │ │ ├── e_scalbf.c │ │ ├── e_sinh.c │ │ ├── e_sinhf.c │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── e_sqrtl.c │ │ ├── fpmath.h │ │ ├── i386 │ │ │ ├── _fpmath.h │ │ │ └── ieeefp.h │ │ ├── infinity.c │ │ ├── k_cos.c │ │ ├── k_cosf.c │ │ ├── k_exp.c │ │ ├── k_expf.c │ │ ├── k_log.h │ │ ├── k_logf.h │ │ ├── k_rem_pio2.c │ │ ├── k_rem_pio2f.c │ │ ├── k_sin.c │ │ ├── k_sincos.h │ │ ├── k_sincosf.h │ │ ├── k_sincosl.h │ │ ├── k_sinf.c │ │ ├── k_tan.c │ │ ├── k_tanf.c │ │ ├── ld128 │ │ │ ├── e_acoshl.c │ │ │ ├── e_atanhl.c │ │ │ ├── e_coshl.c │ │ │ ├── e_expl.c │ │ │ ├── e_lgammal_r.c │ │ │ ├── e_log10l.c │ │ │ ├── e_log2l.c │ │ │ ├── e_logl.c │ │ │ ├── e_powl.c │ │ │ ├── e_rem_pio2l.h │ │ │ ├── e_sinhl.c │ │ │ ├── e_tgammal.c │ │ │ ├── invtrig.c │ │ │ ├── invtrig.h │ │ │ ├── k_cosl.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanl.c │ │ │ ├── s_asinhl.c │ │ │ ├── s_erfl.c │ │ │ ├── s_exp2l.c │ │ │ ├── s_expm1l.c │ │ │ ├── s_log1pl.c │ │ │ ├── s_nanl.c │ │ │ └── s_tanhl.c │ │ ├── ld80 │ │ │ ├── e_acoshl.c │ │ │ ├── e_atanhl.c │ │ │ ├── e_coshl.c │ │ │ ├── e_expl.c │ │ │ ├── e_lgammal_r.c │ │ │ ├── e_log10l.c │ │ │ ├── e_log2l.c │ │ │ ├── e_logl.c │ │ │ ├── e_powl.c │ │ │ ├── e_rem_pio2l.h │ │ │ ├── e_sinhl.c │ │ │ ├── e_tgammal.c │ │ │ ├── invtrig.c │ │ │ ├── invtrig.h │ │ │ ├── k_cosl.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanl.c │ │ │ ├── s_asinhl.c │ │ │ ├── s_erfl.c │ │ │ ├── s_exp2l.c │ │ │ ├── s_expm1l.c │ │ │ ├── s_log1pl.c │ │ │ ├── s_nanl.c │ │ │ └── s_tanhl.c │ │ ├── m68k │ │ │ └── _fpmath.h │ │ ├── math_private.h │ │ ├── math_private_aros.h │ │ ├── polevll.c │ │ ├── ppc │ │ │ └── _fpmath.h │ │ ├── riscv │ │ │ └── _fpmath.h │ │ ├── riscv64 │ │ │ └── _fpmath.h │ │ ├── s_asinh.c │ │ ├── s_asinhf.c │ │ ├── s_atan.c │ │ ├── s_atanf.c │ │ ├── s_atanl.c │ │ ├── s_cabs.c │ │ ├── s_cabsf.c │ │ ├── s_cabsl.c │ │ ├── s_cacos.c │ │ ├── s_cacosf.c │ │ ├── s_cacosh.c │ │ ├── s_cacoshf.c │ │ ├── s_cacoshl.c │ │ ├── s_cacosl.c │ │ ├── s_carg.c │ │ ├── s_cargf.c │ │ ├── s_cargl.c │ │ ├── s_casin.c │ │ ├── s_casinf.c │ │ ├── s_casinh.c │ │ ├── s_casinhf.c │ │ ├── s_casinhl.c │ │ ├── s_casinl.c │ │ ├── s_catan.c │ │ ├── s_catanf.c │ │ ├── s_catanh.c │ │ ├── s_catanhf.c │ │ ├── s_catanhl.c │ │ ├── s_catanl.c │ │ ├── s_cbrt.c │ │ ├── s_cbrtf.c │ │ ├── s_cbrtl.c │ │ ├── s_ccos.c │ │ ├── s_ccosf.c │ │ ├── s_ccosh.c │ │ ├── s_ccoshf.c │ │ ├── s_ccoshl.c │ │ ├── s_ccosl.c │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_ceill.c │ │ ├── s_cexp.c │ │ ├── s_cexpf.c │ │ ├── s_cexpl.c │ │ ├── s_cimag.c │ │ ├── s_cimagf.c │ │ ├── s_cimagl.c │ │ ├── s_clog.c │ │ ├── s_clogf.c │ │ ├── s_clogl.c │ │ ├── s_conj.c │ │ ├── s_conjf.c │ │ ├── s_conjl.c │ │ ├── s_copysign.c │ │ ├── s_copysignf.c │ │ ├── s_copysignl.c │ │ ├── s_cos.c │ │ ├── s_cosf.c │ │ ├── s_cosl.c │ │ ├── s_cpow.c │ │ ├── s_cpowf.c │ │ ├── s_cpowl.c │ │ ├── s_cproj.c │ │ ├── s_cprojf.c │ │ ├── s_cprojl.c │ │ ├── s_creal.c │ │ ├── s_crealf.c │ │ ├── s_creall.c │ │ ├── s_csin.c │ │ ├── s_csinf.c │ │ ├── s_csinh.c │ │ ├── s_csinhf.c │ │ ├── s_csinhl.c │ │ ├── s_csinl.c │ │ ├── s_csqrt.c │ │ ├── s_csqrtf.c │ │ ├── s_csqrtl.c │ │ ├── s_ctan.c │ │ ├── s_ctanf.c │ │ ├── s_ctanh.c │ │ ├── s_ctanhf.c │ │ ├── s_ctanhl.c │ │ ├── s_ctanl.c │ │ ├── s_erf.c │ │ ├── s_erff.c │ │ ├── s_exp2.c │ │ ├── s_exp2f.c │ │ ├── s_expm1.c │ │ ├── s_expm1f.c │ │ ├── s_fabs.c │ │ ├── s_fabsf.c │ │ ├── s_fabsl.c │ │ ├── s_fdim.c │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_floorl.c │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_fmal.c │ │ ├── s_fmax.c │ │ ├── s_fmaxf.c │ │ ├── s_fmaxl.c │ │ ├── s_fmin.c │ │ ├── s_fminf.c │ │ ├── s_fminl.c │ │ ├── s_fpclassify.c │ │ ├── s_frexp.c │ │ ├── s_frexpf.c │ │ ├── s_frexpl.c │ │ ├── s_ilogb.c │ │ ├── s_ilogbf.c │ │ ├── s_ilogbl.c │ │ ├── s_isfinite.c │ │ ├── s_isinf.c │ │ ├── s_isnan.c │ │ ├── s_isnormal.c │ │ ├── s_llrint.c │ │ ├── s_llrintf.c │ │ ├── s_llrintl.c │ │ ├── s_llround.c │ │ ├── s_llroundf.c │ │ ├── s_llroundl.c │ │ ├── s_log1p.c │ │ ├── s_log1pf.c │ │ ├── s_logb.c │ │ ├── s_logbf.c │ │ ├── s_logbl.c │ │ ├── s_lrint.c │ │ ├── s_lrintf.c │ │ ├── s_lrintl.c │ │ ├── s_lround.c │ │ ├── s_lroundf.c │ │ ├── s_lroundl.c │ │ ├── s_modf.c │ │ ├── s_modff.c │ │ ├── s_modfl.c │ │ ├── s_nan.c │ │ ├── s_nearbyint.c │ │ ├── s_nextafter.c │ │ ├── s_nextafterf.c │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquo.c │ │ ├── s_remquof.c │ │ ├── s_remquol.c │ │ ├── s_rint.c │ │ ├── s_rintf.c │ │ ├── s_rintl.c │ │ ├── s_round.c │ │ ├── s_roundf.c │ │ ├── s_roundl.c │ │ ├── s_scalbln.c │ │ ├── s_scalbn.c │ │ ├── s_scalbnf.c │ │ ├── s_scalbnl.c │ │ ├── s_signbit.c │ │ ├── s_significand.c │ │ ├── s_significandf.c │ │ ├── s_sin.c │ │ ├── s_sincos.c │ │ ├── s_sincosf.c │ │ ├── s_sincosl.c │ │ ├── s_sinf.c │ │ ├── s_sinl.c │ │ ├── s_tan.c │ │ ├── s_tanf.c │ │ ├── s_tanh.c │ │ ├── s_tanhf.c │ │ ├── s_tanl.c │ │ ├── s_tgammaf.c │ │ ├── s_trunc.c │ │ ├── s_truncf.c │ │ ├── s_truncl.c │ │ ├── w_cabs.c │ │ ├── w_cabsf.c │ │ ├── w_cabsl.c │ │ └── x86_64 │ │ │ ├── _fpmath.h │ │ │ └── ieeefp.h │ │ ├── mblen.c │ │ ├── mbrlen.c │ │ ├── mbrtowc.c │ │ ├── mbsrtowcs.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── mktime.c │ │ ├── mmakefile.src │ │ ├── modf.c │ │ ├── modff.c │ │ ├── modfl.c │ │ ├── on_exit.c │ │ ├── perror.c │ │ ├── pow.c │ │ ├── powf.c │ │ ├── powl.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putchar.c │ │ ├── puts.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── qsort.c │ │ ├── raise.c │ │ ├── rand.c │ │ ├── realloc.c │ │ ├── realloc_nocopy.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── remove.c │ │ ├── remquo.c │ │ ├── remquol.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setjmp.c │ │ ├── setlocale.c │ │ ├── setvbuf.c │ │ ├── signal.c │ │ ├── sin.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sinhl.c │ │ ├── sinl.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sqrt.c │ │ ├── sqrtf.c │ │ ├── sqrtl.c │ │ ├── sscanf.c │ │ ├── stccpy.c │ │ ├── stcd_l.c │ │ ├── stch_l.c │ │ ├── stcl_d.c │ │ ├── stcl_h.c │ │ ├── stcl_o.c │ │ ├── stco_l.c │ │ ├── stcu_d.c │ │ ├── stdc.conf │ │ ├── stdc_startup.c │ │ ├── stdcio.conf │ │ ├── stdcio_environ.c │ │ ├── stdcio_startup.c │ │ ├── stpblk.c │ │ ├── stpcpy.c │ │ ├── stpsym.c │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcoll.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strerror.c │ │ ├── strftime.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strlwr.c │ │ ├── strncasecmp.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strrev.c │ │ ├── strsep.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtod.c │ │ ├── strtof.c │ │ ├── strtoimax.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strtol.c │ │ ├── strtold.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoumax.c │ │ ├── strupr.c │ │ ├── strxfrm.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── system.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── tanhl.c │ │ ├── tanl.c │ │ ├── tgamma.c │ │ ├── tgammal.c │ │ ├── time.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── towctrans.c │ │ ├── towlower.c │ │ ├── towupper.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── truncl.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wchar.c │ │ ├── wcrtomb.c │ │ ├── wcscat.c │ │ ├── wcschr.c │ │ ├── wcscmp.c │ │ ├── wcscpy.c │ │ ├── wcscspn.c │ │ ├── wcsftime.c │ │ ├── wcslen.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsrtombs.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstod.c │ │ ├── wcstof.c │ │ ├── wcstok.c │ │ ├── wcstol.c │ │ ├── wcstold.c │ │ ├── wcstombs.c │ │ ├── wcstoul.c │ │ ├── wcsxfrm.c │ │ ├── wctob.c │ │ ├── wctomb.c │ │ ├── wctrans.c │ │ ├── wctype.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ ├── wmemset.c │ │ ├── wprintf.c │ │ └── wscanf.c ├── cunit │ ├── .gitignore │ ├── cunit-3.5.2-aros.diff │ └── mmakefile.src ├── dynmodule │ ├── dynmodule_export.c │ ├── dynmodule_freemodule.c │ ├── dynmodule_getprocaddr.c │ ├── dynmodule_glue.c │ ├── dynmodule_import.c │ ├── dynmodule_intern.h │ ├── dynmodule_loadmodule.c │ ├── dynmodule_modules.c │ ├── dynmodule_modules.h │ ├── dynmodule_removemodule.c │ ├── include │ │ ├── dynmodstack.h │ │ └── dynmodule.h │ └── mmakefile.src ├── fmtprintf │ ├── fmtprintf.c │ └── fmtprintf_pre.c ├── include │ ├── .gitignore │ ├── SDI │ │ ├── SDI_compiler.h │ │ ├── SDI_hook.h │ │ ├── SDI_interrupt.h │ │ ├── SDI_lib.h │ │ ├── SDI_misc.h │ │ ├── SDI_stdarg.h │ │ └── doc │ │ │ ├── README │ │ │ └── examples │ │ │ ├── hooks │ │ │ ├── example_hookuse.c │ │ │ ├── makefile.mos │ │ │ ├── makefile.os3 │ │ │ └── makefile.os4 │ │ │ ├── libraries │ │ │ ├── example_lib.c │ │ │ ├── makefile.mos │ │ │ ├── makefile.os3 │ │ │ └── makefile.os4 │ │ │ ├── misc │ │ │ ├── example_miscuse.c │ │ │ ├── makefile.mos │ │ │ ├── makefile.os3 │ │ │ └── makefile.os4 │ │ │ └── varargs │ │ │ ├── example_varargs.c │ │ │ ├── makefile.mos │ │ │ ├── makefile.os3 │ │ │ └── makefile.os4 │ ├── aros │ │ ├── arosbase.h │ │ ├── bootloader.h │ │ ├── cpu.h │ │ ├── genmodule.h │ │ ├── inquire.h │ │ ├── io.h │ │ ├── kernel.h │ │ ├── locale.h │ │ ├── multiboot.h │ │ ├── multiboot2.h │ │ ├── preprocessor.hpp │ │ ├── preprocessor │ │ │ ├── array.hpp │ │ │ ├── array │ │ │ │ ├── cast2iptr.hpp │ │ │ │ ├── cast2tagitem.hpp │ │ │ │ └── cast2type.hpp │ │ │ ├── variadic.hpp │ │ │ └── variadic │ │ │ │ ├── cast2iptr.hpp │ │ │ │ ├── cast2tagitem.hpp │ │ │ │ ├── cast2type.hpp │ │ │ │ ├── elem.hpp │ │ │ │ └── size.hpp │ │ ├── printertag.h │ │ ├── shcommands.h │ │ ├── shcommands_embedded.h │ │ ├── shcommands_notembedded.h │ │ ├── symbolsets.h │ │ ├── systypes.h │ │ └── types │ │ │ ├── spinlock_s.h │ │ │ └── timeval_s.h │ ├── asm.c │ ├── asm │ │ ├── cpu.h │ │ └── io.h │ ├── bluetooth │ │ ├── assignednumbers.h │ │ ├── avdtp.h │ │ ├── hci.h │ │ ├── l2cap.h │ │ ├── rfcomm.h │ │ └── sdp.h │ ├── c++ │ │ ├── exec │ │ │ └── types.hpp │ │ └── swappedtype.hpp │ ├── clib │ │ ├── alib_protos.h │ │ ├── arossupport_protos.h │ │ ├── boopsistubs.h │ │ ├── execlock_protos.h │ │ ├── input_protos.h │ │ ├── macros.h │ │ └── wb_protos.h │ ├── datatypes │ │ ├── PictureClassExt.h │ │ ├── amigaguideclass.h │ │ ├── animationclass.h │ │ ├── animationclassext.h │ │ ├── datatypes.h │ │ ├── datatypesclass.h │ │ ├── pictureclass.h │ │ ├── soundclass.h │ │ ├── soundclassext.h │ │ └── textclass.h │ ├── defines │ │ └── execlock.h │ ├── devices │ │ ├── ata.h │ │ ├── audio.h │ │ ├── bluetoothhci.h │ │ ├── bootblock.h │ │ ├── cd.h │ │ ├── clipboard.h │ │ ├── hardblocks.h │ │ ├── input.h │ │ ├── inputevent.h │ │ ├── irda.h │ │ ├── keyboard.h │ │ ├── keymap.h │ │ ├── narrator.h │ │ ├── newstyle.h │ │ ├── parallel.h │ │ ├── printer.h │ │ ├── prtbase.h │ │ ├── prtgfx.h │ │ ├── rawkeycodes.h │ │ ├── sana2.h │ │ ├── sana2specialstats.h │ │ ├── sana2wireless.h │ │ ├── scsidisk.h │ │ ├── serial.h │ │ ├── smart.h │ │ ├── timer.h │ │ ├── trackdisk.h │ │ ├── usb.h │ │ ├── usb_audio.h │ │ ├── usb_cdc.h │ │ ├── usb_dfu.h │ │ ├── usb_hid.h │ │ ├── usb_hub.h │ │ ├── usb_massstorage.h │ │ ├── usb_printer.h │ │ ├── usb_video.h │ │ └── usbhardware.h │ ├── diskfont │ │ ├── diskfont.h │ │ ├── diskfonttag.h │ │ ├── glyph.h │ │ └── oterrors.h │ ├── dos │ │ ├── bptr.h │ │ ├── cliinit.h │ │ ├── datetime.h │ │ ├── dos.h │ │ ├── dosasl.h │ │ ├── dosextens.h │ │ ├── doshunks.h │ │ ├── dostags.h │ │ ├── elf.h │ │ ├── exall.h │ │ ├── filehandler.h │ │ ├── filesystemids.h │ │ ├── notify.h │ │ ├── rdargs.h │ │ ├── record.h │ │ ├── stdio.h │ │ └── var.h │ ├── exec │ │ ├── alerts.h │ │ ├── avl.h │ │ ├── devices.h │ │ ├── errors.h │ │ ├── exec.h │ │ ├── execbase.inc │ │ ├── initializers.h │ │ ├── interrupts.h │ │ ├── io.h │ │ ├── libraries.h │ │ ├── lists.h │ │ ├── memheaderext.h │ │ ├── memory.h │ │ ├── nodes.h │ │ ├── pm.h │ │ ├── ports.h │ │ ├── rawfmt.h │ │ ├── resident.h │ │ ├── semaphores.h │ │ ├── tasks.h │ │ └── types.h │ ├── gadgets │ │ ├── arosmx.h │ │ ├── colorwheel.h │ │ ├── gradientslider.h │ │ └── tapedeck.h │ ├── geninc.cfg.in │ ├── graphics │ │ ├── clip.h │ │ ├── collide.h │ │ ├── copper.h │ │ ├── displayinfo.h │ │ ├── driver.h │ │ ├── gels.h │ │ ├── gfx.h │ │ ├── gfxbase.h │ │ ├── gfxmacros.h │ │ ├── gfxnodes.h │ │ ├── layers.h │ │ ├── layersext.h │ │ ├── modeid.h │ │ ├── monitor.h │ │ ├── rastport.h │ │ ├── regions.h │ │ ├── rpattr.h │ │ ├── scale.h │ │ ├── sprite.h │ │ ├── text.h │ │ ├── videocontrol.h │ │ └── view.h │ ├── hardware │ │ ├── ahci.h │ │ ├── blit.h │ │ ├── cia.h │ │ ├── cpu │ │ │ ├── cpu.h │ │ │ ├── cpu_i386.h │ │ │ ├── cpu_m68k.h │ │ │ ├── cpu_mpspec.h │ │ │ └── memory.h │ │ ├── custom.h │ │ ├── efi │ │ │ ├── boot.h │ │ │ ├── config.h │ │ │ ├── console.h │ │ │ ├── efi.h │ │ │ ├── gop.h │ │ │ ├── runtime.h │ │ │ ├── tables.h │ │ │ └── types.h │ │ ├── i8259a.h │ │ ├── intbits.h │ │ ├── mmc.h │ │ ├── openfirmware.h │ │ ├── pic │ │ │ └── pic.h │ │ ├── pit.h │ │ ├── sdhc.h │ │ ├── uart.h │ │ ├── usb │ │ │ ├── ehci.h │ │ │ ├── ohci.h │ │ │ ├── uhci.h │ │ │ └── xhci.h │ │ └── vbe.h │ ├── inline │ │ └── execlock.h │ ├── intuition │ │ ├── cghooks.h │ │ ├── classalign.h │ │ ├── classes.h │ │ ├── classusr.h │ │ ├── diattr.h │ │ ├── extensions.h │ │ ├── gadgetclass.h │ │ ├── icclass.h │ │ ├── imageclass.h │ │ ├── intuition.h │ │ ├── intuitionbase.h │ │ ├── iobsolete.h │ │ ├── iprefs.h │ │ ├── menudecorclass.h │ │ ├── monitorclass.h │ │ ├── pointerclass.h │ │ ├── preferences.h │ │ ├── scrdecorclass.h │ │ ├── screens.h │ │ ├── sghooks.h │ │ └── windecorclass.h │ ├── irda │ │ └── irlap.h │ ├── libcore │ │ └── compiler.h │ ├── libraries │ │ ├── amigaguide.h │ │ ├── arp.h │ │ ├── asl.h │ │ ├── commodities.h │ │ ├── configregs.h │ │ ├── configvars.h │ │ ├── coolimages.h │ │ ├── cybergraphics.h │ │ ├── debug.h │ │ ├── desktop.h │ │ ├── diskfont.h │ │ ├── dos.h │ │ ├── dosextens.h │ │ ├── expansion.h │ │ ├── expansionbase.h │ │ ├── filehandler.h │ │ ├── gadtools.h │ │ ├── iffparse.h │ │ ├── kms.h │ │ ├── locale.h │ │ ├── localestd.h │ │ ├── lowlevel.h │ │ ├── lowlevel_ext.h │ │ ├── mathffp.h │ │ ├── mathieeedp.h │ │ ├── mathieeesp.h │ │ ├── mufs.h │ │ ├── muiscreen.h │ │ ├── nonvolatile.h │ │ ├── pccard.h │ │ ├── pm.h │ │ ├── poseidon.h │ │ ├── prometheus.h │ │ ├── realtime.h │ │ ├── security.h │ │ ├── thread.h │ │ └── usbclass.h │ ├── midi │ │ ├── camd.h │ │ ├── camddevices.h │ │ └── mididefs.h │ ├── mmakefile.src │ ├── pragmas │ │ ├── amigaguide_pragmas.h │ │ ├── asl_pragmas.h │ │ ├── battclock_pragmas.h │ │ ├── battmem_pragmas.h │ │ ├── bullet_pragmas.h │ │ ├── cardres_pragmas.h │ │ ├── cia_pragmas.h │ │ ├── colorwheel_pragmas.h │ │ ├── commodities_pragmas.h │ │ ├── console_pragmas.h │ │ ├── datatypes_pragmas.h │ │ ├── disk_pragmas.h │ │ ├── diskfont_pragmas.h │ │ ├── dos_pragmas.h │ │ ├── dtclass_pragmas.h │ │ ├── exec_pragmas.h │ │ ├── exec_sysbase_pragmas.h │ │ ├── execlock_pragmas.h │ │ ├── expansion_pragmas.h │ │ ├── gadtools_pragmas.h │ │ ├── graphics_pragmas.h │ │ ├── icon_pragmas.h │ │ ├── iffparse_pragmas.h │ │ ├── input_pragmas.h │ │ ├── intuition_pragmas.h │ │ ├── keymap_pragmas.h │ │ ├── layers_pragmas.h │ │ ├── locale_pragmas.h │ │ ├── lowlevel_pragmas.h │ │ ├── misc_pragmas.h │ │ ├── nonvolatile_pragmas.h │ │ ├── potgo_pragmas.h │ │ ├── ramdrive_pragmas.h │ │ ├── realtime_pragmas.h │ │ ├── reqtools_pragmas.h │ │ ├── rexxsyslib_pragmas.h │ │ ├── socket_pragmas.h │ │ ├── timer_pragmas.h │ │ ├── translator_pragmas.h │ │ ├── utility_pragmas.h │ │ └── wb_pragmas.h │ ├── prefs │ │ ├── asl.h │ │ ├── font.h │ │ ├── icontrol.h │ │ ├── input.h │ │ ├── locale.h │ │ ├── overscan.h │ │ ├── palette.h │ │ ├── pointer.h │ │ ├── prefhdr.h │ │ ├── printergfx.h │ │ ├── printerps.h │ │ ├── printertxt.h │ │ ├── screenmode.h │ │ ├── serial.h │ │ ├── sound.h │ │ ├── trackdisk.h │ │ ├── wanderer.h │ │ ├── wbpattern.h │ │ └── workbench.h │ ├── proto │ │ ├── alib.h │ │ ├── arossupport.h │ │ ├── battmem.h │ │ ├── bullet.h │ │ ├── cardres.h │ │ ├── disk.h │ │ ├── dtclass.h │ │ ├── exec_sysbase.h │ │ ├── execlock.h │ │ ├── potgo.h │ │ ├── ramdrive.h │ │ ├── translator.h │ │ └── wb.h │ ├── resources │ │ ├── battclock.h │ │ ├── card.h │ │ ├── cia.h │ │ ├── clocksource.h │ │ ├── disk.h │ │ ├── efi.h │ │ ├── execlock.h │ │ ├── filesysres.h │ │ ├── hpet.h │ │ ├── kernel.h │ │ ├── misc.h │ │ ├── pit.h │ │ ├── potgo.h │ │ └── processor.h │ ├── rexx │ │ ├── errors.h │ │ ├── rexxcall-m68k.h │ │ ├── rexxcall.h │ │ ├── rxslib.h │ │ └── storage.h │ ├── scsi │ │ ├── commands.h │ │ └── values.h │ ├── utility │ │ ├── date.h │ │ ├── hooks.h │ │ ├── name.h │ │ ├── pack.h │ │ ├── tagitem.h │ │ └── utility.h │ └── workbench │ │ ├── handler.h │ │ ├── icon.h │ │ ├── startup.h │ │ └── workbench.h ├── instrfunc │ ├── .gitignore │ ├── mmakefile.src │ ├── profile_func_enter.c │ └── profile_func_exit.c ├── libhiddstubs │ ├── .gitignore │ └── mmakefile.src ├── libinit │ ├── kickentry.c │ ├── libentry.c │ ├── libinit.c │ └── mmakefile.src ├── mmakefile.src ├── pthread │ ├── .gitignore │ ├── README.md │ ├── debug.h │ ├── mmakefile.src │ ├── pthread.c │ ├── pthread.conf │ ├── pthread.h │ ├── pthread_attr_destroy.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_cancel.c │ ├── pthread_cond_broadcast.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_timedwait.c │ ├── pthread_cond_wait.c │ ├── pthread_continue_np.c │ ├── pthread_create.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getspecific.c │ ├── pthread_intern.h │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setspecific.c │ ├── pthread_sigmask.c │ ├── pthread_suspend_np.c │ ├── sched.c │ ├── sched.h │ ├── semaphore.c │ └── semaphore.h ├── purify │ ├── Makefile │ ├── check │ ├── purify │ ├── purify.gawk │ ├── src │ │ ├── access.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── error.c │ │ ├── error.def │ │ ├── error.h │ │ ├── funcs.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── init.c │ │ ├── io.c │ │ ├── memory.c │ │ ├── memory.h │ │ ├── pbd.S │ │ ├── ped.S │ │ ├── posinfo.c │ │ ├── posinfo.h │ │ ├── stack.c │ │ ├── stubs.S │ │ ├── util.c │ │ └── util.h │ ├── t.c │ ├── t_illread.c │ ├── t_illread.out │ ├── t_illread2.c │ ├── test1.c │ ├── test1.out │ ├── test10.c │ ├── test11.c │ ├── test2.c │ ├── test2.out │ ├── test3.c │ ├── test3.out │ ├── test3.sh │ ├── test4.c │ ├── test4.out │ ├── test5.c │ ├── test5.out │ ├── test6.c │ ├── test6.out │ ├── test7.c │ ├── test7.out │ ├── test7.sh │ ├── test8.c │ ├── test8.out │ ├── test9.c │ └── test9.out ├── softfloat │ └── mmakefile.src └── startup │ ├── arm-exidx-unwind.c │ ├── cxx-startup.c │ ├── detach.c │ ├── elf-startup.c │ ├── mmakefile.src │ ├── nixmain.c │ ├── startup.c │ ├── startup.h │ ├── static-cxx-cxa-pure-virtual.cpp │ ├── static-cxx-ops.cpp │ └── static-cxx-personality.cpp ├── config ├── .gitignore ├── aros-contrib.cfg ├── aros.cfg ├── binutils_def ├── binutils_exp ├── build.cfg.in ├── cmake │ └── Platform │ │ └── AROS.cmake ├── compiler.cfg.in ├── conf.cmake.in ├── config.h.in ├── elf-specs.in ├── features ├── features.in ├── gcc_def ├── gcc_exp ├── host-conf.h.in ├── host.cfg.in ├── llvm_def ├── machine.c ├── make.cfg.in ├── make.defaults.in ├── make.tail ├── make.tmpl ├── mmakefile.src ├── specs.in ├── target.cfg.in └── toolchain_def ├── configure ├── configure.in ├── developer ├── debug │ ├── .gitignore │ ├── FindAddr.c │ ├── bifteck │ │ ├── .gitignore │ │ ├── Bifteck.c │ │ └── mmakefile.src │ ├── devtest │ │ ├── LICENSE │ │ ├── devtest.c │ │ └── mmakefile.src │ ├── gdb │ │ ├── gdbinit.in │ │ └── ignore_errors.py │ ├── kecho │ │ ├── .gitignore │ │ ├── KEcho.c │ │ └── mmakefile.src │ ├── mmakefile.src │ ├── sashimi │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── sashimi.c │ │ └── sashimi.doc │ ├── test │ │ ├── .gitignore │ │ ├── README │ │ ├── Zune │ │ │ ├── .gitignore │ │ │ ├── busy.c │ │ │ ├── col.c │ │ │ ├── crawling.c │ │ │ ├── dirlist.c │ │ │ ├── disable.c │ │ │ ├── dtpic.c │ │ │ ├── dynlist.c │ │ │ ├── font.c │ │ │ ├── gradient.c │ │ │ ├── graph.c │ │ │ ├── hideshow.c │ │ │ ├── knob.c │ │ │ ├── levelmeter.c │ │ │ ├── listinsertactive.c │ │ │ ├── loginwindow.c │ │ │ ├── mini2.c │ │ │ ├── mmakefile.src │ │ │ ├── mui4test.c │ │ │ ├── numericbutton.c │ │ │ ├── poplist.c │ │ │ ├── popscreen.c │ │ │ ├── settings.c │ │ │ ├── string.c │ │ │ ├── test.c │ │ │ ├── texticonlist.c │ │ │ ├── virttest.c │ │ │ └── volumelist.c │ │ ├── alib │ │ │ └── betest.c │ │ ├── archives │ │ │ ├── test-default-dictionary.rar │ │ │ ├── test-large-dictionary.rar │ │ │ ├── test-rar4.rar │ │ │ ├── test.tar.bz2 │ │ │ ├── test.tar.gz │ │ │ └── test.zip │ │ ├── aros │ │ │ ├── detach.c │ │ │ └── mmakefile.src │ │ ├── benchmarks │ │ │ ├── boopsi │ │ │ │ ├── .gitignore │ │ │ │ ├── common.c │ │ │ │ ├── domethod.c │ │ │ │ ├── mmakefile.src │ │ │ │ └── newobject.c │ │ │ ├── clib │ │ │ │ ├── .gitignore │ │ │ │ ├── benchmark.h │ │ │ │ ├── memset.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── stdio.c │ │ │ │ └── string.c │ │ │ ├── exec │ │ │ │ ├── .gitignore │ │ │ │ ├── allocpooled.c │ │ │ │ ├── allocvec.c │ │ │ │ ├── copymem.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── taskswitch.c │ │ │ │ └── taskswitch2.c │ │ │ ├── graphics │ │ │ │ ├── .gitignore │ │ │ │ ├── amigademo.c │ │ │ │ ├── gfxbench.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── pixelarray.c │ │ │ │ ├── primitives.c │ │ │ │ └── text.c │ │ │ └── mmakefile │ │ ├── boot │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ └── testboot.c │ │ ├── bz2 │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ └── version.c │ │ ├── cplusplus │ │ │ ├── .gitignore │ │ │ ├── exception.cpp │ │ │ ├── headertest.cpp │ │ │ └── mmakefile.src │ │ ├── cpu │ │ │ └── x86 │ │ │ │ ├── .gitignore │ │ │ │ ├── avx-dotproduct.c │ │ │ │ ├── mmakefile.src │ │ │ │ └── slow-dotproduct.c │ │ ├── crt │ │ │ ├── .gitignore │ │ │ ├── all-tests.c │ │ │ ├── mmakefile.src │ │ │ ├── posixc │ │ │ │ ├── .gitignore │ │ │ │ ├── argv0_slave.c │ │ │ │ ├── argv0_test1.c │ │ │ │ ├── argv0_test2.c │ │ │ │ ├── argv0_test3.c │ │ │ │ ├── argv0_test4.c │ │ │ │ ├── chdir.c │ │ │ │ ├── chmod.c │ │ │ │ ├── chown.c │ │ │ │ ├── cunit-crt-realpath.c │ │ │ │ ├── execl.c │ │ │ │ ├── execl2.c │ │ │ │ ├── execl2_slave.c │ │ │ │ ├── execl2_vfork.c │ │ │ │ ├── fchdir.c │ │ │ │ ├── fchmod.c │ │ │ │ ├── fcntl.c │ │ │ │ ├── flock.c │ │ │ │ ├── getfsstat.c │ │ │ │ ├── getpass.c │ │ │ │ ├── lseek.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── mnt_names.c │ │ │ │ ├── open.c │ │ │ │ ├── opendir.c │ │ │ │ ├── pipe.c │ │ │ │ ├── posix_memalign.c │ │ │ │ ├── random.c │ │ │ │ ├── randtest.c │ │ │ │ ├── scandir.c │ │ │ │ ├── statfs.c │ │ │ │ ├── strptime.c │ │ │ │ ├── uname.c │ │ │ │ ├── usleep.c │ │ │ │ ├── vfork.c │ │ │ │ ├── vfork_execl.c │ │ │ │ ├── wait.c │ │ │ │ └── waitpid.c │ │ │ ├── stdc │ │ │ │ ├── .gitignore │ │ │ │ ├── abort.c │ │ │ │ ├── access_test.c │ │ │ │ ├── arguments.c │ │ │ │ ├── argv0_slave.c │ │ │ │ ├── assert.c │ │ │ │ ├── clock.c │ │ │ │ ├── ctype.c │ │ │ │ ├── cunit-crt-fileseek.c │ │ │ │ ├── cunit-crt-types.c │ │ │ │ ├── cunit-crt-wchar.c │ │ │ │ ├── cunit-crt-wctype.c │ │ │ │ ├── environ.c │ │ │ │ ├── exit.c │ │ │ │ ├── fileseek.c │ │ │ │ ├── fseek_test.c │ │ │ │ ├── jmpbuf.c │ │ │ │ ├── math │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── args.h │ │ │ │ │ ├── cunit-crt-complexmath.c │ │ │ │ │ ├── cunit-crt-ldmath.c │ │ │ │ │ ├── cunit-crt-math.c │ │ │ │ │ ├── inf_torture.c │ │ │ │ │ ├── libm-bench.cpp │ │ │ │ │ ├── libm-test-ulps.h │ │ │ │ │ ├── libm-test.c │ │ │ │ │ ├── mmakefile.src │ │ │ │ │ ├── paranoia.c │ │ │ │ │ ├── test-double.c │ │ │ │ │ ├── test-fenv.c │ │ │ │ │ ├── test-float.c │ │ │ │ │ └── tst-ieee754.c │ │ │ │ ├── mktime.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── raise.c │ │ │ │ ├── setbuf.c │ │ │ │ ├── setjmp.c │ │ │ │ ├── setvbuf.c │ │ │ │ ├── snprintf.c │ │ │ │ ├── sprintf.c │ │ │ │ ├── sprintf_f.c │ │ │ │ ├── sscanf.c │ │ │ │ ├── stdin1.c │ │ │ │ ├── stdin2.c │ │ │ │ ├── stdin3.c │ │ │ │ ├── stdin4.c │ │ │ │ ├── stpblk.c │ │ │ │ ├── strchr.c │ │ │ │ ├── strtod.c │ │ │ │ ├── strtok.c │ │ │ │ ├── strtol.c │ │ │ │ ├── strtoul.c │ │ │ │ ├── strtoull.c │ │ │ │ ├── system.c │ │ │ │ ├── time.c │ │ │ │ └── tmpfile.c │ │ │ └── test.h │ │ ├── desktop │ │ │ ├── .gitignore │ │ │ ├── loaddesktop.c │ │ │ └── mmakefile.src │ │ ├── diskfont │ │ │ ├── .gitignore │ │ │ ├── availfonts.c │ │ │ ├── fontinfo.c │ │ │ ├── mmakefile.src │ │ │ └── opendiskfont.c │ │ ├── dos │ │ │ ├── .gitignore │ │ │ ├── addpart.c │ │ │ ├── clicreatenewproc.c │ │ │ ├── consolemodes.c │ │ │ ├── cunit-dos-fileseek.c │ │ │ ├── cunit-dos-readargs.c │ │ │ ├── doslist.c │ │ │ ├── dosvartest.c │ │ │ ├── examine.c │ │ │ ├── examinefh.c │ │ │ ├── exit.c │ │ │ ├── exnext.c │ │ │ ├── filetest.c │ │ │ ├── fread.c │ │ │ ├── fstest.c │ │ │ ├── getenv.c │ │ │ ├── inhibit.c │ │ │ ├── isfilesystem.c │ │ │ ├── isinteractive.c │ │ │ ├── match.c │ │ │ ├── matchtest.c │ │ │ ├── minicat.c │ │ │ ├── mmakefile.src │ │ │ ├── mountlist.c │ │ │ ├── namefromfh.c │ │ │ ├── nil.c │ │ │ ├── notify.c │ │ │ ├── openfromlock.c │ │ │ ├── output.c │ │ │ ├── r.c │ │ │ ├── rawtest.c │ │ │ ├── readargs.c │ │ │ ├── readitem.c │ │ │ ├── readitemloop.c │ │ │ ├── runcommand.c │ │ │ ├── rwverify.c │ │ │ ├── scantest.c │ │ │ ├── scanvarstest.c │ │ │ ├── seektest.c │ │ │ ├── setenv.c │ │ │ ├── setfiledate.c │ │ │ ├── setfilesize.c │ │ │ ├── strtodate.c │ │ │ ├── systemtags.c │ │ │ ├── systemtags.h │ │ │ ├── systemtags2.c │ │ │ ├── systemtags2_slave.c │ │ │ ├── systemtags_slave.c │ │ │ ├── test.h │ │ │ └── waitforchar.c │ │ ├── exec │ │ │ ├── .gitignore │ │ │ ├── alert.c │ │ │ ├── allocmem.c │ │ │ ├── allocxxx.c │ │ │ ├── avltest.c │ │ │ ├── childstatus.c │ │ │ ├── childwait.c │ │ │ ├── copymem.c │ │ │ ├── crashtest_highpagefault.c │ │ │ ├── crashtest_illegalins.c │ │ │ ├── crashtest_pagefault.c │ │ │ ├── crashtest_unaligned.c │ │ │ ├── crashtest_zerodiv.c │ │ │ ├── crashtest_zerodivfloat.c │ │ │ ├── cunit-exec-types.c │ │ │ ├── devicetest.c │ │ │ ├── dummydev.c │ │ │ ├── dummydev_gcc.h │ │ │ ├── dumpmem.c │ │ │ ├── enqueue.c │ │ │ ├── exceptiontest.c │ │ │ ├── exceptiontest2.c │ │ │ ├── initstructtest.c │ │ │ ├── makelib.c │ │ │ ├── messagetest.c │ │ │ ├── mmakefile.src │ │ │ ├── openlib.c │ │ │ ├── pool.c │ │ │ ├── portreceive.c │ │ │ ├── portsend.c │ │ │ ├── rawdofmt.c │ │ │ ├── semaphoretest.c │ │ │ ├── semtorture.c │ │ │ ├── signaltest.c │ │ │ ├── stackswap.c │ │ │ ├── supertest.c │ │ │ ├── tasklist.c │ │ │ ├── tasktest.c │ │ │ ├── tasktest2.c │ │ │ ├── test.h │ │ │ ├── timeport.c │ │ │ ├── traptest.c │ │ │ └── vblank.c │ │ ├── freetype │ │ │ ├── .gitignore │ │ │ ├── ftdmo2133-aros.diff │ │ │ └── mmakefile.src │ │ ├── gl │ │ │ ├── .gitignore │ │ │ ├── glgetprocaddress.c │ │ │ ├── glsimplerendering.c │ │ │ └── mmakefile.src │ │ ├── graphics │ │ │ ├── .gitignore │ │ │ ├── CGXTest.c │ │ │ ├── allocbitmap.c │ │ │ ├── areatest2.c │ │ │ ├── areatest2_fillpoly.h │ │ │ ├── blttemplatealpha.c │ │ │ ├── copper.c │ │ │ ├── getcybermapattr.c │ │ │ ├── gfx.c │ │ │ ├── gfxinfo.c │ │ │ ├── gfxtest.c │ │ │ ├── mmakefile.src │ │ │ ├── obtainpentest.c │ │ │ ├── readpixelarray.c │ │ │ ├── scalepixelarray.c │ │ │ ├── showvisregion.c │ │ │ ├── showvisshape.c │ │ │ ├── testarrayops.c │ │ │ ├── textbug.c │ │ │ ├── truecolorpens.c │ │ │ ├── weightamatch.c │ │ │ ├── writepixelarray.c │ │ │ └── writepixelarrayalpha.c │ │ ├── hidds │ │ │ └── gfx │ │ │ │ ├── .gitignore │ │ │ │ ├── convertpixels.c │ │ │ │ ├── cunit-convertpixels.c │ │ │ │ ├── hiddmodeid.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── modeid.c │ │ │ │ └── obsolete │ │ │ │ ├── .gitignore │ │ │ │ ├── BitMapNewDispose.c │ │ │ │ ├── GCCopyArea.c │ │ │ │ ├── GCDrawEllipse.c │ │ │ │ ├── GCDrawLine.c │ │ │ │ ├── GCDrawPolygon.c │ │ │ │ ├── GCDrawRect.c │ │ │ │ ├── GCDrawText.c │ │ │ │ ├── GCNewDispose.c │ │ │ │ ├── GCReadWritePixelDirect.c │ │ │ │ ├── GCWritePixel.c │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── gfxhiddtool.c │ │ │ │ ├── gfxhiddtool.h │ │ │ │ └── mmakefile.src │ │ ├── icon │ │ │ ├── .gitignore │ │ │ ├── diskobj.c │ │ │ ├── examine.c │ │ │ ├── icon.inc │ │ │ ├── mmakefile.src │ │ │ ├── render.c │ │ │ ├── testframe.h │ │ │ └── writetooltypes.c │ │ ├── intuition │ │ │ ├── .gitignore │ │ │ ├── customscreen.c │ │ │ ├── displayalert.c │ │ │ ├── drawinfoattr.c │ │ │ ├── gamma.c │ │ │ ├── mmakefile.src │ │ │ ├── monitorclass.c │ │ │ ├── movescreen.c │ │ │ ├── pubscreen.c │ │ │ ├── screenclass.c │ │ │ ├── screentest.c │ │ │ ├── scrollerwin.c │ │ │ └── smallscreen.c │ │ ├── kernel │ │ │ ├── .gitignore │ │ │ ├── allocator.c │ │ │ ├── mmakefile.src │ │ │ ├── mmap.c │ │ │ └── stackcheck.c │ │ ├── keymap │ │ │ ├── .gitignore │ │ │ ├── keymaptest.c │ │ │ ├── mmakefile.src │ │ │ └── printnativekeytable.c │ │ ├── layers │ │ │ ├── .gitignore │ │ │ ├── CRList.c │ │ │ ├── DamageList.c │ │ │ ├── clippingtest.c │ │ │ ├── layerstest.c │ │ │ ├── mmakefile.src │ │ │ └── sortlayercr.c │ │ ├── library │ │ │ ├── .gitignore │ │ │ ├── cunit-genmodule-autoopen.c │ │ │ ├── cunit-genmodule-library.c │ │ │ ├── cunit-genmodule-relbase.c │ │ │ ├── dummy.conf │ │ │ ├── dummyadd.c │ │ │ ├── dummybase.h │ │ │ ├── dummylib.c │ │ │ ├── dummyprint4.c │ │ │ ├── dummytest.c │ │ │ ├── dummytest_auto.c │ │ │ ├── getchildvalue.c │ │ │ ├── getparentbase.c │ │ │ ├── mmakefile.src │ │ │ ├── peropener.conf │ │ │ ├── peropenerbase.h │ │ │ ├── peropenernamechange.c │ │ │ ├── peropenernolib.c │ │ │ ├── peropenertest.c │ │ │ ├── peropenertest_child.c │ │ │ ├── peropenervalue.c │ │ │ ├── pertask.conf │ │ │ ├── pertaskbase.h │ │ │ ├── pertaskgetparentbase.c │ │ │ ├── pertaskvalue.c │ │ │ ├── pertaskvalue.h │ │ │ ├── pertaskvalue_linklib.c │ │ │ ├── userel.conf │ │ │ └── usereltest.c │ │ ├── llm │ │ │ ├── LICENSE.llama2 │ │ │ ├── LICENSE.qwen3 │ │ │ ├── llama2.c │ │ │ ├── mmakefile.src │ │ │ └── qwen3.c │ │ ├── locale │ │ │ ├── .gitignore │ │ │ ├── cunit-locale-formatstring.c │ │ │ ├── localetest.c │ │ │ ├── mmakefile.src │ │ │ ├── openlocale.c │ │ │ └── openlocale.prefs │ │ ├── log │ │ │ ├── listener.c │ │ │ ├── logtest.h │ │ │ ├── mmakefile.src │ │ │ └── producer.c │ │ ├── lowlevel │ │ │ ├── .gitignore │ │ │ ├── lowlevel.c │ │ │ └── mmakefile.src │ │ ├── misc │ │ │ ├── .gitignore │ │ │ ├── aslhook.c │ │ │ ├── busyloop.c │ │ │ ├── camdtree.c │ │ │ ├── cctest.c │ │ │ ├── frequencies.c │ │ │ ├── fsresource.c │ │ │ ├── getcpuinfo.c │ │ │ ├── helloworld.c │ │ │ ├── hostcb.c │ │ │ ├── hostlib.c │ │ │ ├── iffparsewrite.c │ │ │ ├── ilbmtoc.c │ │ │ ├── ilbmtoc_image.c │ │ │ ├── inquire.c │ │ │ ├── joystick.c │ │ │ ├── mathffp.c │ │ │ ├── mathtest.c │ │ │ ├── mmakefile.src │ │ │ ├── partition.c │ │ │ ├── pcilist.c │ │ │ ├── pthreadtest.c │ │ │ ├── simplepng.c │ │ │ ├── true.c │ │ │ ├── unixio.c │ │ │ └── versionlib.c │ │ ├── mmakefile.src │ │ ├── net │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ └── netlib.c │ │ ├── objc │ │ │ ├── .gitignore │ │ │ ├── hello.m │ │ │ └── mmakefile.src │ │ ├── ooplib.c │ │ ├── pipe │ │ │ ├── .gitignore │ │ │ ├── autopipe.c │ │ │ └── mmakefile.src │ │ ├── png │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ └── version.c │ │ ├── printer │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── printerinfo.c │ │ │ ├── printertxt.c │ │ │ └── printertxt.pdf │ │ ├── rexx │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── rexxsyslibtest.c │ │ │ ├── simplerexx │ │ │ │ ├── .gitignore │ │ │ │ ├── MakeFile │ │ │ │ ├── POSTER │ │ │ │ ├── SimpleRexx.c │ │ │ │ ├── SimpleRexx.doc │ │ │ │ ├── SimpleRexx.doc.info │ │ │ │ ├── SimpleRexx.h │ │ │ │ ├── SimpleRexx.prt │ │ │ │ ├── SimpleRexxExample.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── stptok.c │ │ │ │ ├── stptok.h │ │ │ │ ├── test.results │ │ │ │ └── test.rexx │ │ │ ├── vartest.c │ │ │ └── vartest.rexx │ │ ├── runtests.c │ │ ├── sdi │ │ │ ├── LEGAL │ │ │ ├── README │ │ │ ├── SDI_compiler.h │ │ │ ├── SDI_hook.h │ │ │ ├── SDI_interrupt.h │ │ │ ├── SDI_lib.h │ │ │ ├── SDI_misc.h │ │ │ ├── SDI_stdarg.h │ │ │ └── examples │ │ │ │ ├── hooks │ │ │ │ ├── .gitignore │ │ │ │ ├── example_hookuse.c │ │ │ │ ├── makefile.mos │ │ │ │ ├── makefile.os3 │ │ │ │ ├── makefile.os4 │ │ │ │ └── mmakefile.src │ │ │ │ ├── libraries │ │ │ │ ├── .gitignore │ │ │ │ ├── example_lib.c │ │ │ │ ├── example_libtest.c │ │ │ │ ├── example_linklib.c │ │ │ │ ├── include │ │ │ │ │ ├── clib │ │ │ │ │ │ └── example_protos.h │ │ │ │ │ ├── defines │ │ │ │ │ │ └── example.h │ │ │ │ │ └── proto │ │ │ │ │ │ └── example.h │ │ │ │ ├── libproto.h │ │ │ │ ├── makefile.mos │ │ │ │ ├── makefile.os3 │ │ │ │ ├── makefile.os4 │ │ │ │ ├── mmakefile.src │ │ │ │ ├── sfd │ │ │ │ │ ├── buildheaders.sh │ │ │ │ │ └── example │ │ │ │ └── stubs-aros.c │ │ │ │ ├── misc │ │ │ │ ├── .gitignore │ │ │ │ ├── example_miscuse.c │ │ │ │ ├── makefile.mos │ │ │ │ ├── makefile.os3 │ │ │ │ ├── makefile.os4 │ │ │ │ └── mmakefile.src │ │ │ │ └── varargs │ │ │ │ ├── .gitignore │ │ │ │ ├── example_varargs.c │ │ │ │ ├── makefile.mos │ │ │ │ ├── makefile.os3 │ │ │ │ ├── makefile.os4 │ │ │ │ └── mmakefile.src │ │ ├── serial │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── serialmousetest.c │ │ │ └── serialtest.c │ │ ├── smp │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── smp-smallpt │ │ │ │ ├── .gitignore │ │ │ │ ├── main.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── renderer.c │ │ │ │ ├── renderer.h │ │ │ │ └── smallpt.cc │ │ │ └── smp-test │ │ │ │ ├── .gitignore │ │ │ │ ├── master.c │ │ │ │ ├── mmakefile.src │ │ │ │ ├── smpt_main.c │ │ │ │ ├── work.h │ │ │ │ └── worker.c │ │ ├── taskres │ │ │ ├── mmakefile.src │ │ │ └── taskstorage.c │ │ ├── testscript │ │ ├── timer │ │ │ ├── .gitignore │ │ │ ├── getsystime.c │ │ │ └── mmakefile.src │ │ ├── uae-tmpl │ │ │ ├── Makefile │ │ │ ├── aros_types.h │ │ │ ├── be_conv │ │ │ ├── be_ptr │ │ │ ├── be_val │ │ │ ├── lists.h │ │ │ ├── nodes.h │ │ │ ├── test-1.c │ │ │ ├── test-2.c │ │ │ └── test.c │ │ ├── uae │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── lists.h │ │ │ ├── nodes.h │ │ │ ├── test.c │ │ │ └── types.h │ │ ├── utility │ │ │ ├── .gitignore │ │ │ ├── amiga2date.c │ │ │ ├── callhooktest.c │ │ │ ├── date2amiga.c │ │ │ ├── mmakefile.src │ │ │ ├── setmem.c │ │ │ ├── smult.c │ │ │ ├── utility50.c │ │ │ └── vartags.c │ │ └── z │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ └── version.c │ └── windebug │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ └── windebug.c ├── demos │ ├── .gitignore │ ├── 2View │ │ ├── .gitignore │ │ ├── 2View.c │ │ ├── 2View.h │ │ ├── ARexx.c │ │ ├── Misc.c │ │ ├── arexx.h │ │ ├── iff.h │ │ ├── minrexx.h │ │ ├── mmakefile.src │ │ └── read.c │ ├── Zune │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── mui_input1.c │ │ ├── mui_layout1.c │ │ ├── mui_notify1.c │ │ ├── mui_notify2.c │ │ ├── mui_pages.c │ │ ├── mui_slider.c │ │ └── smakefile │ ├── childchild.c │ ├── childwindow.c │ ├── colorwheel.c │ ├── compleximage.c │ ├── cons.c │ ├── cons_charmap.c │ ├── consoledemo.c │ ├── coolbutton.c │ ├── cxtest.c │ ├── demowin.c │ ├── dto.c │ ├── easyreq.c │ ├── filereq.c │ ├── font2c.c │ ├── fontreq.c │ ├── forkbomb │ ├── gtdemo.c │ ├── gtmultiselect.c │ ├── iconscale.c │ ├── images │ │ ├── .gitignore │ │ ├── ArrowDown0.dat │ │ ├── ArrowDown1.dat │ │ ├── ArrowLeft0.dat │ │ ├── ArrowLeft1.dat │ │ ├── ArrowRight0.dat │ │ ├── ArrowRight1.dat │ │ ├── ArrowUp0.dat │ │ ├── ArrowUp1.dat │ │ ├── ImageButton0.dat │ │ ├── ImageButton1.dat │ │ ├── datfilt.awk │ │ └── mmakefile │ ├── intuitext.c │ ├── lens.c │ ├── listfonts.c │ ├── menudemo.c │ ├── misc │ │ ├── globe.c │ │ ├── jellyfish.c │ │ ├── mmakefile.src │ │ └── rectangles.c │ ├── mmakefile.src │ ├── modelclassdemo.c │ ├── multiple_timers.c │ ├── mxgads.c │ ├── notify.c │ ├── readicon.c │ ├── realtdemo.c │ ├── regiontest.c │ ├── register.c │ ├── roundshape.c │ ├── roundwindow.c │ ├── rtezrequest.c │ ├── rtfile.c │ ├── rtfont.c │ ├── rtlong.c │ ├── rtpalette.c │ ├── rtscreen.c │ ├── rtstring.c │ ├── scrbackfill.c │ ├── screenmodereq.c │ ├── shadowborder.c │ ├── sift.c │ ├── simple_timer.c │ ├── simpleimage.c │ ├── strtest.c │ ├── sysreq.c │ ├── test_text.c │ ├── turboprint.c │ ├── winbackfill.c │ ├── window.c │ └── winshape.c └── s │ ├── .gitignore │ ├── Package-Shutdown │ ├── Package-Startup │ └── mmakefile.src ├── external ├── README ├── bz2 │ ├── .gitignore │ ├── bz2.conf │ ├── bzip2-1.0.8-aros.diff │ └── mmakefile.src └── openurl │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .tx │ └── config │ ├── COPYING │ ├── ChangeLog │ ├── LEGAL │ ├── Makefile │ ├── README.md │ ├── cmd │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dep │ ├── OpenURL.c │ ├── SmartReadArgs.c │ ├── SmartReadArgs.h │ ├── debug.c │ ├── debug.h │ ├── mmakefile.src │ └── version.h │ ├── developer │ ├── .gitignore │ ├── Autodocs │ │ └── openurl.doc │ ├── C │ │ └── include │ │ │ ├── clib │ │ │ └── openurl_protos.h │ │ │ ├── defines │ │ │ └── openurl.h │ │ │ ├── inline │ │ │ ├── openurl.h │ │ │ └── openurl_protos.h │ │ │ ├── inline4 │ │ │ └── openurl.h │ │ │ ├── interfaces │ │ │ ├── openurl.h │ │ │ └── openurl.i │ │ │ ├── libraries │ │ │ └── openurl.h │ │ │ ├── ppcinline │ │ │ └── openurl.h │ │ │ ├── pragmas │ │ │ └── openurl_pragmas.h │ │ │ └── proto │ │ │ └── openurl.h │ ├── fd │ │ └── openurl_lib.fd │ ├── mmakefile.src │ ├── sfd │ │ └── openurl_lib.sfd │ └── xml │ │ └── openurl.xml │ ├── dist │ ├── OpenURL.info │ └── OpenURL │ │ ├── AUTHORS.info │ │ ├── C.info │ │ ├── COPYING.info │ │ ├── ChangeLog.info │ │ ├── Developer.info │ │ ├── Install │ │ ├── Install.info │ │ ├── Libs.info │ │ ├── OpenURL.guide │ │ ├── OpenURL.guide.info │ │ ├── Prefs.info │ │ ├── Prefs │ │ └── OpenURL.info │ │ ├── ReadMe │ │ └── ReadMe.info │ ├── include │ ├── SDI_compiler.h │ ├── SDI_hook.h │ ├── SDI_interrupt.h │ ├── SDI_lib.h │ ├── SDI_misc.h │ ├── SDI_stdarg.h │ ├── clib │ │ ├── muimaster_protos.h │ │ └── openurl_protos.h │ ├── defines │ │ └── openurl.h │ ├── inline │ │ ├── muimaster.h │ │ ├── muimaster_protos.h │ │ └── openurl.h │ ├── inline4 │ │ ├── muimaster.h │ │ └── openurl.h │ ├── interfaces │ │ ├── muimaster.h │ │ └── openurl.h │ ├── libraries │ │ ├── mui.h │ │ ├── muiaros.h │ │ └── openurl.h │ ├── macros.h │ ├── mui │ │ ├── Urltext_mcc.h │ │ └── textinput_mcc.h │ ├── ppcinline │ │ ├── muimaster.h │ │ └── openurl.h │ ├── pragmas │ │ └── openurl_pragmas.h │ └── proto │ │ ├── muimaster.h │ │ └── openurl.h │ ├── libopenurl │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dep │ ├── autoinit-aros.c │ └── mmakefile.src │ ├── library │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dep │ ├── api.c │ ├── base.h │ ├── debug.c │ ├── debug.h │ ├── handler.c │ ├── init.c │ ├── lib.h │ ├── lib_protos.h │ ├── libinit.c │ ├── mmakefile.src │ ├── openurl_68k.c │ ├── prefs.c │ ├── stubs-aros.c │ ├── stubs-morphos.c │ ├── utils.c │ └── version.h │ ├── locale │ ├── .gitignore │ ├── OpenURL.pot │ ├── czech.po │ ├── danish.po │ ├── dutch.po │ ├── finnish.po │ ├── french.po │ ├── german.po │ ├── greek.po │ ├── italian.po │ ├── mmakefile.src │ ├── polish.po │ ├── russian.po │ ├── slovak.po │ ├── spanish.po │ ├── swedish.po │ └── turkish.po │ ├── mmakefile.src │ ├── prefs │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dep │ ├── OpenURL.c │ ├── OpenURL_protos.h │ ├── about.c │ ├── app.c │ ├── applist.c │ ├── browsereditwin.c │ ├── debug.c │ ├── debug.h │ ├── ftpeditwin.c │ ├── locale.c │ ├── locale_h.sd │ ├── mailereditwin.c │ ├── mmakefile.src │ ├── openurl.h │ ├── popph.c │ ├── popport.c │ ├── register.c │ ├── register.h │ ├── utils.c │ ├── vastubs.c │ ├── version.h │ └── win.c │ ├── raPrefs │ ├── Makefile │ ├── Makefile.dep │ ├── OpenURL.c │ ├── OpenURL.h │ ├── browsers.c │ ├── browsers.h │ ├── ftps.c │ ├── ftps.h │ ├── gui_global.h │ ├── handlers.c │ ├── handlers.h │ ├── locale.c │ ├── locale_h.sd │ ├── mailers.c │ ├── mailers.h │ ├── prefs.h │ ├── utility.c │ ├── utility.h │ └── version.h │ └── tools │ ├── bumprev.sh │ ├── mkrelease.sh │ └── update_copyright.sh ├── images ├── AROS_300x150.png ├── AROS_600x300.png ├── Boot │ └── Grub2 │ │ ├── splash.dark-plain.png │ │ ├── splash.dark.png │ │ └── splash.orig.png ├── IconSets │ ├── Gorilla-old │ │ └── Icons │ │ │ └── Medium │ │ │ └── AROS │ │ │ ├── C.info.src │ │ │ ├── C.png │ │ │ ├── Demos.info.src │ │ │ ├── Demos.png │ │ │ ├── Development.info.src │ │ │ ├── Development.png │ │ │ ├── Development │ │ │ ├── Include.info.src │ │ │ ├── Include.png │ │ │ ├── Lib.info.src │ │ │ ├── Lib.png │ │ │ └── mmakefile.src │ │ │ ├── Devs.info.src │ │ │ ├── Devs.png │ │ │ ├── Devs │ │ │ ├── DOSDrivers.info.src │ │ │ ├── DOSDrivers.png │ │ │ ├── DataTypes.info.src │ │ │ ├── DataTypes.png │ │ │ ├── Drivers.info.src │ │ │ ├── Drivers.png │ │ │ ├── Keymaps.info.src │ │ │ ├── Keymaps.png │ │ │ ├── Midi.info.src │ │ │ ├── Midi.png │ │ │ └── mmakefile.src │ │ │ ├── Extras.info.src │ │ │ ├── Extras.png │ │ │ ├── Extras │ │ │ ├── AHI │ │ │ │ └── Prefs │ │ │ │ │ ├── AHI.info.src │ │ │ │ │ ├── AHI.png │ │ │ │ │ └── mmakefile.src │ │ │ ├── MultiMedia.info.src │ │ │ ├── MultiMedia.png │ │ │ ├── MultiMedia │ │ │ │ ├── AMP2.info.src │ │ │ │ ├── AMP2.png │ │ │ │ ├── AMP2 │ │ │ │ │ ├── AMP.info.src │ │ │ │ │ ├── AMP.png │ │ │ │ │ ├── Plugin.info.src │ │ │ │ │ ├── Plugin.png │ │ │ │ │ └── mmakefile.src │ │ │ │ └── mmakefile.src │ │ │ └── mmakefile.src │ │ │ ├── Fonts.info.src │ │ │ ├── Fonts.png │ │ │ ├── Libs.info.src │ │ │ ├── Libs.png │ │ │ ├── Locale.info.src │ │ │ ├── Locale.png │ │ │ ├── Locale │ │ │ ├── Catalogs.info.src │ │ │ ├── Catalogs.png │ │ │ ├── Countries.info.src │ │ │ ├── Countries.png │ │ │ ├── Flags.info.src │ │ │ ├── Flags.png │ │ │ ├── Help.info.src │ │ │ ├── Help.png │ │ │ ├── Languages.info.src │ │ │ ├── Languages.png │ │ │ └── mmakefile.src │ │ │ ├── Prefs.info.src │ │ │ ├── Prefs.png │ │ │ ├── Prefs │ │ │ ├── AHI.info.src │ │ │ ├── AHI.png │ │ │ ├── EditPrefs.info.src │ │ │ ├── EditPrefs.png │ │ │ ├── Env-Archive │ │ │ │ └── SYS │ │ │ │ │ ├── def_A68K.info.src │ │ │ │ │ ├── def_A68K.png │ │ │ │ │ ├── def_ADF.info.src │ │ │ │ │ ├── def_ADF.png │ │ │ │ │ ├── def_AmiLua.info.src │ │ │ │ │ ├── def_AmiLua.png │ │ │ │ │ ├── def_Archive.info.src │ │ │ │ │ ├── def_Archive.png │ │ │ │ │ ├── def_AudioMode.info.src │ │ │ │ │ ├── def_AudioMode.png │ │ │ │ │ ├── def_Authors.info.src │ │ │ │ │ ├── def_Authors.png │ │ │ │ │ ├── def_CDROM.info.src │ │ │ │ │ ├── def_CDROM.png │ │ │ │ │ ├── def_CSS.info.src │ │ │ │ │ ├── def_CSS.png │ │ │ │ │ ├── def_Catalog.info.src │ │ │ │ │ ├── def_Catalog.png │ │ │ │ │ ├── def_Country.info.src │ │ │ │ │ ├── def_Country.png │ │ │ │ │ ├── def_DVD.info.src │ │ │ │ │ ├── def_DVD.png │ │ │ │ │ ├── def_DataType.info.src │ │ │ │ │ ├── def_DataType.png │ │ │ │ │ ├── def_Disk.info.src │ │ │ │ │ ├── def_Disk.png │ │ │ │ │ ├── def_Document.info.src │ │ │ │ │ ├── def_Document.png │ │ │ │ │ ├── def_Drawer.info.src │ │ │ │ │ ├── def_Drawer.png │ │ │ │ │ ├── def_Font.info.src │ │ │ │ │ ├── def_Font.png │ │ │ │ │ ├── def_HTML.info.src │ │ │ │ │ ├── def_HTML.png │ │ │ │ │ ├── def_Harddisk.info.src │ │ │ │ │ ├── def_Harddisk.png │ │ │ │ │ ├── def_Home.info.src │ │ │ │ │ ├── def_Home.png │ │ │ │ │ ├── def_Installer.info.src │ │ │ │ │ ├── def_Installer.png │ │ │ │ │ ├── def_Keymap.info.src │ │ │ │ │ ├── def_Keymap.png │ │ │ │ │ ├── def_Legal.info.src │ │ │ │ │ ├── def_Legal.png │ │ │ │ │ ├── def_Lua.info.src │ │ │ │ │ ├── def_Lua.png │ │ │ │ │ ├── def_MP3.info.src │ │ │ │ │ ├── def_MP3.png │ │ │ │ │ ├── def_MP3ID3.info.src │ │ │ │ │ ├── def_MP3ID3.png │ │ │ │ │ ├── def_Movie.info.src │ │ │ │ │ ├── def_Movie.png │ │ │ │ │ ├── def_Music.info.src │ │ │ │ │ ├── def_Music.png │ │ │ │ │ ├── def_NetworkHost.info.src │ │ │ │ │ ├── def_NetworkHost.png │ │ │ │ │ ├── def_Otag.info.src │ │ │ │ │ ├── def_Otag.png │ │ │ │ │ ├── def_PDF.info.src │ │ │ │ │ ├── def_PDF.png │ │ │ │ │ ├── def_Patch.info.src │ │ │ │ │ ├── def_Patch.png │ │ │ │ │ ├── def_Picture.info.src │ │ │ │ │ ├── def_Picture.png │ │ │ │ │ ├── def_Postscript.info.src │ │ │ │ │ ├── def_Postscript.png │ │ │ │ │ ├── def_Presentation.info.src │ │ │ │ │ ├── def_Presentation.png │ │ │ │ │ ├── def_Printer.info.src │ │ │ │ │ ├── def_Printer.png │ │ │ │ │ ├── def_Project.info.src │ │ │ │ │ ├── def_Project.png │ │ │ │ │ ├── def_Python.info.src │ │ │ │ │ ├── def_Python.png │ │ │ │ │ ├── def_RAD.info.src │ │ │ │ │ ├── def_RAD.png │ │ │ │ │ ├── def_RAM.info.src │ │ │ │ │ ├── def_RAM.png │ │ │ │ │ ├── def_REXX.info.src │ │ │ │ │ ├── def_REXX.png │ │ │ │ │ ├── def_ReadMe.info.src │ │ │ │ │ ├── def_ReadMe.png │ │ │ │ │ ├── def_SFS.info.src │ │ │ │ │ ├── def_SFS.png │ │ │ │ │ ├── def_Sashimi.info.src │ │ │ │ │ ├── def_Sashimi.png │ │ │ │ │ ├── def_Sound.info.src │ │ │ │ │ ├── def_Sound.png │ │ │ │ │ ├── def_Spreadsheet.info.src │ │ │ │ │ ├── def_Spreadsheet.png │ │ │ │ │ ├── def_Text.info.src │ │ │ │ │ ├── def_Text.png │ │ │ │ │ ├── def_Tool.info.src │ │ │ │ │ ├── def_Tool.png │ │ │ │ │ ├── def_Trashcan.info.src │ │ │ │ │ ├── def_Trashcan.png │ │ │ │ │ ├── def_TrueType.info.src │ │ │ │ │ ├── def_TrueType.png │ │ │ │ │ ├── def_UserHome.info.src │ │ │ │ │ ├── def_UserHome.png │ │ │ │ │ ├── def_XCF.info.src │ │ │ │ │ ├── def_XCF.png │ │ │ │ │ ├── def_Zune.info.src │ │ │ │ │ ├── def_Zune.png │ │ │ │ │ └── mmakefile.src │ │ │ ├── Font.info.src │ │ │ ├── Font.png │ │ │ ├── IControl.info.src │ │ │ ├── IControl.png │ │ │ ├── Input.info.src │ │ │ ├── Input.png │ │ │ ├── Locale.info.src │ │ │ ├── Locale.png │ │ │ ├── Presets.info.src │ │ │ ├── Presets.png │ │ │ ├── Presets │ │ │ │ ├── Patterns.info.src │ │ │ │ ├── Patterns.png │ │ │ │ └── mmakefile.src │ │ │ ├── Printer.info.src │ │ │ ├── Printer.png │ │ │ ├── ReqTools.info.src │ │ │ ├── ReqTools.png │ │ │ ├── ScreenMode.info.src │ │ │ ├── ScreenMode.png │ │ │ ├── Serial.info.src │ │ │ ├── Serial.png │ │ │ ├── Theme.info.src │ │ │ ├── Theme.png │ │ │ ├── Time.info.src │ │ │ ├── Time.png │ │ │ ├── Trackdisk.info.src │ │ │ ├── Trackdisk.png │ │ │ ├── Wanderer.info.src │ │ │ ├── Wanderer.png │ │ │ ├── Zune.info.src │ │ │ ├── Zune.png │ │ │ └── mmakefile.src │ │ │ ├── Rexxc.info.src │ │ │ ├── Rexxc.png │ │ │ ├── S.info.src │ │ │ ├── S.png │ │ │ ├── Storage.info.src │ │ │ ├── Storage.png │ │ │ ├── System.info.src │ │ │ ├── System.png │ │ │ ├── System │ │ │ ├── About.info.src │ │ │ ├── About.png │ │ │ ├── FTManager.info.src │ │ │ ├── FTManager.png │ │ │ ├── FixFonts.info.src │ │ │ ├── FixFonts.png │ │ │ ├── Themes.info.src │ │ │ ├── Themes.png │ │ │ └── mmakefile.src │ │ │ ├── T.info.src │ │ │ ├── T.png │ │ │ ├── Tests.info.src │ │ │ ├── Tests.png │ │ │ ├── Tools.info.src │ │ │ ├── Tools.png │ │ │ ├── Tools │ │ │ ├── Calculator.info.src │ │ │ ├── Calculator.png │ │ │ ├── Commodities.info.src │ │ │ ├── Commodities.png │ │ │ ├── Commodities │ │ │ │ ├── AutoPoint.info.src │ │ │ │ ├── AutoPoint.png │ │ │ │ ├── Blanker.info.src │ │ │ │ ├── Blanker.png │ │ │ │ ├── ClickToFront.info.src │ │ │ │ ├── ClickToFront.png │ │ │ │ ├── DepthMenu.info.src │ │ │ │ ├── DepthMenu.png │ │ │ │ ├── Exchange.info.src │ │ │ │ ├── Exchange.png │ │ │ │ ├── FKey.info.src │ │ │ │ ├── FKey.png │ │ │ │ ├── NoCapsLock.info.src │ │ │ │ ├── NoCapsLock.png │ │ │ │ ├── Opaque.info.src │ │ │ │ ├── Opaque.png │ │ │ │ └── mmakefile.src │ │ │ ├── Debug.info.src │ │ │ ├── Debug.png │ │ │ ├── Debug │ │ │ │ ├── Sashimi.info.src │ │ │ │ ├── Sashimi.png │ │ │ │ └── mmakefile.src │ │ │ ├── Editor.info.src │ │ │ ├── Editor.png │ │ │ ├── HDToolBox.info.src │ │ │ ├── HDToolBox.png │ │ │ ├── InstallAROS.info.src │ │ │ ├── InstallAROS.png │ │ │ ├── PCITool.info.src │ │ │ ├── PCITool.png │ │ │ ├── ScreenGrabber.info.src │ │ │ ├── ScreenGrabber.png │ │ │ ├── WiMP.info.src │ │ │ ├── WiMP.png │ │ │ └── mmakefile.src │ │ │ ├── Utilities.info.src │ │ │ ├── Utilities.png │ │ │ ├── Utilities │ │ │ ├── Clock.info.src │ │ │ ├── Clock.png │ │ │ ├── Installer.info.src │ │ │ ├── Installer.png │ │ │ ├── More.info.src │ │ │ ├── More.png │ │ │ ├── MultiView.info.src │ │ │ ├── MultiView.png │ │ │ └── mmakefile.src │ │ │ ├── WBStartup.info.src │ │ │ ├── WBStartup.png │ │ │ ├── boot.info.src │ │ │ ├── boot.png │ │ │ └── mmakefile.src │ ├── Gorilla │ │ ├── Elements │ │ │ ├── Arrow.svg │ │ │ ├── Blocks.svg │ │ │ ├── CDROM.svg │ │ │ ├── Chip.svg │ │ │ ├── Floppy.svg │ │ │ ├── Help.svg │ │ │ ├── Joystick.svg │ │ │ ├── MIDI.svg │ │ │ ├── MagnifyingGlass.svg │ │ │ ├── Pen.svg │ │ │ ├── Puzzle.svg │ │ │ ├── Screwdriver.svg │ │ │ ├── Tools.svg │ │ │ └── Wrench.svg │ │ ├── Icons │ │ │ ├── .gitignore │ │ │ ├── Medium │ │ │ │ ├── AROS │ │ │ │ │ ├── Demos.info.src │ │ │ │ │ ├── Demos.png │ │ │ │ │ ├── Developer.info.src │ │ │ │ │ ├── Developer.png │ │ │ │ │ ├── Developer │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Debug.info.src │ │ │ │ │ │ ├── Debug.png │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── Bifteck.info.src │ │ │ │ │ │ │ ├── Bifteck.png │ │ │ │ │ │ │ ├── Hardware.info.src │ │ │ │ │ │ │ ├── Hardware.png │ │ │ │ │ │ │ ├── Hardware │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── PCITool.info.src │ │ │ │ │ │ │ │ ├── PCITool.png │ │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ │ ├── Sashimi.info.src │ │ │ │ │ │ │ ├── Sashimi.png │ │ │ │ │ │ │ ├── Tests.info.src │ │ │ │ │ │ │ ├── Tests.png │ │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── DualPNG.info.src │ │ │ │ │ │ │ │ ├── DualPNG.png │ │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Include.info.src │ │ │ │ │ │ ├── Include.png │ │ │ │ │ │ ├── Lib.info.src │ │ │ │ │ │ ├── Lib.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Devs.info.src │ │ │ │ │ ├── Devs.png │ │ │ │ │ ├── Devs │ │ │ │ │ │ ├── DOSDrivers.info.src │ │ │ │ │ │ ├── DOSDrivers.png │ │ │ │ │ │ ├── DOSDrivers │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── AUDIO.info.src │ │ │ │ │ │ │ ├── AUDIO.png │ │ │ │ │ │ │ ├── ICD0.info.src │ │ │ │ │ │ │ ├── ICD0.png │ │ │ │ │ │ │ ├── ICD1.info.src │ │ │ │ │ │ │ ├── ICD1.png │ │ │ │ │ │ │ ├── IDF0.info.src │ │ │ │ │ │ │ ├── IDF0.png │ │ │ │ │ │ │ ├── IDF1.info.src │ │ │ │ │ │ │ ├── IDF1.png │ │ │ │ │ │ │ ├── ISO0.info.src │ │ │ │ │ │ │ ├── ISO0.png │ │ │ │ │ │ │ ├── PAR.info.src │ │ │ │ │ │ │ ├── PAR.png │ │ │ │ │ │ │ ├── PC0.info.src │ │ │ │ │ │ │ ├── PC0.png │ │ │ │ │ │ │ ├── PIPE.info.src │ │ │ │ │ │ │ ├── PIPE.png │ │ │ │ │ │ │ ├── PRT.info.src │ │ │ │ │ │ │ ├── PRT.png │ │ │ │ │ │ │ ├── SER.info.src │ │ │ │ │ │ │ ├── SER.png │ │ │ │ │ │ │ ├── SER0.info.src │ │ │ │ │ │ │ ├── SER0.png │ │ │ │ │ │ │ ├── SER1.info.src │ │ │ │ │ │ │ ├── SER1.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── DataTypes.info.src │ │ │ │ │ │ ├── DataTypes.png │ │ │ │ │ │ ├── Drivers.info.src │ │ │ │ │ │ ├── Drivers.png │ │ │ │ │ │ ├── Keymaps.info.src │ │ │ │ │ │ ├── Keymaps.png │ │ │ │ │ │ ├── Midi.info.src │ │ │ │ │ │ ├── Midi.png │ │ │ │ │ │ ├── Monitors.info.src │ │ │ │ │ │ ├── Monitors.png │ │ │ │ │ │ ├── Monitors │ │ │ │ │ │ │ ├── ATI.info.src │ │ │ │ │ │ │ ├── IntelGMA.info.src │ │ │ │ │ │ │ ├── NVidia.info.src │ │ │ │ │ │ │ ├── SAGA.info.src │ │ │ │ │ │ │ ├── VMWare.info.src │ │ │ │ │ │ │ ├── Wrapper.info.src │ │ │ │ │ │ │ ├── Wrapper.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Printers.info.src │ │ │ │ │ │ ├── Printers.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Fonts.info.src │ │ │ │ │ ├── Fonts.png │ │ │ │ │ ├── Libs.info.src │ │ │ │ │ ├── Libs.png │ │ │ │ │ ├── Locale.info.src │ │ │ │ │ ├── Locale.png │ │ │ │ │ ├── Locale │ │ │ │ │ │ ├── Catalogs.info.src │ │ │ │ │ │ ├── Catalogs.png │ │ │ │ │ │ ├── Countries.info.src │ │ │ │ │ │ ├── Countries.png │ │ │ │ │ │ ├── Flags.info.src │ │ │ │ │ │ ├── Flags.png │ │ │ │ │ │ ├── Help.info.src │ │ │ │ │ │ ├── Help.png │ │ │ │ │ │ ├── Languages.info.src │ │ │ │ │ │ ├── Languages.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Prefs.info.src │ │ │ │ │ ├── Prefs.png │ │ │ │ │ ├── Prefs │ │ │ │ │ │ ├── AHI.info.src │ │ │ │ │ │ ├── AHI.png │ │ │ │ │ │ ├── Appearance.info.src │ │ │ │ │ │ ├── Appearance.png │ │ │ │ │ │ ├── Asl.info.src │ │ │ │ │ │ ├── Asl.png │ │ │ │ │ │ ├── BoingIconBar.info.src │ │ │ │ │ │ ├── BoingIconBar.png │ │ │ │ │ │ ├── Boot.info.src │ │ │ │ │ │ ├── Boot.png │ │ │ │ │ │ ├── Editor.info.src │ │ │ │ │ │ ├── Editor.png │ │ │ │ │ │ ├── Env-Archive │ │ │ │ │ │ │ └── SYS │ │ │ │ │ │ │ │ ├── def_A68K.info.src │ │ │ │ │ │ │ │ ├── def_A68K.png │ │ │ │ │ │ │ │ ├── def_ANIM.info.src │ │ │ │ │ │ │ │ ├── def_ANIM.png │ │ │ │ │ │ │ │ ├── def_AmiLua.info.src │ │ │ │ │ │ │ │ ├── def_AmiLua.png │ │ │ │ │ │ │ │ ├── def_AppIcon.info.src │ │ │ │ │ │ │ │ ├── def_AppIcon1.png │ │ │ │ │ │ │ │ ├── def_AppIcon2.png │ │ │ │ │ │ │ │ ├── def_Archive.info.src │ │ │ │ │ │ │ │ ├── def_Archive.png │ │ │ │ │ │ │ │ ├── def_AudioMode.info.src │ │ │ │ │ │ │ │ ├── def_AudioMode.png │ │ │ │ │ │ │ │ ├── def_Authors.info.src │ │ │ │ │ │ │ │ ├── def_Authors.png │ │ │ │ │ │ │ │ ├── def_Bitmap_Font.info.src │ │ │ │ │ │ │ │ ├── def_Bitmap_Font.png │ │ │ │ │ │ │ │ ├── def_BusyCDROM.info.src │ │ │ │ │ │ │ │ ├── def_BusyCDROM.png │ │ │ │ │ │ │ │ ├── def_BusyDisk.info.src │ │ │ │ │ │ │ │ ├── def_BusyDisk.png │ │ │ │ │ │ │ │ ├── def_BusyHarddisk.info.src │ │ │ │ │ │ │ │ ├── def_BusyHarddisk.png │ │ │ │ │ │ │ │ ├── def_CDROM.info.src │ │ │ │ │ │ │ │ ├── def_CDROM.png │ │ │ │ │ │ │ │ ├── def_CDXL.info.src │ │ │ │ │ │ │ │ ├── def_CDXL.png │ │ │ │ │ │ │ │ ├── def_CSS.info.src │ │ │ │ │ │ │ │ ├── def_CSS.png │ │ │ │ │ │ │ │ ├── def_Catalog.info.src │ │ │ │ │ │ │ │ ├── def_Catalog.png │ │ │ │ │ │ │ │ ├── def_Country.info.src │ │ │ │ │ │ │ │ ├── def_Country.png │ │ │ │ │ │ │ │ ├── def_DT64.info.src │ │ │ │ │ │ │ │ ├── def_DT64.png │ │ │ │ │ │ │ │ ├── def_DVD.info.src │ │ │ │ │ │ │ │ ├── def_DVD.png │ │ │ │ │ │ │ │ ├── def_DataType.info.src │ │ │ │ │ │ │ │ ├── def_DataType.png │ │ │ │ │ │ │ │ ├── def_Disk.info.src │ │ │ │ │ │ │ │ ├── def_Disk.png │ │ │ │ │ │ │ │ ├── def_Document.info.src │ │ │ │ │ │ │ │ ├── def_Document.png │ │ │ │ │ │ │ │ ├── def_Drawer.info.src │ │ │ │ │ │ │ │ ├── def_Drawer.png │ │ │ │ │ │ │ │ ├── def_ELF_EXE_Linux.info.src │ │ │ │ │ │ │ │ ├── def_ELF_EXE_Linux.png │ │ │ │ │ │ │ │ ├── def_FATDisk.info.src │ │ │ │ │ │ │ │ ├── def_FATDisk.png │ │ │ │ │ │ │ │ ├── def_FATHarddisk.info.src │ │ │ │ │ │ │ │ ├── def_FATHarddisk.png │ │ │ │ │ │ │ │ ├── def_FFSDisk.info.src │ │ │ │ │ │ │ │ ├── def_FFSDisk.png │ │ │ │ │ │ │ │ ├── def_FFSHarddisk.info.src │ │ │ │ │ │ │ │ ├── def_FFSHarddisk.png │ │ │ │ │ │ │ │ ├── def_FLAC.info.src │ │ │ │ │ │ │ │ ├── def_FLAC.png │ │ │ │ │ │ │ │ ├── def_GIFAnim.info.src │ │ │ │ │ │ │ │ ├── def_GIFAnim.png │ │ │ │ │ │ │ │ ├── def_HTML.info.src │ │ │ │ │ │ │ │ ├── def_HTML.png │ │ │ │ │ │ │ │ ├── def_Harddisk.info.src │ │ │ │ │ │ │ │ ├── def_Harddisk.png │ │ │ │ │ │ │ │ ├── def_Home.info.src │ │ │ │ │ │ │ │ ├── def_Home.png │ │ │ │ │ │ │ │ ├── def_Installer.info.src │ │ │ │ │ │ │ │ ├── def_Installer.png │ │ │ │ │ │ │ │ ├── def_Instrument.info.src │ │ │ │ │ │ │ │ ├── def_Instrument.png │ │ │ │ │ │ │ │ ├── def_Keymap.info.src │ │ │ │ │ │ │ │ ├── def_Keymap.png │ │ │ │ │ │ │ │ ├── def_KickDisk.info.src │ │ │ │ │ │ │ │ ├── def_KickDisk.png │ │ │ │ │ │ │ │ ├── def_KickROM.info.src │ │ │ │ │ │ │ │ ├── def_KickROM.png │ │ │ │ │ │ │ │ ├── def_LHA.info.src │ │ │ │ │ │ │ │ ├── def_LHA.png │ │ │ │ │ │ │ │ ├── def_Legal.info.src │ │ │ │ │ │ │ │ ├── def_Legal.png │ │ │ │ │ │ │ │ ├── def_Lua.info.src │ │ │ │ │ │ │ │ ├── def_Lua.png │ │ │ │ │ │ │ │ ├── def_M3U.info.src │ │ │ │ │ │ │ │ ├── def_M3U.png │ │ │ │ │ │ │ │ ├── def_MP3.info.src │ │ │ │ │ │ │ │ ├── def_MP3.png │ │ │ │ │ │ │ │ ├── def_MP3ID3.info.src │ │ │ │ │ │ │ │ ├── def_MP3ID3.png │ │ │ │ │ │ │ │ ├── def_MSD.info.src │ │ │ │ │ │ │ │ ├── def_MSD.png │ │ │ │ │ │ │ │ ├── def_MSI.info.src │ │ │ │ │ │ │ │ ├── def_MSI.png │ │ │ │ │ │ │ │ ├── def_Movie.info.src │ │ │ │ │ │ │ │ ├── def_Movie.png │ │ │ │ │ │ │ │ ├── def_Music.info.src │ │ │ │ │ │ │ │ ├── def_Music.png │ │ │ │ │ │ │ │ ├── def_NDOSCDROM.info.src │ │ │ │ │ │ │ │ ├── def_NDOSCDROM.png │ │ │ │ │ │ │ │ ├── def_NDOSDisk.info.src │ │ │ │ │ │ │ │ ├── def_NDOSDisk.png │ │ │ │ │ │ │ │ ├── def_NDOSHarddisk.info.src │ │ │ │ │ │ │ │ ├── def_NDOSHarddisk.png │ │ │ │ │ │ │ │ ├── def_NetworkHost.info.src │ │ │ │ │ │ │ │ ├── def_NetworkHost.png │ │ │ │ │ │ │ │ ├── def_Otag.info.src │ │ │ │ │ │ │ │ ├── def_Otag.png │ │ │ │ │ │ │ │ ├── def_Outline_Font.info.src │ │ │ │ │ │ │ │ ├── def_Outline_Font.png │ │ │ │ │ │ │ │ ├── def_PDF.info.src │ │ │ │ │ │ │ │ ├── def_PDF.png │ │ │ │ │ │ │ │ ├── def_PFSDisk.info.src │ │ │ │ │ │ │ │ ├── def_PFSDisk.png │ │ │ │ │ │ │ │ ├── def_PLS.info.src │ │ │ │ │ │ │ │ ├── def_PLS.png │ │ │ │ │ │ │ │ ├── def_Patch.info.src │ │ │ │ │ │ │ │ ├── def_Patch.png │ │ │ │ │ │ │ │ ├── def_Picture.info.src │ │ │ │ │ │ │ │ ├── def_Picture.png │ │ │ │ │ │ │ │ ├── def_Postscript.info.src │ │ │ │ │ │ │ │ ├── def_Postscript.png │ │ │ │ │ │ │ │ ├── def_Pref.info.src │ │ │ │ │ │ │ │ ├── def_Pref.png │ │ │ │ │ │ │ │ ├── def_Presentation.info.src │ │ │ │ │ │ │ │ ├── def_Presentation.png │ │ │ │ │ │ │ │ ├── def_Printer.info.src │ │ │ │ │ │ │ │ ├── def_Printer.png │ │ │ │ │ │ │ │ ├── def_Project.info.src │ │ │ │ │ │ │ │ ├── def_Project.png │ │ │ │ │ │ │ │ ├── def_Python.info.src │ │ │ │ │ │ │ │ ├── def_Python.png │ │ │ │ │ │ │ │ ├── def_RAD.info.src │ │ │ │ │ │ │ │ ├── def_RAD.png │ │ │ │ │ │ │ │ ├── def_RAM.info.src │ │ │ │ │ │ │ │ ├── def_RAM.png │ │ │ │ │ │ │ │ ├── def_REXX.info.src │ │ │ │ │ │ │ │ ├── def_REXX.png │ │ │ │ │ │ │ │ ├── def_ReadMe.info.src │ │ │ │ │ │ │ │ ├── def_ReadMe.png │ │ │ │ │ │ │ │ ├── def_SFSDisk.info.src │ │ │ │ │ │ │ │ ├── def_SFSDisk.png │ │ │ │ │ │ │ │ ├── def_Sashimi.info.src │ │ │ │ │ │ │ │ ├── def_Sashimi.png │ │ │ │ │ │ │ │ ├── def_Sound.info.src │ │ │ │ │ │ │ │ ├── def_Sound.png │ │ │ │ │ │ │ │ ├── def_Spreadsheet.info.src │ │ │ │ │ │ │ │ ├── def_Spreadsheet.png │ │ │ │ │ │ │ │ ├── def_Text.info.src │ │ │ │ │ │ │ │ ├── def_Text.png │ │ │ │ │ │ │ │ ├── def_Tool.info.src │ │ │ │ │ │ │ │ ├── def_Tool.png │ │ │ │ │ │ │ │ ├── def_Trashcan.info.src │ │ │ │ │ │ │ │ ├── def_Trashcan.png │ │ │ │ │ │ │ │ ├── def_TrueType.info.src │ │ │ │ │ │ │ │ ├── def_TrueType.png │ │ │ │ │ │ │ │ ├── def_USB.info.src │ │ │ │ │ │ │ │ ├── def_USB.png │ │ │ │ │ │ │ │ ├── def_UnknownDevice.info.src │ │ │ │ │ │ │ │ ├── def_UnknownDevice.png │ │ │ │ │ │ │ │ ├── def_UserHome.info.src │ │ │ │ │ │ │ │ ├── def_UserHome.png │ │ │ │ │ │ │ │ ├── def_Wireless.info.src │ │ │ │ │ │ │ │ ├── def_Wireless.png │ │ │ │ │ │ │ │ ├── def_XCF.info.src │ │ │ │ │ │ │ │ ├── def_XCF.png │ │ │ │ │ │ │ │ ├── def_Zune.info.src │ │ │ │ │ │ │ │ ├── def_Zune.png │ │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Font.info.src │ │ │ │ │ │ ├── Font.png │ │ │ │ │ │ ├── IControl.info.src │ │ │ │ │ │ ├── IControl.png │ │ │ │ │ │ ├── Input.info.src │ │ │ │ │ │ ├── Input.png │ │ │ │ │ │ ├── Locale.info.src │ │ │ │ │ │ ├── Locale.png │ │ │ │ │ │ ├── Network.info.src │ │ │ │ │ │ ├── Network.png │ │ │ │ │ │ ├── OpenURL.info.src │ │ │ │ │ │ ├── OpenURL.png │ │ │ │ │ │ ├── PSI.info.src │ │ │ │ │ │ ├── PSI.png │ │ │ │ │ │ ├── Palette.info.src │ │ │ │ │ │ ├── Palette.png │ │ │ │ │ │ ├── Pointer.info.src │ │ │ │ │ │ ├── Pointer.png │ │ │ │ │ │ ├── Presets.info.src │ │ │ │ │ │ ├── Presets.png │ │ │ │ │ │ ├── Presets │ │ │ │ │ │ │ ├── Patterns.info.src │ │ │ │ │ │ │ ├── Patterns.png │ │ │ │ │ │ │ ├── Themes.info.info.src │ │ │ │ │ │ │ ├── Themes.info.png │ │ │ │ │ │ │ ├── Wallpapers.info.src │ │ │ │ │ │ │ ├── Wallpapers.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Printer.info.src │ │ │ │ │ │ ├── Printer.png │ │ │ │ │ │ ├── ReqTools.info.src │ │ │ │ │ │ ├── ReqTools.png │ │ │ │ │ │ ├── ScreenMode.info.src │ │ │ │ │ │ ├── ScreenMode.png │ │ │ │ │ │ ├── Serial.info.src │ │ │ │ │ │ ├── Serial.png │ │ │ │ │ │ ├── Theme.info.src │ │ │ │ │ │ ├── Theme.png │ │ │ │ │ │ ├── Time.info.src │ │ │ │ │ │ ├── Time.png │ │ │ │ │ │ ├── Trackdisk.info.src │ │ │ │ │ │ ├── Trackdisk.png │ │ │ │ │ │ ├── Trident.info.src │ │ │ │ │ │ ├── Trident.png │ │ │ │ │ │ ├── Wanderer.info.src │ │ │ │ │ │ ├── Wanderer.png │ │ │ │ │ │ ├── Zune.info.src │ │ │ │ │ │ ├── Zune.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Rexxc.info.src │ │ │ │ │ ├── Rexxc.png │ │ │ │ │ ├── Storage.info.src │ │ │ │ │ ├── Storage.png │ │ │ │ │ ├── System.info.src │ │ │ │ │ ├── System.png │ │ │ │ │ ├── System │ │ │ │ │ │ ├── About.info.src │ │ │ │ │ │ ├── About.png │ │ │ │ │ │ ├── DiskImageGUI-1.png │ │ │ │ │ │ ├── DiskImageGUI-2.png │ │ │ │ │ │ ├── DiskImageGUI.info.src │ │ │ │ │ │ ├── FTManager.info.src │ │ │ │ │ │ ├── FTManager.png │ │ │ │ │ │ ├── Find.info.src │ │ │ │ │ │ ├── Find.png │ │ │ │ │ │ ├── FixFonts.info.src │ │ │ │ │ │ ├── FixFonts.png │ │ │ │ │ │ ├── Format.info.src │ │ │ │ │ │ ├── Format.png │ │ │ │ │ │ ├── LogView.info.src │ │ │ │ │ │ ├── LogView.png │ │ │ │ │ │ ├── Shell.info.src │ │ │ │ │ │ ├── Shell.png │ │ │ │ │ │ ├── Snoopy.info.src │ │ │ │ │ │ ├── Snoopy.png │ │ │ │ │ │ ├── SysMon.info.src │ │ │ │ │ │ ├── SysMon.png │ │ │ │ │ │ ├── WorkBook.info.src │ │ │ │ │ │ ├── WorkBook.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Tools.info.src │ │ │ │ │ ├── Tools.png │ │ │ │ │ ├── Tools │ │ │ │ │ │ ├── BoingIconBar.info.src │ │ │ │ │ │ ├── BoingIconBar.png │ │ │ │ │ │ ├── Calculator.info.src │ │ │ │ │ │ ├── Calculator.png │ │ │ │ │ │ ├── Commodities.info.src │ │ │ │ │ │ ├── Commodities.png │ │ │ │ │ │ ├── Commodities │ │ │ │ │ │ │ ├── ASCIITable.info.src │ │ │ │ │ │ │ ├── ASCIITable.png │ │ │ │ │ │ │ ├── AltKeyQ.info.src │ │ │ │ │ │ │ ├── AltKeyQ.png │ │ │ │ │ │ │ ├── AutoPoint.info.src │ │ │ │ │ │ │ ├── AutoPoint.png │ │ │ │ │ │ │ ├── Blanker.info.src │ │ │ │ │ │ │ ├── Blanker.png │ │ │ │ │ │ │ ├── ClickToFront.info.src │ │ │ │ │ │ │ ├── ClickToFront.png │ │ │ │ │ │ │ ├── DepthMenu.info.src │ │ │ │ │ │ │ ├── DepthMenu.png │ │ │ │ │ │ │ ├── Exchange.info.src │ │ │ │ │ │ │ ├── Exchange.png │ │ │ │ │ │ │ ├── FKey.info.src │ │ │ │ │ │ │ ├── FKey.png │ │ │ │ │ │ │ ├── NoCapsLock.info.src │ │ │ │ │ │ │ ├── NoCapsLock.png │ │ │ │ │ │ │ ├── Opaque.info.src │ │ │ │ │ │ │ ├── Opaque.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Editor.info.src │ │ │ │ │ │ ├── Editor.png │ │ │ │ │ │ ├── GraphicDump.info.src │ │ │ │ │ │ ├── GraphicDump.png │ │ │ │ │ │ ├── HDToolBox.info.src │ │ │ │ │ │ ├── HDToolBox.png │ │ │ │ │ │ ├── InitPrinter.info.src │ │ │ │ │ │ ├── InitPrinter.png │ │ │ │ │ │ ├── InstallAROS.info.src │ │ │ │ │ │ ├── InstallAROS.png │ │ │ │ │ │ ├── KeyShow.info.src │ │ │ │ │ │ ├── KeyShow.png │ │ │ │ │ │ ├── PrintFiles.info.src │ │ │ │ │ │ ├── PrintFiles.png │ │ │ │ │ │ ├── QuickPart.info.src │ │ │ │ │ │ ├── QuickPart.png │ │ │ │ │ │ ├── QuickPart │ │ │ │ │ │ │ ├── QuickPart.info.src │ │ │ │ │ │ │ ├── QuickPart.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── ScreenGrabber.info.src │ │ │ │ │ │ ├── ScreenGrabber.png │ │ │ │ │ │ ├── ShowConfig.info.src │ │ │ │ │ │ ├── ShowConfig.png │ │ │ │ │ │ ├── SysExplorer.info.src │ │ │ │ │ │ ├── SysExplorer.png │ │ │ │ │ │ ├── WiMP.info.src │ │ │ │ │ │ ├── WiMP.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Utilities.info.src │ │ │ │ │ ├── Utilities.png │ │ │ │ │ ├── Utilities │ │ │ │ │ │ ├── Clock.info.src │ │ │ │ │ │ ├── Clock.png │ │ │ │ │ │ ├── Help.info.src │ │ │ │ │ │ ├── Help.png │ │ │ │ │ │ ├── Installer.info.src │ │ │ │ │ │ ├── Installer.png │ │ │ │ │ │ ├── More.info.src │ │ │ │ │ │ ├── More.png │ │ │ │ │ │ ├── MultiView.info.src │ │ │ │ │ │ ├── MultiView.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── WBStartup.info.src │ │ │ │ │ ├── WBStartup.png │ │ │ │ │ └── mmakefile.src │ │ │ │ ├── Computers │ │ │ │ │ ├── Amiga.info.src │ │ │ │ │ ├── Amiga.png │ │ │ │ │ ├── Generic.info.src │ │ │ │ │ ├── Generic.png │ │ │ │ │ ├── Linux.info.src │ │ │ │ │ ├── Linux.png │ │ │ │ │ ├── MacOS.info.src │ │ │ │ │ ├── MacOS.png │ │ │ │ │ ├── Networked_Amiga.info.src │ │ │ │ │ ├── Networked_Amiga.png │ │ │ │ │ ├── Networked_Generic.info.src │ │ │ │ │ ├── Networked_Generic.png │ │ │ │ │ ├── Networked_Linux.info.src │ │ │ │ │ ├── Networked_Linux.png │ │ │ │ │ ├── Networked_MacOS.info.src │ │ │ │ │ ├── Networked_MacOS.png │ │ │ │ │ ├── Networked_Windows.info.src │ │ │ │ │ ├── Networked_Windows.png │ │ │ │ │ ├── Windows.info.src │ │ │ │ │ ├── Windows.png │ │ │ │ │ └── mmakefile.src │ │ │ │ ├── Disks │ │ │ │ │ ├── AROSHarddisk_Linux.info.src │ │ │ │ │ ├── AROSHarddisk_Linux.png │ │ │ │ │ ├── AROSHarddisk_MacOS.info.src │ │ │ │ │ ├── AROSHarddisk_MacOS.png │ │ │ │ │ ├── AROSHarddisk_Windows.info.src │ │ │ │ │ ├── AROSHarddisk_Windows.png │ │ │ │ │ ├── CDROM_AROS.info.src │ │ │ │ │ ├── CDROM_AROS.png │ │ │ │ │ ├── CDROM_Amiga.info.src │ │ │ │ │ ├── CDROM_Amiga.png │ │ │ │ │ ├── Harddisk_Linux.info.src │ │ │ │ │ ├── Harddisk_Linux.png │ │ │ │ │ ├── Harddisk_MacOS.info.src │ │ │ │ │ ├── Harddisk_MacOS.png │ │ │ │ │ └── mmakefile.src │ │ │ │ ├── Drawers │ │ │ │ │ ├── Amiga.info.src │ │ │ │ │ ├── Amiga.png │ │ │ │ │ ├── Downloads-2.info.src │ │ │ │ │ ├── Downloads-2.png │ │ │ │ │ ├── Downloads.info.src │ │ │ │ │ ├── Downloads.png │ │ │ │ │ ├── Linux.info.src │ │ │ │ │ ├── Linux.png │ │ │ │ │ ├── Windows.info.src │ │ │ │ │ ├── Windows.png │ │ │ │ │ └── mmakefile.src │ │ │ │ └── Other │ │ │ │ │ ├── Mouse.info.src │ │ │ │ │ ├── Mouse.png │ │ │ │ │ ├── Pointer.info.src │ │ │ │ │ ├── Pointer.png │ │ │ │ │ └── mmakefile.src │ │ │ ├── Scalable │ │ │ │ └── AROS │ │ │ │ │ └── Prefs │ │ │ │ │ ├── Env-Archive │ │ │ │ │ └── SYS │ │ │ │ │ │ ├── def_Archive.svg │ │ │ │ │ │ ├── def_Authors.svg │ │ │ │ │ │ ├── def_CDROM.svg │ │ │ │ │ │ ├── def_CSS.svg │ │ │ │ │ │ ├── def_Disk.svg │ │ │ │ │ │ ├── def_Document.svg │ │ │ │ │ │ ├── def_Drawer.svg │ │ │ │ │ │ ├── def_Font.svg │ │ │ │ │ │ ├── def_HTML.svg │ │ │ │ │ │ ├── def_Harddisk.svg │ │ │ │ │ │ ├── def_Legal.svg │ │ │ │ │ │ ├── def_Movie.svg │ │ │ │ │ │ ├── def_Music.svg │ │ │ │ │ │ ├── def_PDF.svg │ │ │ │ │ │ ├── def_Patch.svg │ │ │ │ │ │ ├── def_Picture.svg │ │ │ │ │ │ ├── def_Postscript.svg │ │ │ │ │ │ ├── def_Presentation.svg │ │ │ │ │ │ ├── def_Printer.svg │ │ │ │ │ │ ├── def_Project.svg │ │ │ │ │ │ ├── def_RAM.svg │ │ │ │ │ │ ├── def_ReadMe.svg │ │ │ │ │ │ ├── def_Spreadsheet.svg │ │ │ │ │ │ ├── def_Text.svg │ │ │ │ │ │ ├── def_Tool.svg │ │ │ │ │ │ ├── def_Trashcan.svg │ │ │ │ │ │ └── def_XCF.svg │ │ │ │ │ └── Locale.svg │ │ │ ├── Small │ │ │ │ ├── .DS_Store │ │ │ │ ├── AROS │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Demos.info.src │ │ │ │ │ ├── Demos.png │ │ │ │ │ ├── Developer.info.src │ │ │ │ │ ├── Developer.png │ │ │ │ │ ├── Developer │ │ │ │ │ │ ├── .DS_Store │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Debug.info.src │ │ │ │ │ │ ├── Debug.png │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── Bifteck.info.src │ │ │ │ │ │ │ ├── Bifteck.png │ │ │ │ │ │ │ ├── Hardware.info.src │ │ │ │ │ │ │ ├── Hardware.png │ │ │ │ │ │ │ ├── Hardware │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── PCITool.info.src │ │ │ │ │ │ │ │ ├── PCITool.png │ │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ │ ├── Sashimi.info.src │ │ │ │ │ │ │ ├── Sashimi.png │ │ │ │ │ │ │ ├── Tests.info.src │ │ │ │ │ │ │ ├── Tests.png │ │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── DualPNG.info.src │ │ │ │ │ │ │ │ ├── DualPNG.png │ │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Include.info.src │ │ │ │ │ │ ├── Include.png │ │ │ │ │ │ ├── Lib.info.src │ │ │ │ │ │ ├── Lib.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Devs.info.src │ │ │ │ │ ├── Devs.png │ │ │ │ │ ├── Devs │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── DOSDrivers.info.src │ │ │ │ │ │ ├── DOSDrivers.png │ │ │ │ │ │ ├── DOSDrivers │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── ICD0.info.src │ │ │ │ │ │ │ ├── ICD0.png │ │ │ │ │ │ │ ├── ICD1.info.src │ │ │ │ │ │ │ ├── ICD1.png │ │ │ │ │ │ │ ├── IDF0.info.src │ │ │ │ │ │ │ ├── IDF0.png │ │ │ │ │ │ │ ├── IDF1.info.src │ │ │ │ │ │ │ ├── IDF1.png │ │ │ │ │ │ │ ├── ISO0.info.src │ │ │ │ │ │ │ ├── ISO0.png │ │ │ │ │ │ │ ├── PAR.info.src │ │ │ │ │ │ │ ├── PAR.png │ │ │ │ │ │ │ ├── PC0.info.src │ │ │ │ │ │ │ ├── PC0.png │ │ │ │ │ │ │ ├── PIPE.info.src │ │ │ │ │ │ │ ├── PIPE.png │ │ │ │ │ │ │ ├── PRT.info.src │ │ │ │ │ │ │ ├── PRT.png │ │ │ │ │ │ │ ├── SER.info.src │ │ │ │ │ │ │ ├── SER.png │ │ │ │ │ │ │ ├── SER0.info.src │ │ │ │ │ │ │ ├── SER0.png │ │ │ │ │ │ │ ├── SER1.info.src │ │ │ │ │ │ │ ├── SER1.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── DataTypes.info.src │ │ │ │ │ │ ├── DataTypes.png │ │ │ │ │ │ ├── Drivers.info.src │ │ │ │ │ │ ├── Drivers.png │ │ │ │ │ │ ├── Keymaps.info.src │ │ │ │ │ │ ├── Keymaps.png │ │ │ │ │ │ ├── Midi.info.src │ │ │ │ │ │ ├── Midi.png │ │ │ │ │ │ ├── Monitors.info.src │ │ │ │ │ │ ├── Monitors.png │ │ │ │ │ │ ├── Monitors │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── ATI.info.src │ │ │ │ │ │ │ ├── IntelGMA.info.src │ │ │ │ │ │ │ ├── NVidia.info.src │ │ │ │ │ │ │ ├── SAGA.info.src │ │ │ │ │ │ │ ├── VMWare.info.src │ │ │ │ │ │ │ ├── Wrapper.info.src │ │ │ │ │ │ │ ├── Wrapper.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Printers.info.src │ │ │ │ │ │ ├── Printers.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Fonts.info.src │ │ │ │ │ ├── Fonts.png │ │ │ │ │ ├── Libs.info.src │ │ │ │ │ ├── Libs.png │ │ │ │ │ ├── Locale.info.src │ │ │ │ │ ├── Locale.png │ │ │ │ │ ├── Locale │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Catalogs.info.src │ │ │ │ │ │ ├── Catalogs.png │ │ │ │ │ │ ├── Countries.info.src │ │ │ │ │ │ ├── Countries.png │ │ │ │ │ │ ├── Flags.info.src │ │ │ │ │ │ ├── Flags.png │ │ │ │ │ │ ├── Help.info.src │ │ │ │ │ │ ├── Help.png │ │ │ │ │ │ ├── Languages.info.src │ │ │ │ │ │ ├── Languages.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Prefs.info.src │ │ │ │ │ ├── Prefs.png │ │ │ │ │ ├── Prefs │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── AHI.info.src │ │ │ │ │ │ ├── AHI.png │ │ │ │ │ │ ├── Appearance.info.src │ │ │ │ │ │ ├── Appearance.png │ │ │ │ │ │ ├── BoingIconBar.info.src │ │ │ │ │ │ ├── BoingIconBar.png │ │ │ │ │ │ ├── Boot.info.src │ │ │ │ │ │ ├── Boot.png │ │ │ │ │ │ ├── Editor.info.src │ │ │ │ │ │ ├── Editor.png │ │ │ │ │ │ ├── Env-Archive │ │ │ │ │ │ │ └── SYS │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── def_A68K.info.src │ │ │ │ │ │ │ │ ├── def_A68K.png │ │ │ │ │ │ │ │ ├── def_ADF.info.src │ │ │ │ │ │ │ │ ├── def_ADF.png │ │ │ │ │ │ │ │ ├── def_ANIM.info.src │ │ │ │ │ │ │ │ ├── def_ANIM.png │ │ │ │ │ │ │ │ ├── def_AmiLua.info.src │ │ │ │ │ │ │ │ ├── def_AmiLua.png │ │ │ │ │ │ │ │ ├── def_AppIcon.info.src │ │ │ │ │ │ │ │ ├── def_AppIcon1.png │ │ │ │ │ │ │ │ ├── def_AppIcon2.png │ │ │ │ │ │ │ │ ├── def_Archive.info.src │ │ │ │ │ │ │ │ ├── def_Archive.png │ │ │ │ │ │ │ │ ├── def_AudioMode.info.src │ │ │ │ │ │ │ │ ├── def_AudioMode.png │ │ │ │ │ │ │ │ ├── def_Authors.info.src │ │ │ │ │ │ │ │ ├── def_Authors.png │ │ │ │ │ │ │ │ ├── def_BusyCDROM.info.src │ │ │ │ │ │ │ │ ├── def_BusyCDROM.png │ │ │ │ │ │ │ │ ├── def_Busydisk.info.src │ │ │ │ │ │ │ │ ├── def_Busydisk.png │ │ │ │ │ │ │ │ ├── def_Busyharddisk.info.src │ │ │ │ │ │ │ │ ├── def_Busyharddisk.png │ │ │ │ │ │ │ │ ├── def_CDROM.info.src │ │ │ │ │ │ │ │ ├── def_CDROM.png │ │ │ │ │ │ │ │ ├── def_CDXL.info.src │ │ │ │ │ │ │ │ ├── def_CDXL.png │ │ │ │ │ │ │ │ ├── def_CSS.info.src │ │ │ │ │ │ │ │ ├── def_CSS.png │ │ │ │ │ │ │ │ ├── def_Catalog.info.src │ │ │ │ │ │ │ │ ├── def_Catalog.png │ │ │ │ │ │ │ │ ├── def_Country.info.src │ │ │ │ │ │ │ │ ├── def_Country.png │ │ │ │ │ │ │ │ ├── def_DT64.info.src │ │ │ │ │ │ │ │ ├── def_DT64.png │ │ │ │ │ │ │ │ ├── def_DVD.info.src │ │ │ │ │ │ │ │ ├── def_DVD.png │ │ │ │ │ │ │ │ ├── def_DataType.info.src │ │ │ │ │ │ │ │ ├── def_DataType.png │ │ │ │ │ │ │ │ ├── def_Disk.info.src │ │ │ │ │ │ │ │ ├── def_Disk.png │ │ │ │ │ │ │ │ ├── def_Document.info.src │ │ │ │ │ │ │ │ ├── def_Document.png │ │ │ │ │ │ │ │ ├── def_Drawer.info.src │ │ │ │ │ │ │ │ ├── def_Drawer.png │ │ │ │ │ │ │ │ ├── def_ELF_EXE_Linux.info.src │ │ │ │ │ │ │ │ ├── def_ELF_EXE_Linux.png │ │ │ │ │ │ │ │ ├── def_FAT.info.src │ │ │ │ │ │ │ │ ├── def_FAT.png │ │ │ │ │ │ │ │ ├── def_FLAC.info.src │ │ │ │ │ │ │ │ ├── def_FLAC.png │ │ │ │ │ │ │ │ ├── def_Font.info.src │ │ │ │ │ │ │ │ ├── def_Font.png │ │ │ │ │ │ │ │ ├── def_GIFAnim.info.src │ │ │ │ │ │ │ │ ├── def_GIFAnim.png │ │ │ │ │ │ │ │ ├── def_HTML.info.src │ │ │ │ │ │ │ │ ├── def_HTML.png │ │ │ │ │ │ │ │ ├── def_Harddisk.info.src │ │ │ │ │ │ │ │ ├── def_Harddisk.png │ │ │ │ │ │ │ │ ├── def_Home.info.src │ │ │ │ │ │ │ │ ├── def_Home.png │ │ │ │ │ │ │ │ ├── def_Installer.info.src │ │ │ │ │ │ │ │ ├── def_Installer.png │ │ │ │ │ │ │ │ ├── def_Instrument.info.src │ │ │ │ │ │ │ │ ├── def_Instrument.png │ │ │ │ │ │ │ │ ├── def_Keymap.info.src │ │ │ │ │ │ │ │ ├── def_Keymap.png │ │ │ │ │ │ │ │ ├── def_KickDisk.info.src │ │ │ │ │ │ │ │ ├── def_KickDisk.png │ │ │ │ │ │ │ │ ├── def_KickROM.info.src │ │ │ │ │ │ │ │ ├── def_KickROM.png │ │ │ │ │ │ │ │ ├── def_LHA.info.src │ │ │ │ │ │ │ │ ├── def_LHA.png │ │ │ │ │ │ │ │ ├── def_Legal.info.src │ │ │ │ │ │ │ │ ├── def_Legal.png │ │ │ │ │ │ │ │ ├── def_Lua.info.src │ │ │ │ │ │ │ │ ├── def_Lua.png │ │ │ │ │ │ │ │ ├── def_M3U.info.src │ │ │ │ │ │ │ │ ├── def_M3U.png │ │ │ │ │ │ │ │ ├── def_MP3.info.src │ │ │ │ │ │ │ │ ├── def_MP3.png │ │ │ │ │ │ │ │ ├── def_MP3ID3.info.src │ │ │ │ │ │ │ │ ├── def_MP3ID3.png │ │ │ │ │ │ │ │ ├── def_MSD.info.src │ │ │ │ │ │ │ │ ├── def_MSD.png │ │ │ │ │ │ │ │ ├── def_MSI.info.src │ │ │ │ │ │ │ │ ├── def_MSI.png │ │ │ │ │ │ │ │ ├── def_Movie.info.src │ │ │ │ │ │ │ │ ├── def_Movie.png │ │ │ │ │ │ │ │ ├── def_Music.info.src │ │ │ │ │ │ │ │ ├── def_Music.png │ │ │ │ │ │ │ │ ├── def_NDOSCDROM.info.src │ │ │ │ │ │ │ │ ├── def_NDOSCDROM.png │ │ │ │ │ │ │ │ ├── def_NDOSdisk.info.src │ │ │ │ │ │ │ │ ├── def_NDOSdisk.png │ │ │ │ │ │ │ │ ├── def_NDOSharddisk.info.src │ │ │ │ │ │ │ │ ├── def_NDOSharddisk.png │ │ │ │ │ │ │ │ ├── def_NetworkHost.info.src │ │ │ │ │ │ │ │ ├── def_NetworkHost.png │ │ │ │ │ │ │ │ ├── def_Otag.info.src │ │ │ │ │ │ │ │ ├── def_Otag.png │ │ │ │ │ │ │ │ ├── def_PDF.info.src │ │ │ │ │ │ │ │ ├── def_PDF.png │ │ │ │ │ │ │ │ ├── def_PFS.info.src │ │ │ │ │ │ │ │ ├── def_PFS.png │ │ │ │ │ │ │ │ ├── def_PLS.info.src │ │ │ │ │ │ │ │ ├── def_PLS.png │ │ │ │ │ │ │ │ ├── def_Patch.info.src │ │ │ │ │ │ │ │ ├── def_Patch.png │ │ │ │ │ │ │ │ ├── def_Picture.info.src │ │ │ │ │ │ │ │ ├── def_Picture.png │ │ │ │ │ │ │ │ ├── def_Postscript.info.src │ │ │ │ │ │ │ │ ├── def_Postscript.png │ │ │ │ │ │ │ │ ├── def_Pref.info.src │ │ │ │ │ │ │ │ ├── def_Pref.png │ │ │ │ │ │ │ │ ├── def_Presentation.info.src │ │ │ │ │ │ │ │ ├── def_Presentation.png │ │ │ │ │ │ │ │ ├── def_Printer.info.src │ │ │ │ │ │ │ │ ├── def_Printer.png │ │ │ │ │ │ │ │ ├── def_Project.info.src │ │ │ │ │ │ │ │ ├── def_Project.png │ │ │ │ │ │ │ │ ├── def_Python.info.src │ │ │ │ │ │ │ │ ├── def_Python.png │ │ │ │ │ │ │ │ ├── def_RAD.info.src │ │ │ │ │ │ │ │ ├── def_RAD.png │ │ │ │ │ │ │ │ ├── def_RAM.info.src │ │ │ │ │ │ │ │ ├── def_RAM.png │ │ │ │ │ │ │ │ ├── def_REXX.info.src │ │ │ │ │ │ │ │ ├── def_REXX.png │ │ │ │ │ │ │ │ ├── def_ReadMe.info.src │ │ │ │ │ │ │ │ ├── def_ReadMe.png │ │ │ │ │ │ │ │ ├── def_SFS.info.src │ │ │ │ │ │ │ │ ├── def_SFS.png │ │ │ │ │ │ │ │ ├── def_Sashimi.info.src │ │ │ │ │ │ │ │ ├── def_Sashimi.png │ │ │ │ │ │ │ │ ├── def_Sound.info.src │ │ │ │ │ │ │ │ ├── def_Sound.png │ │ │ │ │ │ │ │ ├── def_Spreadsheet.info.src │ │ │ │ │ │ │ │ ├── def_Spreadsheet.png │ │ │ │ │ │ │ │ ├── def_Text.info.src │ │ │ │ │ │ │ │ ├── def_Text.png │ │ │ │ │ │ │ │ ├── def_Tool.info.src │ │ │ │ │ │ │ │ ├── def_Tool.png │ │ │ │ │ │ │ │ ├── def_Trashcan.info.src │ │ │ │ │ │ │ │ ├── def_Trashcan.png │ │ │ │ │ │ │ │ ├── def_TrueType.info.src │ │ │ │ │ │ │ │ ├── def_TrueType.png │ │ │ │ │ │ │ │ ├── def_USB.info.src │ │ │ │ │ │ │ │ ├── def_USB.png │ │ │ │ │ │ │ │ ├── def_UserHome.info.src │ │ │ │ │ │ │ │ ├── def_UserHome.png │ │ │ │ │ │ │ │ ├── def_Wireless.info.src │ │ │ │ │ │ │ │ ├── def_Wireless.png │ │ │ │ │ │ │ │ ├── def_XCF.info.src │ │ │ │ │ │ │ │ ├── def_XCF.png │ │ │ │ │ │ │ │ ├── def_Zune.info.src │ │ │ │ │ │ │ │ ├── def_Zune.png │ │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Font.info.src │ │ │ │ │ │ ├── Font.png │ │ │ │ │ │ ├── IControl.info.src │ │ │ │ │ │ ├── IControl.png │ │ │ │ │ │ ├── Input.info.src │ │ │ │ │ │ ├── Input.png │ │ │ │ │ │ ├── Locale.info.src │ │ │ │ │ │ ├── Locale.png │ │ │ │ │ │ ├── Network.info.src │ │ │ │ │ │ ├── Network.png │ │ │ │ │ │ ├── OpenURL.info.src │ │ │ │ │ │ ├── OpenURL.png │ │ │ │ │ │ ├── PSI.info.src │ │ │ │ │ │ ├── PSI.png │ │ │ │ │ │ ├── Palette.info.src │ │ │ │ │ │ ├── Palette.png │ │ │ │ │ │ ├── Pointer.info.src │ │ │ │ │ │ ├── Pointer.png │ │ │ │ │ │ ├── Presets.info.src │ │ │ │ │ │ ├── Presets.png │ │ │ │ │ │ ├── Presets │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── Patterns.info.src │ │ │ │ │ │ │ ├── Patterns.png │ │ │ │ │ │ │ ├── Themes.info.info.src │ │ │ │ │ │ │ ├── Themes.info.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Printer.info.src │ │ │ │ │ │ ├── Printer.png │ │ │ │ │ │ ├── ReqTools.info.src │ │ │ │ │ │ ├── ReqTools.png │ │ │ │ │ │ ├── ScreenMode.info.src │ │ │ │ │ │ ├── ScreenMode.png │ │ │ │ │ │ ├── Serial.info.src │ │ │ │ │ │ ├── Serial.png │ │ │ │ │ │ ├── Theme.info.src │ │ │ │ │ │ ├── Theme.png │ │ │ │ │ │ ├── Time.info.src │ │ │ │ │ │ ├── Time.png │ │ │ │ │ │ ├── Trackdisk.info.src │ │ │ │ │ │ ├── Trackdisk.png │ │ │ │ │ │ ├── Trident.info.src │ │ │ │ │ │ ├── Trident.png │ │ │ │ │ │ ├── Wanderer.info.src │ │ │ │ │ │ ├── Wanderer.png │ │ │ │ │ │ ├── Zune.info.src │ │ │ │ │ │ ├── Zune.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Rexxc.info.src │ │ │ │ │ ├── Rexxc.png │ │ │ │ │ ├── Storage.info.src │ │ │ │ │ ├── Storage.png │ │ │ │ │ ├── System.info.src │ │ │ │ │ ├── System.png │ │ │ │ │ ├── System │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── About.info.src │ │ │ │ │ │ ├── About.png │ │ │ │ │ │ ├── DiskImageGUI-1.png │ │ │ │ │ │ ├── DiskImageGUI-2.png │ │ │ │ │ │ ├── DiskImageGUI.info.src │ │ │ │ │ │ ├── FTManager.info.src │ │ │ │ │ │ ├── FTManager.png │ │ │ │ │ │ ├── Find.info.src │ │ │ │ │ │ ├── Find.png │ │ │ │ │ │ ├── FixFonts.info.src │ │ │ │ │ │ ├── FixFonts.png │ │ │ │ │ │ ├── Format.info.src │ │ │ │ │ │ ├── Format.png │ │ │ │ │ │ ├── Shell.info.src │ │ │ │ │ │ ├── Shell.png │ │ │ │ │ │ ├── Snoopy.info.src │ │ │ │ │ │ ├── Snoopy.png │ │ │ │ │ │ ├── SysMon.info.src │ │ │ │ │ │ ├── SysMon.png │ │ │ │ │ │ ├── WorkBook.info.src │ │ │ │ │ │ ├── WorkBook.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Tools.info.src │ │ │ │ │ ├── Tools.png │ │ │ │ │ ├── Tools │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── BoingIconBar.info.src │ │ │ │ │ │ ├── BoingIconBar.png │ │ │ │ │ │ ├── Calculator.info.src │ │ │ │ │ │ ├── Calculator.png │ │ │ │ │ │ ├── Commodities.info.src │ │ │ │ │ │ ├── Commodities.png │ │ │ │ │ │ ├── Commodities │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── ASCIITable.info.src │ │ │ │ │ │ │ ├── ASCIITable.png │ │ │ │ │ │ │ ├── AltKeyQ.info.src │ │ │ │ │ │ │ ├── AltKeyQ.png │ │ │ │ │ │ │ ├── AutoPoint.info.src │ │ │ │ │ │ │ ├── AutoPoint.png │ │ │ │ │ │ │ ├── Blanker.info.src │ │ │ │ │ │ │ ├── Blanker.png │ │ │ │ │ │ │ ├── ClickToFront.info.src │ │ │ │ │ │ │ ├── ClickToFront.png │ │ │ │ │ │ │ ├── DepthMenu.info.src │ │ │ │ │ │ │ ├── DepthMenu.png │ │ │ │ │ │ │ ├── Exchange.info.src │ │ │ │ │ │ │ ├── Exchange.png │ │ │ │ │ │ │ ├── FKey.info.src │ │ │ │ │ │ │ ├── FKey.png │ │ │ │ │ │ │ ├── NoCapsLock.info.src │ │ │ │ │ │ │ ├── NoCapsLock.png │ │ │ │ │ │ │ ├── Opaque.info.src │ │ │ │ │ │ │ ├── Opaque.png │ │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ │ ├── Editor.info.src │ │ │ │ │ │ ├── Editor.png │ │ │ │ │ │ ├── GraphicDump.info.src │ │ │ │ │ │ ├── GraphicDump.png │ │ │ │ │ │ ├── HDToolBox.info.src │ │ │ │ │ │ ├── HDToolBox.png │ │ │ │ │ │ ├── InitPrinter.info.src │ │ │ │ │ │ ├── InitPrinter.png │ │ │ │ │ │ ├── InstallAROS.info.src │ │ │ │ │ │ ├── InstallAROS.png │ │ │ │ │ │ ├── KeyShow.info.src │ │ │ │ │ │ ├── KeyShow.png │ │ │ │ │ │ ├── PrintFiles.info.src │ │ │ │ │ │ ├── PrintFiles.png │ │ │ │ │ │ ├── ScreenGrabber.info.src │ │ │ │ │ │ ├── ScreenGrabber.png │ │ │ │ │ │ ├── ShowConfig.info.src │ │ │ │ │ │ ├── ShowConfig.png │ │ │ │ │ │ ├── SysExplorer.info.src │ │ │ │ │ │ ├── SysExplorer.png │ │ │ │ │ │ ├── WiMP.info.src │ │ │ │ │ │ ├── WiMP.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── Utilities.info.src │ │ │ │ │ ├── Utilities.png │ │ │ │ │ ├── Utilities │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Clock.info.src │ │ │ │ │ │ ├── Clock.png │ │ │ │ │ │ ├── Help.info.src │ │ │ │ │ │ ├── Help.png │ │ │ │ │ │ ├── Installer.info.src │ │ │ │ │ │ ├── Installer.png │ │ │ │ │ │ ├── More.info.src │ │ │ │ │ │ ├── More.png │ │ │ │ │ │ ├── MultiView.info.src │ │ │ │ │ │ ├── MultiView.png │ │ │ │ │ │ └── mmakefile.src │ │ │ │ │ ├── WBStartup.info.src │ │ │ │ │ ├── WBStartup.png │ │ │ │ │ └── mmakefile.src │ │ │ │ ├── Computers │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Amiga.info.src │ │ │ │ │ ├── Amiga.png │ │ │ │ │ ├── Generic.info.src │ │ │ │ │ ├── Generic.png │ │ │ │ │ ├── Linux.info.src │ │ │ │ │ ├── Linux.png │ │ │ │ │ ├── MacOS.info.src │ │ │ │ │ ├── MacOS.png │ │ │ │ │ ├── Networked_Amiga.info.src │ │ │ │ │ ├── Networked_Amiga.png │ │ │ │ │ ├── Networked_Generic.info.src │ │ │ │ │ ├── Networked_Generic.png │ │ │ │ │ ├── Networked_Linux.info.src │ │ │ │ │ ├── Networked_Linux.png │ │ │ │ │ ├── Networked_MacOS.info.src │ │ │ │ │ ├── Networked_MacOS.png │ │ │ │ │ ├── Networked_Windows.info.src │ │ │ │ │ ├── Networked_Windows.png │ │ │ │ │ ├── Windows.info.src │ │ │ │ │ ├── Windows.png │ │ │ │ │ └── mmakefile.src │ │ │ │ ├── Disks │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AROSHarddisk_Linux.info.src │ │ │ │ │ ├── AROSHarddisk_Linux.png │ │ │ │ │ ├── AROSHarddisk_MacOS.info.src │ │ │ │ │ ├── AROSHarddisk_MacOS.png │ │ │ │ │ ├── AROSHarddisk_Windows.info.src │ │ │ │ │ ├── AROSHarddisk_Windows.png │ │ │ │ │ ├── CDROM_AROS.info.src │ │ │ │ │ ├── CDROM_AROS.png │ │ │ │ │ ├── CDROM_Amiga.info.src │ │ │ │ │ ├── CDROM_Amiga.png │ │ │ │ │ ├── Harddisk_Amiga.info.src │ │ │ │ │ ├── Harddisk_Amiga.png │ │ │ │ │ ├── Harddisk_Linux.info.src │ │ │ │ │ ├── Harddisk_Linux.png │ │ │ │ │ ├── Harddisk_MacOS.info.src │ │ │ │ │ ├── Harddisk_MacOS.png │ │ │ │ │ ├── Harddisk_Windows.info.src │ │ │ │ │ ├── Harddisk_Windows.png │ │ │ │ │ └── mmakefile.src │ │ │ │ ├── Drawers │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Amiga.info.src │ │ │ │ │ ├── Amiga.png │ │ │ │ │ ├── Downloads-2.info.src │ │ │ │ │ ├── Downloads-2.png │ │ │ │ │ ├── Downloads.info.src │ │ │ │ │ ├── Downloads.png │ │ │ │ │ ├── Linux.info.src │ │ │ │ │ ├── Linux.png │ │ │ │ │ ├── Windows.info.src │ │ │ │ │ ├── Windows.png │ │ │ │ │ └── mmakefile.src │ │ │ │ └── Other │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Mouse.info.src │ │ │ │ │ ├── Mouse.png │ │ │ │ │ ├── Pointer.info.src │ │ │ │ │ ├── Pointer.png │ │ │ │ │ └── mmakefile.src │ │ │ ├── Tiny │ │ │ │ ├── CDROM.png │ │ │ │ ├── Computer.png │ │ │ │ ├── Drawer.png │ │ │ │ ├── File.png │ │ │ │ ├── Harddisk.png │ │ │ │ ├── RAMdisk.png │ │ │ │ ├── USBdisk.png │ │ │ │ └── mmakefile.src │ │ │ └── mmakefile.src │ │ └── LEGAL │ ├── Mason │ │ ├── .gitignore │ │ ├── 4cols │ │ │ ├── def_disk.info │ │ │ ├── def_drawer.info │ │ │ ├── def_file.info │ │ │ ├── def_harddrive.info │ │ │ ├── def_project.info │ │ │ ├── def_ram.info │ │ │ ├── def_tool.info │ │ │ ├── def_trashcan.info │ │ │ ├── def_txt.info │ │ │ └── shell.info │ │ ├── Programs │ │ │ └── DirectoryOpus.png │ │ ├── drawers │ │ │ ├── Default.png │ │ │ ├── Programs.png │ │ │ ├── Sound.png │ │ │ └── mmakefile.src │ │ ├── drives │ │ │ ├── AROS.png │ │ │ ├── AROS_BootCD.png │ │ │ ├── AROS_BootFloppy.png │ │ │ ├── CD.png │ │ │ ├── CDDA.png │ │ │ ├── Default.png │ │ │ ├── Disk.png │ │ │ ├── RAM.png │ │ │ ├── Work.png │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ └── workbench │ │ │ ├── Demos.info.src │ │ │ ├── Demos.png │ │ │ ├── Developer.info.src │ │ │ ├── Developer.png │ │ │ ├── Developer │ │ │ ├── .gitignore │ │ │ ├── Debug.info.src │ │ │ ├── Debug.png │ │ │ ├── Debug │ │ │ │ ├── .gitignore │ │ │ │ ├── Sashimi.info.src │ │ │ │ ├── Sashimi.png │ │ │ │ └── mmakefile.src │ │ │ └── mmakefile.src │ │ │ ├── Devs.info.src │ │ │ ├── Devs.png │ │ │ ├── Fonts.info.src │ │ │ ├── Fonts.png │ │ │ ├── Locale.info.src │ │ │ ├── Locale.png │ │ │ ├── Locale │ │ │ ├── Help.info.src │ │ │ ├── Help.png │ │ │ ├── Help │ │ │ │ ├── LICENSE.info.src │ │ │ │ ├── LICENSE.png │ │ │ │ └── mmakefile.src │ │ │ └── mmakefile.src │ │ │ ├── Prefs.info.src │ │ │ ├── Prefs.png │ │ │ ├── Prefs │ │ │ ├── CDROM.png │ │ │ ├── Env-Archive │ │ │ │ ├── README │ │ │ │ ├── def_CDROM.info.src │ │ │ │ ├── def_CDROM.png │ │ │ │ ├── def_DOSDriver.info.src │ │ │ │ ├── def_DOSDriver.png │ │ │ │ ├── def_Disk.info.src │ │ │ │ ├── def_Disk.png │ │ │ │ ├── def_Document.info.src │ │ │ │ ├── def_Document.png │ │ │ │ ├── def_Drawer.info.src │ │ │ │ ├── def_Drawer.png │ │ │ │ ├── def_HTML.info.src │ │ │ │ ├── def_HTML.png │ │ │ │ ├── def_Harddisk.info.src │ │ │ │ ├── def_Harddisk.png │ │ │ │ ├── def_Project.info.src │ │ │ │ ├── def_Project.png │ │ │ │ ├── def_RAM.info.src │ │ │ │ ├── def_RAM.png │ │ │ │ ├── def_Text.info.src │ │ │ │ ├── def_Text.png │ │ │ │ ├── def_Tool.info.src │ │ │ │ ├── def_Tool.png │ │ │ │ └── mmakefile.src │ │ │ ├── Font.info.src │ │ │ ├── Font.png │ │ │ ├── Input.info.src │ │ │ ├── Input.png │ │ │ ├── Locale.info.src │ │ │ ├── Locale.png │ │ │ ├── Overscan.png │ │ │ ├── Palette.info.src │ │ │ ├── Palette.png │ │ │ ├── Pointer.info.src │ │ │ ├── Pointer.png │ │ │ ├── Printer.info.src │ │ │ ├── Printer.png │ │ │ ├── PrinterGFX.png │ │ │ ├── PrinterPS.png │ │ │ ├── ReqTools.info.src │ │ │ ├── ReqTools.png │ │ │ ├── ScreenMode.info.src │ │ │ ├── ScreenMode.png │ │ │ ├── Serial.info.src │ │ │ ├── Serial.png │ │ │ ├── Time.info.src │ │ │ ├── Time.png │ │ │ ├── Wanderer.info.src │ │ │ ├── Wanderer.png │ │ │ ├── Zune.info.src │ │ │ ├── Zune.png │ │ │ └── mmakefile.src │ │ │ ├── Startup.png │ │ │ ├── Storage.info.src │ │ │ ├── Storage.png │ │ │ ├── System.info.src │ │ │ ├── System.png │ │ │ ├── T.info.src │ │ │ ├── T.png │ │ │ ├── Tools.info.src │ │ │ ├── Tools.png │ │ │ ├── Tools │ │ │ ├── CMD.png │ │ │ ├── Calculator.info.src │ │ │ ├── Calculator.png │ │ │ ├── Commodities.info.src │ │ │ ├── Commodities.png │ │ │ ├── Commodities │ │ │ │ ├── AutoPoint.info.src │ │ │ │ ├── AutoPoint.png │ │ │ │ ├── Background.png │ │ │ │ ├── Blanker.info.src │ │ │ │ ├── Blanker.png │ │ │ │ ├── ClickToFront.info.src │ │ │ │ ├── ClickToFront.png │ │ │ │ ├── Exchange.info.src │ │ │ │ ├── Exchange.png │ │ │ │ ├── FKey.png │ │ │ │ ├── MouseBlanker.png │ │ │ │ ├── Opaque.info.src │ │ │ │ ├── Opaque.png │ │ │ │ └── mmakefile.src │ │ │ ├── HDToolBox.info.src │ │ │ ├── HDToolBox.png │ │ │ ├── IconEdit.png │ │ │ ├── InitPrinter.png │ │ │ ├── Lacer.png │ │ │ ├── Memacs.png │ │ │ ├── PrintFiles.png │ │ │ ├── Screendump.png │ │ │ ├── WiMP.info.src │ │ │ ├── WiMP.png │ │ │ └── mmakefile.src │ │ │ ├── Utilities.info.src │ │ │ ├── Utilities.png │ │ │ ├── Utilities │ │ │ ├── Clock.info.src │ │ │ ├── Clock.png │ │ │ ├── Installer.info.src │ │ │ ├── Installer.png │ │ │ ├── More.info.src │ │ │ ├── More.png │ │ │ ├── MultiView.info.src │ │ │ ├── MultiView.png │ │ │ └── mmakefile.src │ │ │ ├── devs-and-storage │ │ │ ├── DOSDrivers.png │ │ │ ├── Keymaps.info.src │ │ │ ├── Keymaps.png │ │ │ ├── Monitors.png │ │ │ ├── Printers.png │ │ │ └── mmakefile.src │ │ │ ├── mmakefile.src │ │ │ └── system │ │ │ ├── DiskCopy.png │ │ │ ├── FixFonts.info.src │ │ │ ├── FixFonts.png │ │ │ ├── Format.png │ │ │ ├── IntelliFont.png │ │ │ ├── Shell.png │ │ │ └── mmakefile.src │ └── mmakefile.src ├── Logos │ └── AHI.png ├── Patterns │ ├── Misc │ │ ├── .gitignore │ │ ├── 70scurve.png │ │ ├── amoeba.png │ │ ├── arabesq.png │ │ ├── arizonabg.png │ │ ├── backblue.png │ │ ├── bluefuture.png │ │ ├── bluegear.png │ │ ├── bluejag.png │ │ ├── bluestripe.png │ │ ├── blueswirl.png │ │ ├── greendrp.png │ │ ├── greyfuture.png │ │ ├── grnswrl.png │ │ ├── litemrbl.png │ │ ├── mmakefile.src │ │ ├── rednoise.png │ │ ├── ripples.png │ │ ├── rock.png │ │ ├── starblu.png │ │ ├── wp_ivy.png │ │ └── wp_rose10.png │ ├── Stripes │ │ ├── Blue.iff │ │ ├── Yellow.iff │ │ └── mmakefile.src │ └── mmakefile ├── Themes │ ├── AROSDefault │ │ ├── Env-Archive │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ ├── AmigaOS1.x │ │ ├── Env-Archive │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ ├── AmigaOS3.x │ │ ├── Env-Archive │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ ├── AmigaOS4.x │ │ ├── Env-Archive │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ ├── DarkEnder │ │ ├── Env-Archive │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ ├── Darkness │ │ ├── Description │ │ ├── Env-Archive │ │ │ ├── SYS │ │ │ │ ├── Wanderer │ │ │ │ │ └── global.prefs │ │ │ │ ├── font.prefs │ │ │ │ └── palette.prefs │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ ├── Ice │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default.png │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default.png │ │ │ ├── Radio │ │ │ └── default.png │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ └── default │ │ │ └── Zoom │ │ │ └── default │ ├── MacOSX-Lion │ │ ├── Env-Archive │ │ │ └── Zune │ │ │ │ └── global.prefs │ │ ├── images │ │ │ └── Gadgets │ │ │ │ ├── Below │ │ │ │ ├── Cancel │ │ │ │ ├── DirUp │ │ │ │ ├── Help │ │ │ │ ├── Next │ │ │ │ ├── OK │ │ │ │ ├── Previous │ │ │ │ ├── Revert │ │ │ │ ├── Save │ │ │ │ ├── Search │ │ │ │ ├── Test │ │ │ │ └── Use │ │ ├── menu │ │ │ ├── AmigaKey │ │ │ │ └── default │ │ │ ├── Background │ │ │ │ └── default │ │ │ ├── Checkmark │ │ │ │ └── default │ │ │ ├── SubMenu │ │ │ │ └── default │ │ │ └── config │ │ └── system │ │ │ ├── Arrowdown │ │ │ └── default │ │ │ ├── Arrowleft │ │ │ └── default │ │ │ ├── Arrowright │ │ │ └── default │ │ │ ├── Arrowup │ │ │ └── default │ │ │ ├── Borders │ │ │ ├── default │ │ │ └── default_deactivated │ │ │ ├── Checkmark │ │ │ ├── Default │ │ │ ├── Default.amap │ │ │ ├── Default.info │ │ │ ├── Default.omap │ │ │ └── default.png │ │ │ ├── Close │ │ │ ├── default │ │ │ └── extra.png │ │ │ ├── Config │ │ │ ├── Container │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Cycle │ │ │ └── default │ │ │ ├── Depth │ │ │ └── default │ │ │ ├── Iconify │ │ │ └── default │ │ │ ├── Knob │ │ │ ├── Horizontal │ │ │ └── Vertical │ │ │ ├── Popup │ │ │ └── default │ │ │ ├── Radio │ │ │ └── default │ │ │ ├── SDepth │ │ │ └── Default │ │ │ ├── STitlebar │ │ │ └── default │ │ │ ├── Size │ │ │ └── default │ │ │ ├── Titlebar │ │ │ ├── default │ │ │ └── mask │ │ │ └── Zoom │ │ │ └── default │ └── Xstream │ │ ├── Description │ │ ├── Env-Archive │ │ └── Zune │ │ │ └── global.prefs │ │ ├── images │ │ └── Gadgets │ │ │ ├── Below │ │ │ ├── Cancel │ │ │ ├── DirUp │ │ │ ├── Help │ │ │ ├── Next │ │ │ ├── OK │ │ │ ├── Previous │ │ │ ├── Revert │ │ │ ├── Save │ │ │ ├── Search │ │ │ ├── Test │ │ │ └── Use │ │ ├── menu │ │ ├── AmigaKey │ │ │ └── default │ │ ├── Background │ │ │ └── default │ │ ├── Checkmark │ │ │ └── default │ │ ├── SubMenu │ │ │ └── default │ │ └── config │ │ └── system │ │ ├── Arrowdown │ │ └── default │ │ ├── Arrowleft │ │ └── default │ │ ├── Arrowright │ │ └── default │ │ ├── Arrowup │ │ └── default │ │ ├── Borders │ │ ├── default │ │ └── default_deactivated │ │ ├── Checkmark │ │ ├── Default │ │ ├── Default.amap │ │ ├── Default.info │ │ ├── Default.omap │ │ └── default.png │ │ ├── Close │ │ ├── default │ │ └── extra.png │ │ ├── Config │ │ ├── Container │ │ ├── Horizontal │ │ └── Vertical │ │ ├── Cycle │ │ └── default │ │ ├── Depth │ │ └── default │ │ ├── Iconify │ │ └── default │ │ ├── Knob │ │ ├── Horizontal │ │ └── Vertical │ │ ├── Popup │ │ └── default │ │ ├── Radio │ │ └── default │ │ ├── SDepth │ │ └── Default │ │ ├── STitlebar │ │ └── default │ │ ├── Size │ │ └── default │ │ ├── Titlebar │ │ ├── default │ │ └── mask │ │ └── Zoom │ │ └── default ├── Wallpapers │ ├── 2007-comp-entries │ │ ├── 01-d980_wearefutureot3.jpg │ │ ├── 02-d980_aros-rose.jpg │ │ ├── 03-wesssper_aros.jpg │ │ ├── 04-Mithrandir_wallpaperupdated.jpg │ │ ├── 05-sprocket-01_aroscrap.jpg │ │ ├── 06-amigamia-04_AROS_Creation.jpg │ │ ├── 07-klesterjr_AROS_Rising.jpg │ │ ├── 08-roadto10_v2_spring.jpg │ │ ├── 09-seventyfour_02-arosglass.jpg │ │ ├── 10-Infiniton_arosgreen.jpg │ │ └── cecilia-01_StepinOutWP2.jpg │ └── dark │ │ ├── 4450138-dark-backgrounds.jpg │ │ ├── 4450186-dark-backgrounds.jpg │ │ ├── 4450325-dark-backgrounds.jpg │ │ ├── 4450425-dark-backgrounds.jpg │ │ └── wet-monstera-deliciosa.jpg ├── kalamatee │ ├── gadgets │ │ ├── mmakefile │ │ ├── system │ │ │ ├── mmakefile.src │ │ │ ├── sys_group │ │ │ ├── sys_pass │ │ │ └── sys_user │ │ └── window │ │ │ ├── mmakefile.src │ │ │ ├── simoami │ │ │ ├── mmakefile.src │ │ │ ├── win_close │ │ │ ├── win_depth │ │ │ ├── win_size │ │ │ └── win_zoom │ │ │ ├── special │ │ │ ├── mmakefile.src │ │ │ ├── win_close │ │ │ ├── win_close_N │ │ │ ├── win_depth │ │ │ ├── win_depth_N │ │ │ ├── win_size │ │ │ ├── win_size_N │ │ │ ├── win_zoom │ │ │ └── win_zoom_N │ │ │ └── xen │ │ │ └── mmakefile.src │ ├── icons │ │ ├── drawers │ │ │ ├── Default.png │ │ │ └── Default_small.png │ │ └── programs │ │ │ ├── DirectoryOpus.png │ │ │ └── FractalLands.png │ ├── logos │ │ ├── FloppyWriter.logo │ │ ├── install.logo │ │ ├── login.logo │ │ └── mmakefile.src │ ├── mmakefile │ └── spacer.png ├── mason │ └── gadgets │ │ ├── mmakefile │ │ └── prefs │ │ ├── Cancel │ │ ├── FontPreview.png │ │ ├── FontSettings.png │ │ ├── InputKeyboard.png │ │ ├── InputMouse.png │ │ ├── LocaleCountry.png │ │ ├── LocaleLanguage.png │ │ ├── LocaleTimeZone.png │ │ ├── Revert │ │ ├── Save │ │ ├── Test │ │ ├── Use │ │ └── mmakefile.src ├── mmakefile.src └── pointers │ ├── Busy │ └── zzz.png │ ├── Classic │ └── NormalAndBusy.prefs │ ├── Normal │ ├── black.png │ ├── black00.png │ ├── classic.png │ ├── red.png │ ├── red00.png │ ├── red2.png │ ├── white.png │ └── white00.png │ └── mmakefile.src ├── license.html ├── mmake.config.in ├── mmakefile ├── rom ├── alerthook │ ├── alerthook.c │ ├── mmakefile.src │ └── resident_end.c ├── aros │ ├── aros.conf │ ├── aros_init.c │ ├── aros_intern.h │ ├── arosinquirea.c │ └── mmakefile.src ├── battclock │ ├── battclock.conf │ ├── battclock_intern.h │ ├── mmakefile.src │ ├── readbattclock.c │ ├── resetbattclock.c │ └── writebattclock.c ├── bootloader │ ├── bootloader.conf │ ├── bootloader_init.c │ ├── bootloader_intern.h │ ├── getbootinfo.c │ └── mmakefile.src ├── card │ ├── card.conf │ ├── card_init.c │ ├── card_intern.h │ └── mmakefile.src ├── cgxbootpic │ ├── .gitignore │ ├── bootpic.ilbm │ ├── cgxbootpic.conf │ ├── cgxbootpic_init.c │ ├── cgxbootpic_intern.h │ ├── mmakefile.src │ └── renderbootpic.c ├── dbus │ ├── amiga_threads.c │ ├── dbus.conf │ ├── include │ │ ├── dbus-address.h │ │ ├── dbus-arch-deps.h │ │ ├── dbus-bus.h │ │ ├── dbus-connection.h │ │ ├── dbus-errors.h │ │ ├── dbus-macros.h │ │ ├── dbus-memory.h │ │ ├── dbus-message.h │ │ ├── dbus-pending-call.h │ │ ├── dbus-protocol.h │ │ ├── dbus-server.h │ │ ├── dbus-shared.h │ │ ├── dbus-threads.h │ │ ├── dbus-types.h │ │ └── dbus.h │ ├── mmakefile.src │ └── test │ │ ├── Makefile │ │ ├── dbus-amiga.c │ │ ├── dbus-amiga.h │ │ ├── dbus-dcop-bridge.c │ │ ├── dbus-dcop.c │ │ ├── dbus-ping-listen.c │ │ ├── dbus-ping-listen.py │ │ ├── dbus-ping-send.c │ │ ├── dbus-ping-send.py │ │ └── dbus-ping.c ├── debug │ ├── _kprintf.c │ ├── debug.conf │ ├── debug_init.c │ ├── debug_intern.h │ ├── decodelocation.c │ ├── disassemble.c │ ├── enumeratesymbolsa.c │ ├── kdofmt.c │ ├── kgetchar.c │ ├── kmaygetchar.c │ ├── kputstr.c │ ├── kvprintf.c │ ├── mmakefile.src │ ├── registermodule.c │ └── unregistermodule.c ├── devs │ ├── ahci │ │ ├── .gitignore │ │ ├── ahci.c │ │ ├── ahci.conf │ │ ├── ahci.h │ │ ├── ahci_aros.c │ │ ├── ahci_aros.h │ │ ├── ahci_aros_bus.c │ │ ├── ahci_attach.c │ │ ├── ahci_busclass.c │ │ ├── ahci_cam_aros.c │ │ ├── ahci_controllerclass.c │ │ ├── ahci_init.c │ │ ├── ahci_intern.h │ │ ├── ahci_io.c │ │ ├── ahci_pm.c │ │ ├── ahci_scsi.c │ │ ├── ahci_scsi.h │ │ ├── ahci_unitclass.c │ │ ├── bus_pci.c │ │ ├── include │ │ │ ├── devices │ │ │ │ └── atascsi.h │ │ │ └── hidd │ │ │ │ └── ahci.h │ │ ├── mmakefile.src │ │ ├── pci_ids.h │ │ ├── pmreg.h │ │ ├── subr_prf.c │ │ ├── timer.c │ │ └── timer.h │ ├── ata │ │ ├── ata.c │ │ ├── ata.conf │ │ ├── ata.h │ │ ├── ata_bus.h │ │ ├── ata_busclass.c │ │ ├── ata_controllerclass.c │ │ ├── ata_init.c │ │ ├── ata_smart.c │ │ ├── ata_trim.c │ │ ├── ata_unitclass.c │ │ ├── bootwait.c │ │ ├── include │ │ │ ├── hardware │ │ │ │ └── ata.h │ │ │ └── hidd │ │ │ │ └── ata.h │ │ ├── lowlevel.c │ │ ├── mmakefile.src │ │ ├── scsiemu.c │ │ ├── timer.c │ │ ├── timer.h │ │ ├── waitnano.c │ │ └── waitto.c │ ├── console │ │ ├── addconsniphook.c │ │ ├── cdinputhandler.c │ │ ├── charmap.c │ │ ├── charmap.h │ │ ├── charmapconclass.c │ │ ├── console.c │ │ ├── console.conf │ │ ├── console_gcc.h │ │ ├── consoleclass.c │ │ ├── consoleif.h │ │ ├── consoletask.c │ │ ├── getconsnip.c │ │ ├── include │ │ │ ├── console.h │ │ │ └── conunit.h │ │ ├── mmakefile.src │ │ ├── rawkeyconvert.c │ │ ├── remconsniphook.c │ │ ├── rendezvous.c │ │ ├── setconsnip.c │ │ ├── snipmapconclass.c │ │ ├── stdconclass.c │ │ └── support.c │ ├── gameport │ │ ├── gameport.c │ │ ├── gameport.conf │ │ ├── gameport_gcc.h │ │ ├── gameport_intern.h │ │ ├── include │ │ │ └── gameport.h │ │ └── mmakefile.src │ ├── input │ │ ├── input.c │ │ ├── input.conf │ │ ├── input_intern.h │ │ ├── mmakefile.src │ │ ├── peekqualifier.c │ │ ├── processevents.c │ │ └── support.c │ ├── keyboard │ │ ├── abstractkeycodes.h │ │ ├── keyboard.c │ │ ├── keyboard.conf │ │ ├── keyboard_gcc.h │ │ ├── keyboard_intern.h │ │ └── mmakefile.src │ ├── nvme │ │ ├── .gitignore │ │ ├── include │ │ │ ├── hardware │ │ │ │ └── nvme.h │ │ │ └── hidd │ │ │ │ └── nvme.h │ │ ├── mmakefile.src │ │ ├── nvme.conf │ │ ├── nvme_busclass.c │ │ ├── nvme_controllerclass.c │ │ ├── nvme_debug.h │ │ ├── nvme_hw.c │ │ ├── nvme_hw.h │ │ ├── nvme_init.c │ │ ├── nvme_intern.h │ │ ├── nvme_io.c │ │ ├── nvme_prp.c │ │ ├── nvme_queue.c │ │ ├── nvme_queue.h │ │ ├── nvme_queue_admin.c │ │ ├── nvme_queue_admin.h │ │ ├── nvme_queue_io.c │ │ ├── nvme_queue_io.h │ │ ├── nvme_sgl.c │ │ ├── nvme_timer.c │ │ ├── nvme_timer.h │ │ └── nvme_unitclass.c │ ├── scsi │ │ ├── .gitignore │ │ ├── bootwait.c │ │ ├── include │ │ │ ├── devices │ │ │ │ └── scsicmds.h │ │ │ ├── hardware │ │ │ │ └── scsi.h │ │ │ └── hidd │ │ │ │ └── scsi.h │ │ ├── lowlevel.c │ │ ├── mmakefile.src │ │ ├── scsi.c │ │ ├── scsi.conf │ │ ├── scsi.h │ │ ├── scsi_bus.h │ │ ├── scsi_busclass.c │ │ ├── scsi_controllerclass.c │ │ ├── scsi_init.c │ │ ├── scsi_unitclass.c │ │ ├── timer.c │ │ ├── timer.h │ │ ├── waitnano.c │ │ └── waitto.c │ ├── sdcard │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── sdcard.conf │ │ ├── sdcard_base.h │ │ ├── sdcard_bus.c │ │ ├── sdcard_bus.h │ │ ├── sdcard_device.c │ │ ├── sdcard_init.c │ │ ├── sdcard_ioops.c │ │ ├── sdcard_mmcunit.c │ │ ├── sdcard_sdscunit.c │ │ ├── sdcard_unit.h │ │ ├── timer.c │ │ └── timer.h │ └── trackdisk │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── trackdisk.conf │ │ ├── trackdisk_device.c │ │ ├── trackdisk_device.h │ │ ├── trackdisk_hw.c │ │ └── trackdisk_hw.h ├── disk │ ├── allocunit.c │ ├── disk.conf │ ├── disk_init.c │ ├── disk_intern.h │ ├── disk_intern_init.c │ ├── freeunit.c │ ├── getunit.c │ ├── getunitid.c │ ├── giveunit.c │ ├── mmakefile.src │ └── readunitid.c ├── dos │ ├── abortpkt.c │ ├── addbuffers.c │ ├── adddosentry.c │ ├── addpart.c │ ├── addsegment.c │ ├── allocdosobject.c │ ├── assignadd.c │ ├── assignaddtolist.c │ ├── assignlate.c │ ├── assignlock.c │ ├── assignpath.c │ ├── attemptlockdoslist.c │ ├── banner.c │ ├── boot.c │ ├── bstr_helper.c │ ├── changemode.c │ ├── checksignal.c │ ├── cli.c │ ├── cliinit.c │ ├── cliinitnewcli.c │ ├── cliinitrun.c │ ├── close.c │ ├── comparedates.c │ ├── createdir.c │ ├── createnewproc.c │ ├── createproc.c │ ├── currentdir.c │ ├── date.h │ ├── datestamp.c │ ├── datetostr.c │ ├── delay.c │ ├── deletefile.c │ ├── deletevar.c │ ├── deviceproc.c │ ├── displayerror.c │ ├── dopkt.c │ ├── dos.conf │ ├── dos_init.c │ ├── dos_intern.h │ ├── dos_newcliproc.h │ ├── dos_private.h │ ├── dosgetstring.c │ ├── duplock.c │ ├── duplockfromfh.c │ ├── endnotify.c │ ├── errorlist.c │ ├── errorreport.c │ ├── exall.c │ ├── exallend.c │ ├── examine.c │ ├── examinefh.c │ ├── execute.c │ ├── exit.c │ ├── exnext.c │ ├── fault.c │ ├── fgetc.c │ ├── fgets.c │ ├── filepart.c │ ├── findarg.c │ ├── findcliproc.c │ ├── finddosentry.c │ ├── findsegment.c │ ├── findvar.c │ ├── flush.c │ ├── format.c │ ├── fputc.c │ ├── fputs.c │ ├── fread.c │ ├── freeargs.c │ ├── freedeviceproc.c │ ├── freedosentry.c │ ├── freedosobject.c │ ├── fs_driver.c │ ├── fs_driver.h │ ├── fwrite.c │ ├── genstrings.py │ ├── getargstr.c │ ├── getconsoletask.c │ ├── getcurrentdirname.c │ ├── getdeviceproc.c │ ├── getfilesystask.c │ ├── getprogramdir.c │ ├── getprogramname.c │ ├── getprompt.c │ ├── getseglistinfo.c │ ├── getvar.c │ ├── include │ │ └── loadseg.h │ ├── info.c │ ├── inhibit.c │ ├── input.c │ ├── internalflush.c │ ├── internalloadseg.c │ ├── internalloadseg.h │ ├── internalloadseg_aos.c │ ├── internalloadseg_elf.c │ ├── internalloadseg_support.c │ ├── internalseek.c │ ├── internalunloadseg.c │ ├── ioerr.c │ ├── isbootable.c │ ├── isfilesystem.c │ ├── isinteractive.c │ ├── loadseg.c │ ├── lock.c │ ├── lockdoslist.c │ ├── lockrecord.c │ ├── lockrecords.c │ ├── makedosentry.c │ ├── makelink.c │ ├── match_misc.c │ ├── matchend.c │ ├── matchfirst.c │ ├── matchnext.c │ ├── matchpattern.c │ ├── matchpatternnocase.c │ ├── maxcli.c │ ├── mmakefile.src │ ├── namefrom.c │ ├── namefromfh.c │ ├── namefromlock.c │ ├── newcliproc.c │ ├── newloadseg.c │ ├── nextdosentry.c │ ├── nil.c │ ├── open.c │ ├── openfromlock.c │ ├── output.c │ ├── packethelper.c │ ├── parentdir.c │ ├── parentoffh.c │ ├── parsepattern.c │ ├── parsepatternnocase.c │ ├── pathpart.c │ ├── patternmatching.c │ ├── printfault.c │ ├── putstr.c │ ├── read.c │ ├── readargs.c │ ├── readitem.c │ ├── readlink.c │ ├── relabel.c │ ├── remassignlist.c │ ├── remdosentry.c │ ├── remsegment.c │ ├── rename.c │ ├── replypkt.c │ ├── rootnode.c │ ├── runcommand.c │ ├── runhandler.c │ ├── samedevice.c │ ├── samelock.c │ ├── scanvars.c │ ├── seek.c │ ├── selectinput.c │ ├── selectoutput.c │ ├── sendpkt.c │ ├── setargstr.c │ ├── setcomment.c │ ├── setconsoletask.c │ ├── setcurrentdirname.c │ ├── setfiledate.c │ ├── setfilesize.c │ ├── setfilesystask.c │ ├── setioerr.c │ ├── setmode.c │ ├── setowner.c │ ├── setprogramdir.c │ ├── setprogramname.c │ ├── setprompt.c │ ├── setprotection.c │ ├── setvar.c │ ├── setvbuf.c │ ├── shell_helper.c │ ├── splitname.c │ ├── startnotify.c │ ├── strtodate.c │ ├── strtolong.c │ ├── systemtaglist.c │ ├── ungetc.c │ ├── unloadseg.c │ ├── unlock.c │ ├── unlockdoslist.c │ ├── unlockrecord.c │ ├── unlockrecords.c │ ├── vfprintf.c │ ├── vfwritef.c │ ├── vprintf.c │ ├── waitforchar.c │ ├── waitpkt.c │ ├── write.c │ └── writechars.c ├── dosboot │ ├── bootanim.c │ ├── bootanim.h │ ├── bootanim_nomedia.c │ ├── bootflags.h │ ├── bootscan.c │ ├── bootscreen.c │ ├── bootstrap.c │ ├── cleanup.c │ ├── dosboot.conf │ ├── dosboot_init.c │ ├── dosboot_intern.h │ ├── menu.c │ ├── menu.h │ ├── mmakefile.src │ ├── nomedia.ilbm │ └── nomedia_anim.h ├── exec │ ├── abortio.c │ ├── adddevice.c │ ├── addhead.c │ ├── addintserver.c │ ├── addlibrary.c │ ├── addmemhandler.c │ ├── addmemlist.c │ ├── addport.c │ ├── addresetcallback.c │ ├── addresource.c │ ├── addsemaphore.c │ ├── addtail.c │ ├── addtask.c │ ├── alert.c │ ├── alert_cpu.c │ ├── alertextra.c │ ├── alertextra.h │ ├── alertstrings.c │ ├── allocabs.c │ ├── allocate.c │ ├── allocentry.c │ ├── allocmem.c │ ├── allocpooled.c │ ├── allocsignal.c │ ├── alloctrap.c │ ├── allocvec.c │ ├── allocvecpooled.c │ ├── attemptsemaphore.c │ ├── attemptsemaphoreshared.c │ ├── availmem.c │ ├── avl.c │ ├── cachecleare.c │ ├── cacheclearu.c │ ├── cachecontrol.c │ ├── cachepostdma.c │ ├── cachepredma.c │ ├── cause.c │ ├── checkio.c │ ├── childfree.c │ ├── childorphan.c │ ├── childstatus.c │ ├── childwait.c │ ├── chipset.h │ ├── closedevice.c │ ├── closelibrary.c │ ├── coldreboot.c │ ├── copymem.c │ ├── copymemquick.c │ ├── createiorequest.c │ ├── createmsgport.c │ ├── createpool.c │ ├── deallocate.c │ ├── debug.c │ ├── debug_internal.c │ ├── debug_internal.h │ ├── deleteiorequest.c │ ├── deletemsgport.c │ ├── deletepool.c │ ├── disable.c │ ├── dispatch.c │ ├── doio.c │ ├── doresetcallbacks.c │ ├── enable.c │ ├── enqueue.c │ ├── etask.h │ ├── exception.c │ ├── exec.conf │ ├── exec_autoinit.c │ ├── exec_debug.c │ ├── exec_debug.h │ ├── exec_extfuncs.h │ ├── exec_flags.c │ ├── exec_init.c │ ├── exec_intern.h │ ├── exec_locks.c │ ├── exec_locks.h │ ├── exec_platform.h │ ├── exec_util.c │ ├── exec_util.h │ ├── exec_vlog.c │ ├── execstrap_init.c │ ├── exitintr.c │ ├── findname.c │ ├── findport.c │ ├── findresident.c │ ├── findsemaphore.c │ ├── findtask.c │ ├── findtaskbypid.c │ ├── forbid.c │ ├── freeentry.c │ ├── freemem.c │ ├── freepooled.c │ ├── freesignal.c │ ├── freetrap.c │ ├── freevec.c │ ├── freevecpooled.c │ ├── getcc.c │ ├── getmsg.c │ ├── initcode.c │ ├── initkicktags.c │ ├── initresident.c │ ├── initsemaphore.c │ ├── initstruct.c │ ├── insert.c │ ├── intserver_vblank.c │ ├── intservers.c │ ├── intservers.h │ ├── makefunctions.c │ ├── makelibrary.c │ ├── memory.c │ ├── memory.h │ ├── memory_nommu.c │ ├── mmakefile.src │ ├── mungwall.c │ ├── mungwall.h │ ├── newaddtask.c │ ├── newallocentry.c │ ├── newcreatetaska.c │ ├── newminlist.c │ ├── newstackswap.c │ ├── obtainquickvector.c │ ├── obtainsemaphore.c │ ├── obtainsemaphorelist.c │ ├── obtainsemaphoreshared.c │ ├── oldopenlibrary.c │ ├── opendevice.c │ ├── openlibrary.c │ ├── openresource.c │ ├── permit.c │ ├── preparecontext.c │ ├── prepareexecbase.c │ ├── procure.c │ ├── putmsg.c │ ├── rawdofmt.c │ ├── rawioinit.c │ ├── rawmaygetchar.c │ ├── rawputchar.c │ ├── readgayle.c │ ├── releasesemaphore.c │ ├── releasesemaphorelist.c │ ├── remdevice.c │ ├── remhead.c │ ├── remintserver.c │ ├── remlibrary.c │ ├── remmemhandler.c │ ├── remove.c │ ├── remport.c │ ├── remresetcallback.c │ ├── remresource.c │ ├── remsemaphore.c │ ├── remtail.c │ ├── remtask.c │ ├── replymsg.c │ ├── reschedule.c │ ├── schedule.c │ ├── semaphores.c │ ├── semaphores.h │ ├── sendio.c │ ├── service.c │ ├── setexcept.c │ ├── setfunction.c │ ├── setintvector.c │ ├── setsignal.c │ ├── setsr.c │ ├── settaskpri.c │ ├── shutdowna.c │ ├── signal.c │ ├── stackswap.c │ ├── sumkickdata.c │ ├── sumlibrary.c │ ├── superstate.c │ ├── supervisor.c │ ├── supervisoralert.c │ ├── switch.c │ ├── systemalert.c │ ├── taggedopenlibrary.c │ ├── traphandler.c │ ├── typeofmem.c │ ├── useralert.c │ ├── userstate.c │ ├── vacate.c │ ├── vnewrawdofmt.c │ ├── wait.c │ ├── waitio.c │ └── waitport.c ├── expansion │ ├── addbootnode.c │ ├── addconfigdev.c │ ├── adddosnode.c │ ├── allocboardmem.c │ ├── allocconfigdev.c │ ├── allocexpansionmem.c │ ├── configboard.c │ ├── configchain.c │ ├── expansion.conf │ ├── expansion_init.c │ ├── expansion_intern.h │ ├── findconfigdev.c │ ├── freeboardmem.c │ ├── freeconfigdev.c │ ├── freeexpansionmem.c │ ├── getcurrentbinding.c │ ├── makedosnode.c │ ├── mmakefile.src │ ├── obtainconfigbinding.c │ ├── readexpansionbyte.c │ ├── readexpansionrom.c │ ├── releaseconfigbinding.c │ ├── remconfigdev.c │ ├── setcurrentbinding.c │ ├── writeexpansionbyte.c │ └── writeexpansionword.c ├── filesys │ ├── .gitignore │ ├── CDVDFS │ │ ├── .gitignore │ │ ├── CD0 │ │ ├── CD0.info │ │ ├── CDVDFS.Install │ │ ├── CDVDFS.guide │ │ ├── CDVDFS.guide.info │ │ ├── CDVDFS.readme │ │ ├── Install.info │ │ ├── c │ │ │ └── GetNames │ │ └── src │ │ │ ├── GNUmakefile │ │ │ ├── KillDevice.c │ │ │ ├── SMakefile │ │ │ ├── aros_stuff.h │ │ │ ├── cdcontrol.c │ │ │ ├── cdcontrol.h │ │ │ ├── cdrom.c │ │ │ ├── cdrom.conf │ │ │ ├── cdrom.h │ │ │ ├── charset.c │ │ │ ├── charset.h │ │ │ ├── checkcd.c │ │ │ ├── clib_stuff.h │ │ │ ├── compat.h │ │ │ ├── debug.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── devsupp.c │ │ │ ├── devsupp.h │ │ │ ├── generic.c │ │ │ ├── generic.h │ │ │ ├── globals.h │ │ │ ├── hfs.c │ │ │ ├── hfs.h │ │ │ ├── intui.c │ │ │ ├── intui.h │ │ │ ├── iso9660.c │ │ │ ├── iso9660.h │ │ │ ├── joliet.c │ │ │ ├── joliet.h │ │ │ ├── main.c │ │ │ ├── mmakefile.src │ │ │ ├── params.h │ │ │ ├── path.c │ │ │ ├── path.h │ │ │ ├── prefs.c │ │ │ ├── prefs.h │ │ │ ├── remcdfs.c │ │ │ ├── rock.c │ │ │ ├── rock.h │ │ │ ├── volumes.c │ │ │ └── volumes.h │ ├── SFS │ │ ├── FS │ │ │ ├── adminspaces.c │ │ │ ├── adminspaces.h │ │ │ ├── adminspaces_protos.h │ │ │ ├── asmsupport.c │ │ │ ├── asmsupport.h │ │ │ ├── bitmap.c │ │ │ ├── bitmap.h │ │ │ ├── bitmap_protos.h │ │ │ ├── blockstructure.h │ │ │ ├── btreenodes.c │ │ │ ├── btreenodes.h │ │ │ ├── btreenodes_protos.h │ │ │ ├── cachebuffers.c │ │ │ ├── cachebuffers.h │ │ │ ├── cachebuffers_protos.h │ │ │ ├── cachedio.c │ │ │ ├── cachedio_protos.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── debug_protos.h │ │ │ ├── deviceio.c │ │ │ ├── deviceio.h │ │ │ ├── deviceio_protos.h │ │ │ ├── filesystemmain.c │ │ │ ├── fs.h │ │ │ ├── globals.c │ │ │ ├── globals.h │ │ │ ├── locks.c │ │ │ ├── locks.h │ │ │ ├── locks_protos.h │ │ │ ├── mmakefile.src │ │ │ ├── nodes.c │ │ │ ├── nodes.h │ │ │ ├── nodes_protos.h │ │ │ ├── objects.c │ │ │ ├── objects.h │ │ │ ├── objects_protos.h │ │ │ ├── packets.h │ │ │ ├── query.h │ │ │ ├── redblacktree.c │ │ │ ├── redblacktree.h │ │ │ ├── req.c │ │ │ ├── req_protos.h │ │ │ ├── sfs.conf │ │ │ ├── support.c │ │ │ ├── support_protos.h │ │ │ ├── sysdep.h │ │ │ ├── transactions.c │ │ │ ├── transactions.h │ │ │ └── transactions_protos.h │ │ ├── LEGAL │ │ ├── SFScheck │ │ │ ├── .gitignore │ │ │ ├── SFScheck.c │ │ │ ├── SFScheck.info │ │ │ ├── SFScheck.txt │ │ │ └── mmakefile.src │ │ ├── SFSchecksum │ │ │ ├── SFSchecksum.c │ │ │ └── SFSchecksum.info │ │ ├── SFSdefrag │ │ │ ├── Icons │ │ │ │ ├── SFSDefrag.info.src │ │ │ │ ├── SFSDefrag.png │ │ │ │ └── mmakefile.src │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ ├── mmakefile.src │ │ │ ├── support.c │ │ │ └── support.h │ │ ├── SFSdefragmentGUI │ │ │ ├── SFSdefragmentGUI.c │ │ │ ├── SFSdefragmentGUI.info │ │ │ └── mmakefile.src │ │ ├── SFSdisplay │ │ │ ├── SFSdisplay.c │ │ │ └── SFSdisplay.info │ │ ├── SFSdumpblock │ │ │ ├── SFSdumpblock.c │ │ │ └── SFSdumpblock.info │ │ ├── SFSfindobjects │ │ │ ├── SFSfindobjects.c │ │ │ └── SFSfindobjects.info │ │ ├── SFSformat │ │ │ ├── SFSformat.c │ │ │ ├── SFSformat.txt │ │ │ ├── mmakefile.src │ │ │ └── sfsformat.info │ │ ├── SFSquery │ │ │ ├── SFSquery.c │ │ │ ├── SFSquery.info │ │ │ └── mmakefile.src │ │ ├── SetCache │ │ │ ├── SetCache.c │ │ │ ├── SetCache.txt │ │ │ └── mmakefile.src │ │ └── mmakefile.src │ ├── afs │ │ ├── README.comments │ │ ├── afs.conf │ │ ├── afsblocks.h │ │ ├── afshandler.h │ │ ├── baseredef.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── cache.c │ │ ├── cache.h │ │ ├── checksums.c │ │ ├── checksums.h │ │ ├── error.c │ │ ├── error.h │ │ ├── errstrings.h │ │ ├── extstrings.c │ │ ├── extstrings.h │ │ ├── filehandles.h │ │ ├── filehandles1.c │ │ ├── filehandles1.h │ │ ├── filehandles2.c │ │ ├── filehandles2.h │ │ ├── filehandles3.c │ │ ├── filehandles3.h │ │ ├── hashing.c │ │ ├── hashing.h │ │ ├── main.c │ │ ├── misc.c │ │ ├── misc.h │ │ ├── mmakefile.src │ │ ├── moreactions.h │ │ ├── os.h │ │ ├── os_aros_support.c │ │ ├── os_aros_support.h │ │ ├── os_unix_support.c │ │ ├── os_unix_support.h │ │ ├── validator.c │ │ ├── validator.h │ │ ├── volumes.c │ │ └── volumes.h │ ├── cdfs │ │ ├── .gitignore │ │ ├── DESIGN.txt │ │ ├── bcache.c │ │ ├── bcache.h │ │ ├── cdfs.c │ │ ├── cdfs.conf │ │ ├── cdfs.h │ │ ├── iso9660.c │ │ ├── iso9660.h │ │ ├── mmakefile.src │ │ └── udf.h │ ├── console_handler │ │ ├── completion.c │ │ ├── completion.h │ │ ├── con_handler.c │ │ ├── con_handler.conf │ │ ├── con_handler_intern.h │ │ ├── mmakefile.src │ │ ├── support.c │ │ └── support.h │ ├── fat │ │ ├── .gitignore │ │ ├── cache.c │ │ ├── cache.h │ │ ├── charset.c │ │ ├── charset.h │ │ ├── date.c │ │ ├── debug.h │ │ ├── direntry.c │ │ ├── disk.c │ │ ├── fat.c │ │ ├── fat.conf │ │ ├── fat_fs.h │ │ ├── fat_protos.h │ │ ├── fat_struct.h │ │ ├── file.c │ │ ├── lock.c │ │ ├── main.c │ │ ├── mmakefile.src │ │ ├── names.c │ │ ├── notify.c │ │ ├── ops.c │ │ ├── packet.c │ │ ├── support.c │ │ ├── support.h │ │ ├── timer.c │ │ └── volume.c │ ├── pfs3 │ │ ├── LEGAL │ │ ├── fs │ │ │ ├── CheckAccess.c │ │ │ ├── allocation.c │ │ │ ├── allocation_protos.h │ │ │ ├── anodes.c │ │ │ ├── anodes_protos.h │ │ │ ├── ass_protos.h │ │ │ ├── assroutines.c │ │ │ ├── assroutines_unittest.c │ │ │ ├── blocks.h │ │ │ ├── boot.c │ │ │ ├── checkaccess_protos.h │ │ │ ├── dd_funcs.c │ │ │ ├── dd_support.c │ │ │ ├── debug.h │ │ │ ├── directory.c │ │ │ ├── directory_protos.h │ │ │ ├── disk.c │ │ │ ├── disk_protos.h │ │ │ ├── diskchange.c │ │ │ ├── doc │ │ │ │ ├── Proginfo │ │ │ │ ├── pfs3.guide │ │ │ │ ├── pfs3.guide.info │ │ │ │ ├── pfs3packets.guide │ │ │ │ └── pfs3packets.guide.info │ │ │ ├── dos.h │ │ │ ├── dostohandlerinterface.c │ │ │ ├── entrypoint.c │ │ │ ├── format.c │ │ │ ├── format_protos.h │ │ │ ├── french_messages.c │ │ │ ├── fsresource.c │ │ │ ├── german_messages.c │ │ │ ├── gst.c │ │ │ ├── init.c │ │ │ ├── init_protos.h │ │ │ ├── italian_messages.c │ │ │ ├── lock.c │ │ │ ├── lock_protos.h │ │ │ ├── lru.c │ │ │ ├── lru_protos.h │ │ │ ├── m68k │ │ │ │ ├── mmakefile.src │ │ │ │ └── stackswap.S │ │ │ ├── messages.c │ │ │ ├── messages.h │ │ │ ├── mmakefile.src │ │ │ ├── mount.c │ │ │ ├── mount_8G.c │ │ │ ├── mount_cdwrite.c │ │ │ ├── mount_upper.c │ │ │ ├── mount_zip.c │ │ │ ├── mount_zip1024.c │ │ │ ├── mount_zip1024_l.c │ │ │ ├── mountf.c │ │ │ ├── pfs3.conf │ │ │ ├── pfs3_aio.conf │ │ │ ├── pfs3ds.conf │ │ │ ├── resethandler.c │ │ │ ├── struct.h │ │ │ ├── support.c │ │ │ ├── update.c │ │ │ ├── update_protos.h │ │ │ ├── versionhistory.doc │ │ │ ├── volume.c │ │ │ └── volume_protos.h │ │ └── pfsdoctor │ │ │ ├── .gitignore │ │ │ ├── access.c │ │ │ ├── console.c │ │ │ ├── device.c │ │ │ ├── doctor.h │ │ │ ├── fullscan.c │ │ │ ├── mmakefile.src │ │ │ ├── pfs3.h │ │ │ ├── standardscan.c │ │ │ └── stats.c │ └── ram │ │ ├── .gitignore │ │ ├── LEGAL │ │ ├── Notes │ │ ├── TestFS │ │ ├── commands.c │ │ ├── filesystem.c │ │ ├── handler.c │ │ ├── handler.h │ │ ├── handler_protos.h │ │ ├── mmakefile.src │ │ ├── notification.c │ │ ├── ram.conf │ │ ├── startup.asm │ │ ├── startup.s │ │ └── support.c ├── filesystem │ ├── FileSystem.conf │ ├── filesystem.c │ └── mmakefile.src ├── graphics │ ├── addanimob.c │ ├── addbob.c │ ├── adddisplaydata.c │ ├── adddisplaydrivera.c │ ├── adddisplayinfodata.c │ ├── addfont.c │ ├── addvsprite.c │ ├── allocbitmap.c │ ├── allocdbufinfo.c │ ├── allocraster.c │ ├── allocspritedataa.c │ ├── andrectregion.c │ ├── andrectregionnd.c │ ├── andregionregion.c │ ├── andregionregionnd.c │ ├── animate.c │ ├── areadraw.c │ ├── areaellipse.c │ ├── areaend.c │ ├── areafill.c │ ├── areamove.c │ ├── areregionsequal.c │ ├── askfont.c │ ├── asksoftstyle.c │ ├── attachpalextra.c │ ├── attemptlocklayerrom.c │ ├── bestmodeida.c │ ├── bitmapscale.c │ ├── bltbitmap.c │ ├── bltbitmaprastport.c │ ├── bltclear.c │ ├── bltmaskbitmaprastport.c │ ├── bltpattern.c │ ├── bltrastportbitmap.c │ ├── blttemplate.c │ ├── calcivg.c │ ├── cbump.c │ ├── cgx_support.c │ ├── changeextspritea.c │ ├── changesprite.c │ ├── changevpbitmap.c │ ├── cleareol.c │ ├── clearrectregion.c │ ├── clearrectregionnd.c │ ├── clearregion.c │ ├── clearregionregion.c │ ├── clearregionregionnd.c │ ├── clearscreen.c │ ├── clipblit.c │ ├── closefont.c │ ├── closemonitor.c │ ├── cmove.c │ ├── coercemode.c │ ├── color_support.c │ ├── compositor_driver.c │ ├── compositor_driver.h │ ├── copysbitmap.c │ ├── cwait.c │ ├── default_font.c │ ├── default_font.h │ ├── disownblitter.c │ ├── dispinfo.c │ ├── dispinfo.h │ ├── disposeregion.c │ ├── docollision.c │ ├── documentation.c │ ├── draw.c │ ├── drawellipse.c │ ├── drawglist.c │ ├── eraserect.c │ ├── extendfont.c │ ├── fakegfxhidd.c │ ├── fakegfxhidd.h │ ├── findcolor.c │ ├── finddisplayinfo.c │ ├── flood.c │ ├── fontextent.c │ ├── fontsupport.c │ ├── fontsupport.h │ ├── freebitmap.c │ ├── freecolormap.c │ ├── freecoplist.c │ ├── freecprlist.c │ ├── freedbufinfo.c │ ├── freegbuffers.c │ ├── freeraster.c │ ├── freesprite.c │ ├── freespritedata.c │ ├── freevportcoplists.c │ ├── gels_internal.c │ ├── gels_internal.h │ ├── getapen.c │ ├── getbitmapattr.c │ ├── getbpen.c │ ├── getcolormap.c │ ├── getdisplayinfodata.c │ ├── getdrmd.c │ ├── getextspritea.c │ ├── getgbuffers.c │ ├── getoutlinepen.c │ ├── getrgb32.c │ ├── getrgb4.c │ ├── getrpattrsa.c │ ├── getsprite.c │ ├── getvpmodeid.c │ ├── gfxassociate.c │ ├── gfxfree.c │ ├── gfxfuncsupport.c │ ├── gfxfuncsupport.h │ ├── gfxlookup.c │ ├── gfxnew.c │ ├── graphics.conf │ ├── graphics_driver.c │ ├── graphics_driver.h │ ├── graphics_init.c │ ├── graphics_intern.h │ ├── graphics_misc.c │ ├── initarea.c │ ├── initbitmap.c │ ├── initgels.c │ ├── initgmasks.c │ ├── initmasks.c │ ├── initrastport.c │ ├── inittmpras.c │ ├── initview.c │ ├── initvport.c │ ├── intregions.c │ ├── intregions.h │ ├── ispointinregion.c │ ├── loadrgb32.c │ ├── loadrgb4.c │ ├── loadview.c │ ├── locklayerrom.c │ ├── makevport.c │ ├── mmakefile.src │ ├── modenotavailable.c │ ├── move.c │ ├── movesprite.c │ ├── mrgcop.c │ ├── newregion.c │ ├── nextdisplayinfo.c │ ├── objcache.c │ ├── objcache.h │ ├── obtainbestpena.c │ ├── obtainpen.c │ ├── openfont.c │ ├── openmonitor.c │ ├── orrectregion.c │ ├── orrectregionnd.c │ ├── orregionregion.c │ ├── orregionregionnd.c │ ├── ownblitter.c │ ├── polydraw.c │ ├── qblit.c │ ├── qbsblit.c │ ├── readpixel.c │ ├── readpixelarray8.c │ ├── readpixelline8.c │ ├── rectfill.c │ ├── releasepen.c │ ├── remfont.c │ ├── remibob.c │ ├── remvsprite.c │ ├── scalerdiv.c │ ├── scrollraster.c │ ├── scrollrasterbf.c │ ├── scrollregion.c │ ├── scrollvport.c │ ├── setabpendrmd.c │ ├── setapen.c │ ├── setbpen.c │ ├── setchiprev.c │ ├── setcollision.c │ ├── setdisplaydrivercallback.c │ ├── setdisplayinfodata.c │ ├── setdrmd.c │ ├── setfont.c │ ├── setmaxpen.c │ ├── setoutlinepen.c │ ├── setrast.c │ ├── setregion.c │ ├── setrgb32.c │ ├── setrgb32cm.c │ ├── setrgb4.c │ ├── setrgb4cm.c │ ├── setrpattrsa.c │ ├── setsoftstyle.c │ ├── setwritemask.c │ ├── sortglist.c │ ├── stripfont.c │ ├── syncsbitmap.c │ ├── text.c │ ├── textextent.c │ ├── textfit.c │ ├── textlength.c │ ├── ucopperlistinit.c │ ├── unlocklayerrom.c │ ├── updatebitmap.c │ ├── vbeampos.c │ ├── videocontrol.c │ ├── waitblit.c │ ├── waitbovp.c │ ├── waittof.c │ ├── weightamatch.c │ ├── writechunkypixels.c │ ├── writepixel.c │ ├── writepixelarray8.c │ ├── writepixelline8.c │ ├── xorrectregion.c │ ├── xorrectregionnd.c │ ├── xorregionregion.c │ └── xorregionregionnd.c ├── hidds │ ├── acpi │ │ ├── acad │ │ │ ├── .gitignore │ │ │ ├── acpiacad.conf │ │ │ ├── acpiacad_class.c │ │ │ ├── acpiacad_init.c │ │ │ ├── acpiacad_intern.h │ │ │ ├── include │ │ │ │ └── acpiacad.h │ │ │ └── mmakefile.src │ │ ├── battery │ │ │ ├── .gitignore │ │ │ ├── acpibattery.conf │ │ │ ├── acpibattery_class.c │ │ │ ├── acpibattery_init.c │ │ │ ├── acpibattery_intern.h │ │ │ ├── include │ │ │ │ └── acpibattery.h │ │ │ └── mmakefile.src │ │ └── button │ │ │ ├── .gitignore │ │ │ ├── acpibutton.conf │ │ │ ├── acpibutton_class.c │ │ │ ├── acpibutton_init.c │ │ │ ├── acpibutton_intern.h │ │ │ ├── include │ │ │ └── acpibutton.h │ │ │ └── mmakefile.src │ ├── ata_pci │ │ ├── .gitignore │ │ ├── ata_pci.conf │ │ ├── ata_pci_bus.h │ │ ├── ata_pci_busclass.c │ │ ├── ata_pci_controller.h │ │ ├── ata_pci_controllerclass.c │ │ ├── ata_pci_intern.h │ │ ├── class_init.c │ │ ├── interface_dma.c │ │ ├── interface_dma.h │ │ ├── interface_pio.c │ │ ├── interface_pio.h │ │ ├── mmakefile.src │ │ └── probe.c │ ├── base │ │ ├── .gitignore │ │ ├── bus │ │ │ ├── .gitignore │ │ │ ├── bus.conf │ │ │ ├── bus_class.c │ │ │ ├── bus_init.c │ │ │ ├── bus_intern.h │ │ │ ├── include │ │ │ │ └── bus.h │ │ │ └── mmakefile.src │ │ ├── mmakefile.src │ │ ├── power │ │ │ ├── .gitignore │ │ │ ├── include │ │ │ │ └── power.h │ │ │ ├── mmakefile.src │ │ │ ├── power.conf │ │ │ ├── power_class.c │ │ │ ├── power_init.c │ │ │ └── power_intern.h │ │ ├── storage │ │ │ ├── .gitignore │ │ │ ├── include │ │ │ │ └── storage.h │ │ │ ├── mmakefile.src │ │ │ ├── storage.conf │ │ │ ├── storage_busclass.c │ │ │ ├── storage_class.c │ │ │ ├── storage_controllerclass.c │ │ │ ├── storage_init.c │ │ │ ├── storage_intern.h │ │ │ └── storage_unitclass.c │ │ └── system │ │ │ ├── .gitignore │ │ │ ├── include │ │ │ └── system.h │ │ │ ├── mmakefile.src │ │ │ ├── system.conf │ │ │ ├── system_class.c │ │ │ ├── system_init.c │ │ │ └── system_intern.h │ ├── gfx │ │ ├── .gitignore │ │ ├── OverlayClass.c │ │ ├── colorconv │ │ │ ├── rgbconv_abgr32.h │ │ │ ├── rgbconv_argb32.h │ │ │ ├── rgbconv_bgr15.h │ │ │ ├── rgbconv_bgr15oe.h │ │ │ ├── rgbconv_bgr16.h │ │ │ ├── rgbconv_bgr16oe.h │ │ │ ├── rgbconv_bgr24.h │ │ │ ├── rgbconv_bgra32.h │ │ │ ├── rgbconv_bgrx32.h │ │ │ ├── rgbconv_macros.h │ │ │ ├── rgbconv_rgb15.h │ │ │ ├── rgbconv_rgb15oe.h │ │ │ ├── rgbconv_rgb16.h │ │ │ ├── rgbconv_rgb16oe.h │ │ │ ├── rgbconv_rgb24.h │ │ │ ├── rgbconv_rgba32.h │ │ │ ├── rgbconv_rgbswap.h │ │ │ ├── rgbconv_rgbx32.h │ │ │ ├── rgbconv_xbgr32.h │ │ │ └── rgbconv_xrgb32.h │ │ ├── colorconv_init.c │ │ ├── gfx.conf │ │ ├── gfx_bitmapclass.c │ │ ├── gfx_bitmapconvertpixels.c │ │ ├── gfx_bitmapmemblit.c │ │ ├── gfx_chunkybitmapclass.c │ │ ├── gfx_colormapclass.c │ │ ├── gfx_debug.h │ │ ├── gfx_gcclass.c │ │ ├── gfx_hiddclass.c │ │ ├── gfx_histogramclass.c │ │ ├── gfx_hwclass.c │ │ ├── gfx_init.c │ │ ├── gfx_intern.h │ │ ├── gfx_pixfmtclass.c │ │ ├── gfx_planarbitmapclass.c │ │ ├── gfx_syncclass.c │ │ ├── headless │ │ │ ├── .gitignore │ │ │ ├── headlessgfx.conf │ │ │ ├── headlessgfx_bitmap.h │ │ │ ├── headlessgfx_bitmapclass.c │ │ │ ├── headlessgfx_hidd.h │ │ │ ├── headlessgfx_hiddclass.c │ │ │ ├── headlessgfx_init.c │ │ │ ├── headlessgfx_intern.h │ │ │ └── mmakefile.src │ │ ├── include │ │ │ └── gfx.h │ │ ├── mmakefile.src │ │ ├── rgbconv.c │ │ ├── rgbconv_arch.c │ │ ├── stdpixfmts_be.h │ │ ├── stdpixfmts_le.h │ │ └── todo │ ├── hidd │ │ ├── hiddclass.c │ │ ├── hiddclass.conf │ │ ├── hiddclass_intern.h │ │ ├── hwclass.c │ │ ├── hwroot.c │ │ ├── include │ │ │ ├── config.h │ │ │ └── hidd.h │ │ ├── initcode.c │ │ └── mmakefile.src │ ├── input │ │ ├── include │ │ │ └── input.h │ │ ├── input.h │ │ ├── input_init.c │ │ ├── inputclass.c │ │ ├── inputclass.conf │ │ ├── inputsubsystem.c │ │ └── mmakefile.src │ ├── kbd │ │ ├── include │ │ │ └── keyboard.h │ │ ├── kbd.h │ │ ├── kbd_init.c │ │ ├── kbdclass.c │ │ ├── kbdsubsystem.c │ │ ├── keyboard.conf │ │ └── mmakefile.src │ ├── mouse │ │ ├── driverdata.c │ │ ├── include │ │ │ └── mouse.h │ │ ├── mmakefile.src │ │ ├── mouse.conf │ │ ├── mouse.h │ │ ├── mouse_init.c │ │ ├── mouseclass.c │ │ └── subsystem.c │ ├── pci │ │ ├── .gitignore │ │ ├── doc │ │ │ └── pci.en │ │ ├── include │ │ │ ├── hardware │ │ │ │ └── pci.h │ │ │ └── pci_hidd.h │ │ ├── mmakefile.src │ │ ├── pci.conf │ │ ├── pci.h │ │ ├── pci_init.c │ │ ├── pci_libfunc.c │ │ ├── pciclass.c │ │ ├── pcideviceclass.c │ │ ├── pcidriverclass.c │ │ ├── pcie.h │ │ ├── pcitool │ │ │ ├── .gitignore │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ ├── mmakefile.src │ │ │ ├── pciids.c │ │ │ ├── pciids.h │ │ │ ├── saveinfo.c │ │ │ ├── saveinfo.h │ │ │ ├── support.c │ │ │ └── support.h │ │ ├── pciutil.c │ │ └── pciutil.h │ ├── scsi │ │ └── wd33c93 │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── scsi_wd33c93.conf │ │ │ ├── wd33c93.c │ │ │ ├── wd33c93_busclass.c │ │ │ ├── wd33c93_init.c │ │ │ ├── wd33c93_intern.h │ │ │ └── wd33c93_probe.c │ ├── serialmouse │ │ ├── .gitignore │ │ ├── drv_serial.c │ │ ├── mmakefile.src │ │ ├── mouse.h │ │ ├── mouseclass.c │ │ ├── serialmouse.conf │ │ └── startup.c │ └── vesagfx │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── vesagfx.conf │ │ ├── vesagfx_bitmap.h │ │ ├── vesagfx_bitmapclass.c │ │ ├── vesagfx_cursor.h │ │ ├── vesagfx_hidd.h │ │ ├── vesagfx_hiddclass.c │ │ ├── vesagfx_init.c │ │ ├── vesagfx_intern.h │ │ ├── vesagfx_support.c │ │ └── vesagfx_support.h ├── hyperlayers │ ├── basicfuncs.c │ ├── basicfuncs.h │ ├── beginupdate.c │ ├── behindlayer.c │ ├── changelayershape.c │ ├── changelayervisibility.c │ ├── collectpixelslayer.c │ ├── createbehindhooklayer.c │ ├── createbehindlayer.c │ ├── createbehindlayertaglist.c │ ├── createlayertaglist.c │ ├── createupfronthooklayer.c │ ├── createupfrontlayer.c │ ├── createupfrontlayertaglist.c │ ├── deletelayer.c │ ├── disposelayerinfo.c │ ├── dohookcliprects.c │ ├── endupdate.c │ ├── fattenlayerinfo.c │ ├── getfirstfamilymember.c │ ├── initlayers.c │ ├── installclipregion.c │ ├── installlayerhook.c │ ├── installlayerinfohook.c │ ├── intregions.h │ ├── islayerhiddenbysibling.c │ ├── islayervisible.c │ ├── layers.conf │ ├── layers_init.c │ ├── layers_intern.h │ ├── locklayer.c │ ├── locklayerinfo.c │ ├── locklayers.c │ ├── mmakefile.src │ ├── movelayer.c │ ├── movelayerinfrontof.c │ ├── movelayerz.c │ ├── movesizelayer.c │ ├── newlayerinfo.c │ ├── scalelayer.c │ ├── scrolllayer.c │ ├── sizelayer.c │ ├── sortlayercr.c │ ├── swapbitsrastportcliprect.c │ ├── thinlayerinfo.c │ ├── todo │ ├── unlocklayer.c │ ├── unlocklayerinfo.c │ ├── unlocklayers.c │ ├── upfrontlayer.c │ └── whichlayer.c ├── intuition │ ├── Makefile │ ├── activategadget.c │ ├── activatewindow.c │ ├── addclass.c │ ├── addgadget.c │ ├── addglist.c │ ├── allocintuimessage.c │ ├── allocremember.c │ ├── allocscreenbuffer.c │ ├── alohaworkbench.c │ ├── autorequest.c │ ├── barlabelclass.c │ ├── beginrefresh.c │ ├── boolgadgets.c │ ├── boolgadgets.h │ ├── boopsigadgets.c │ ├── boopsigadgets.h │ ├── buildeasyrequestargs.c │ ├── buildsysrequest.c │ ├── buttongclass.c │ ├── changedecorationa.c │ ├── changescreenbuffer.c │ ├── changewindowbox.c │ ├── changewindowshape.c │ ├── cleardmrequest.c │ ├── clearmenustrip.c │ ├── clearpointer.c │ ├── closescreen.c │ ├── closewindow.c │ ├── closeworkbench.c │ ├── currenttime.c │ ├── decoration.c │ ├── displayalert.c │ ├── displaybeep.c │ ├── disposeobject.c │ ├── dogadgetmethoda.c │ ├── donotify.c │ ├── doubleclick.c │ ├── drawborder.c │ ├── drawimage.c │ ├── drawimagestate.c │ ├── dumpintuistate.c │ ├── easyrequestargs.c │ ├── endrefresh.c │ ├── endrequest.c │ ├── endscreennotify.c │ ├── eraseimage.c │ ├── fillrectclass.c │ ├── findclass.c │ ├── findmonitor.c │ ├── frameiclass.c │ ├── frbuttonclass.c │ ├── freeclass.c │ ├── freeicdata.c │ ├── freeintuimessage.c │ ├── freemonitorlist.c │ ├── freeremember.c │ ├── freescreenbuffer.c │ ├── freescreendrawinfo.c │ ├── freesysrequest.c │ ├── freezedemon.c │ ├── gadgetclass.c │ ├── gadgetmouse.c │ ├── gadgets.c │ ├── gadgets.h │ ├── getattr.c │ ├── getdefaultpubscreen.c │ ├── getdefprefs.c │ ├── getdrawinfoattr.c │ ├── getmonitorlist.c │ ├── getprefs.c │ ├── getscreendata.c │ ├── getscreendrawinfo.c │ ├── groupgclass.c │ ├── helpcontrol.c │ ├── hidewindow.c │ ├── icclass.c │ ├── imageclass.c │ ├── initrequester.c │ ├── inputhandler.c │ ├── inputhandler.h │ ├── inputhandler_actions.c │ ├── inputhandler_actions.h │ ├── inputhandler_support.c │ ├── inputhandler_support.h │ ├── intuitextlength.c │ ├── intuition.conf │ ├── intuition_customize.h │ ├── intuition_debug.h │ ├── intuition_extend.h │ ├── intuition_init.c │ ├── intuition_intern.h │ ├── intuition_misc.c │ ├── intuition_preferences.h │ ├── intuition_rev.h │ ├── intuition_rev.i │ ├── intuition_rev.rev │ ├── intuition_rev.trev │ ├── iswindowvisible.c │ ├── itemaddress.c │ ├── itexticlass.c │ ├── lendmenus.c │ ├── lockibase.c │ ├── lockpubclass.c │ ├── lockpubscreen.c │ ├── lockpubscreenlist.c │ ├── makeclass.c │ ├── makescreen.c │ ├── menudecorclass.c │ ├── menus.c │ ├── menus.h │ ├── menutask.c │ ├── menutask.h │ ├── misc.c │ ├── mmakefile.src │ ├── modelclass.c │ ├── modifyidcmp.c │ ├── modifyprop.c │ ├── monitorclass.c │ ├── monitorclass_intern.h │ ├── monitorclass_private.h │ ├── movescreen.c │ ├── movewindow.c │ ├── movewindowinfrontof.c │ ├── newmodifyprop.c │ ├── newobjecta.c │ ├── nextobject.c │ ├── nextpubscreen.c │ ├── obtaingirport.c │ ├── offgadget.c │ ├── offmenu.c │ ├── ongadget.c │ ├── onmenu.c │ ├── openscreen.c │ ├── openscreentaglist.c │ ├── openwindow.c │ ├── openwindowtaglist.c │ ├── openworkbench.c │ ├── pointerclass.c │ ├── pointinimage.c │ ├── printitext.c │ ├── propgadgets.c │ ├── propgadgets.h │ ├── propgclass.c │ ├── pubscreenstatus.c │ ├── queryoverscan.c │ ├── refreshgadgets.c │ ├── refreshglist.c │ ├── refreshwindowframe.c │ ├── releasegirport.c │ ├── remakedisplay.c │ ├── removeclass.c │ ├── removegadget.c │ ├── removeglist.c │ ├── reportmouse.c │ ├── request.c │ ├── requesters.c │ ├── requesters.h │ ├── resetmenustrip.c │ ├── rethinkdisplay.c │ ├── rootclass.c │ ├── scrdecorclass.c │ ├── screenclass.c │ ├── screendepth.c │ ├── screennotifytask.c │ ├── screennotifytask.h │ ├── screenposition.c │ ├── screentoback.c │ ├── screentofront.c │ ├── scrollwindowraster.c │ ├── sendintuimessage.c │ ├── setattrsa.c │ ├── setdefaultpubscreen.c │ ├── setdefaultscreenfont.c │ ├── setdmrequest.c │ ├── setedithook.c │ ├── setgadgetattrsa.c │ ├── setiprefs.c │ ├── setmenustrip.c │ ├── setmousequeue.c │ ├── setpointer.c │ ├── setpointerbounds.c │ ├── setprefs.c │ ├── setpubscreenmodes.c │ ├── setwindowpointera.c │ ├── setwindowtitles.c │ ├── showhide.h │ ├── showtitle.c │ ├── showwindow.c │ ├── shutdown.ilbm │ ├── shutdownscreen.c │ ├── sizewindow.c │ ├── startscreennotifytaglist.c │ ├── strgadgets.c │ ├── strgadgets.h │ ├── strgclass.c │ ├── sysiclass.c │ ├── sysreqhandler.c │ ├── sysrequest_intern.c │ ├── timeddisplayalert.c │ ├── transplayers.h │ ├── unlockibase.c │ ├── unlockpubclass.c │ ├── unlockpubscreen.c │ ├── unlockpubscreenlist.c │ ├── viewaddress.c │ ├── viewportaddress.c │ ├── wbenchtoback.c │ ├── wbenchtofront.c │ ├── wbtasktalk.c │ ├── windecorclass.c │ ├── windowaction.c │ ├── windowclasses.c │ ├── windowlimits.c │ ├── windowtoback.c │ ├── windowtofront.c │ └── zipwindow.c ├── isapnp │ ├── BUGS │ ├── ChangeLog │ ├── CompilerSpecific.h │ ├── README │ ├── README.AROS │ ├── controller.c │ ├── controller.h │ ├── devices.c │ ├── devices.h │ ├── end.c │ ├── expansion_init.c │ ├── include │ │ ├── isapnp.h │ │ ├── isapnp_lib.fd │ │ └── isapnp_protos.h │ ├── init.c │ ├── init.h │ ├── isapnp.c │ ├── isapnp_private.h │ ├── kickstart_init.c │ ├── mmakefile.src │ ├── pnp.c │ ├── pnp.h │ ├── pnp_iterators.c │ ├── pnp_iterators.h │ ├── pnp_structs.c │ ├── pnp_structs.h │ ├── pnpisa.h │ ├── version.date │ ├── version.rev │ └── version.ver ├── kernel │ ├── _bug.c │ ├── _displayalert.c │ ├── addexceptionhandler.c │ ├── addirqhandler.c │ ├── alloccpumask.c │ ├── allocirq.c │ ├── allockernelbase.c │ ├── allocpages.c │ ├── backtracefromframe.c │ ├── bug.c │ ├── cause.c │ ├── clearcpumask.c │ ├── cli.c │ ├── clocksource.conf │ ├── cpu_init.c │ ├── cpuinmask.c │ ├── createcontext.c │ ├── deletecontext.c │ ├── dispatch.c │ ├── displayalert.c │ ├── exitinterrupt.c │ ├── fmtalertinfo.c │ ├── formatstr.c │ ├── freecpumask.c │ ├── freeirq.c │ ├── freepages.c │ ├── getbootinfo.c │ ├── getcpucount.c │ ├── getcpumask.c │ ├── getcpunumber.c │ ├── getirq.c │ ├── getscheduler.c │ ├── getsystemattr.c │ ├── initmemory.c │ ├── issuper.c │ ├── kernel.conf │ ├── kernel_arch.h │ ├── kernel_base.h │ ├── kernel_cpu.c │ ├── kernel_cpu.h │ ├── kernel_debug.c │ ├── kernel_debug.h │ ├── kernel_globals.c │ ├── kernel_globals.h │ ├── kernel_init.c │ ├── kernel_interruptcontroller.c │ ├── kernel_interruptcontrollers.h │ ├── kernel_interrupts.h │ ├── kernel_intr.c │ ├── kernel_intr.h │ ├── kernel_memory.c │ ├── kernel_mm.c │ ├── kernel_mm.h │ ├── kernel_objects.h │ ├── kernel_panic.c │ ├── kernel_romtags.c │ ├── kernel_romtags.h │ ├── kernel_scheduler.c │ ├── kernel_scheduler.h │ ├── kernel_syscall.h │ ├── kernel_timer.h │ ├── mapglobal.c │ ├── maygetchar.c │ ├── mm_linear.c │ ├── mm_linear.h │ ├── mmakefile.src │ ├── modifyirq.c │ ├── modifyirqhandler.c │ ├── obtaininput.c │ ├── prepareexecbase.c │ ├── printbacktrace.c │ ├── putchar.c │ ├── registerclocksource.c │ ├── registersymresolver.c │ ├── releaseinput.c │ ├── remexceptionhandler.c │ ├── remirqhandler.c │ ├── schedule.c │ ├── schedulecpu.c │ ├── setprotection.c │ ├── setscheduler.c │ ├── spininit.c │ ├── spinislocked.c │ ├── spinlock.c │ ├── spintrylock.c │ ├── spinunlock.c │ ├── statmemory.c │ ├── sti.c │ ├── switch.c │ ├── timestamp.c │ ├── tlsf.c │ ├── tlsf.h │ ├── unmapglobal.c │ ├── unregistersymresolver.c │ └── virtualtophysical.c ├── keymap │ ├── askkeymapdefault.c │ ├── defaultkeymap.c │ ├── keycodes.txt │ ├── keymap.conf │ ├── keymap_init.c │ ├── keymap_intern.h │ ├── mapansi.c │ ├── maprawkey.c │ ├── mmakefile.src │ ├── rawkeycodes.txt │ ├── setkeymapdefault.c │ ├── standardkeys.txt │ └── support.c ├── lddemon │ ├── include │ │ └── lddemon.h │ ├── lddemon.c │ ├── lddemon.conf │ ├── lddemon.h │ └── mmakefile.src ├── log │ ├── log.c │ ├── log.conf │ ├── log.h │ ├── log_event.c │ ├── log_intern.h │ ├── log_listener.c │ ├── log_str.c │ ├── mmakefile.src │ └── serial │ │ ├── mmakefile.src │ │ ├── serial.conf │ │ ├── seriallogger.c │ │ └── seriallogger_intern.h ├── misc │ ├── allocmiscresource.c │ ├── freemiscresource.c │ ├── misc.conf │ ├── misc_init.c │ ├── misc_intern.h │ └── mmakefile.src ├── mmakefile.src ├── oop │ ├── FILES.txt │ ├── addclass.c │ ├── basemetaclass.c │ ├── basemetaclass.h │ ├── disposeobject.c │ ├── findclass.c │ ├── getattr.c │ ├── getattrbase.c │ ├── getmethod.c │ ├── getmethodid.c │ ├── hash.c │ ├── hash.h │ ├── hiddmetaclass.c │ ├── include │ │ ├── ifmeta.h │ │ ├── oop.h │ │ └── static_mid.h │ ├── intern.h │ ├── metaclass.c │ ├── mmakefile.src │ ├── newobject.c │ ├── obtainattrbase.c │ ├── obtainattrbases.c │ ├── obtainattrbasesarray.c │ ├── obtainmethodbasesarray.c │ ├── oop.conf │ ├── oop.doc │ ├── oop_init.c │ ├── parseattrs.c │ ├── private.h │ ├── privatestubs.c │ ├── releaseattrbase.c │ ├── releaseattrbases.c │ ├── releaseattrbasesarray.c │ ├── removeclass.c │ ├── rootclass.c │ ├── setattrs.c │ ├── support.c │ └── unused │ │ ├── addserver.c │ │ ├── findserver.c │ │ ├── interfaceclass.c │ │ ├── methodclass.c │ │ ├── proxy.h │ │ ├── proxyclass.c │ │ ├── removeserver.c │ │ ├── server.h │ │ └── serverclass.c ├── openfirmware │ ├── mmakefile.src │ ├── of_init.c │ ├── of_intern.h │ └── openfirmware.conf ├── partition │ ├── Makefile.gcc │ ├── addbootfilesystem.c │ ├── addpartition.c │ ├── arosmacros.h │ ├── closepartitiontable.c │ ├── closerootpartition.c │ ├── compilerspecific.h │ ├── crc32.c │ ├── createpartitiontable.c │ ├── debug.h │ ├── deletepartition.c │ ├── destroypartitiontable.c │ ├── findfilesystema.c │ ├── fsloader.c │ ├── fsloader.h │ ├── getfilesystemattrsa.c │ ├── getpartitionattrs.c │ ├── getpartitiontableattrs.c │ ├── include │ │ ├── libraries │ │ │ └── partition.h │ │ └── mmakefile.src │ ├── loadbootfilesystems.c │ ├── loadfilesystem.c │ ├── mmakefile.src │ ├── openpartitiontable.c │ ├── openrootpartition.c │ ├── partition.conf │ ├── partition_init.c │ ├── partition_intern.h │ ├── partition_support.c │ ├── partition_support.h │ ├── partition_types.c │ ├── partition_types.h │ ├── partitionami_init.c │ ├── partitionebr.c │ ├── partitiongpt.c │ ├── partitiongpt.h │ ├── partitionmbr.c │ ├── partitionmbr.h │ ├── partitionrdb.c │ ├── platform.h │ ├── querypartitionattrs.c │ ├── querypartitiontableattrs.c │ ├── readpartitiondata.c │ ├── setpartitionattrs.c │ ├── setpartitiontableattrs.c │ ├── writepartitiondata.c │ └── writepartitiontable.c ├── processor │ ├── defaults.h │ ├── getcpuinfo.c │ ├── init.c │ ├── mmakefile.src │ ├── processor.conf │ └── processor_intern.h ├── security │ ├── .gitignore │ ├── mmakefile.src │ ├── secAccess_Control.c │ ├── secAddMonitor.c │ ├── secAllocGroupInfo.c │ ├── secAllocUserInfo.c │ ├── secCheckPasswd.c │ ├── secCheckPasswdTags.c │ ├── secContextLocate.c │ ├── secEnumChildren.c │ ├── secFSRendezVous.c │ ├── secFreeExtOwner.c │ ├── secFreeGroupInfo.c │ ├── secFreeUserInfo.c │ ├── secFreeze.c │ ├── secGetConfigDirLock.c │ ├── secGetDefProtection.c │ ├── secGetGroupInfo.c │ ├── secGetPasswdDirLock.c │ ├── secGetPktDefProtection.c │ ├── secGetPktOwner.c │ ├── secGetRelationship.c │ ├── secGetRelationshipA.c │ ├── secGetTaskExtOwner.c │ ├── secGetTaskOwner.c │ ├── secGetUserInfo.c │ ├── secKill.c │ ├── secLimitDOSSetProtection.c │ ├── secLoadPlugin.c │ ├── secLocksecBase.c │ ├── secLogin.c │ ├── secLoginA.c │ ├── secLogout.c │ ├── secPasswd.c │ ├── secPluginOperationComplete.c │ ├── secRegisterHandler.c │ ├── secRemMonitor.c │ ├── secSetDefProtection.c │ ├── secSetDefProtectionA.c │ ├── secSetProtection.c │ ├── secUnRegisterHandler.c │ ├── secUnfreeze.c │ ├── secUnloadPlugin.c │ ├── secUnlocksecBase.c │ ├── secUserInfo2ExtOwner.c │ ├── secgetgid.c │ ├── secgetpgid.c │ ├── secgetuid.c │ ├── secsetegid.c │ ├── secseteuid.c │ ├── secsetgid.c │ ├── secsetreuid.c │ ├── secsetuid.c │ ├── security.conf │ ├── security_config.c │ ├── security_config.h │ ├── security_crypto.c │ ├── security_crypto.h │ ├── security_dosfuncs.c │ ├── security_enforce.c │ ├── security_enforce.h │ ├── security_execfuncs.c │ ├── security_groupinfo.h │ ├── security_init.c │ ├── security_intern.h │ ├── security_locale.c │ ├── security_locale.h │ ├── security_memory.c │ ├── security_memory.h │ ├── security_monitor.c │ ├── security_monitor.h │ ├── security_packetio.c │ ├── security_packetio.h │ ├── security_plugins.c │ ├── security_plugins.h │ ├── security_segment.c │ ├── security_segment.h │ ├── security_server.c │ ├── security_server.h │ ├── security_support.c │ ├── security_support.h │ ├── security_task.c │ ├── security_task.h │ ├── security_userinfo.h │ ├── security_volumes.c │ └── security_volumes.h ├── task │ ├── .gitignore │ ├── AddTaskHook.c │ ├── AllocTaskStorageSlot.c │ ├── FreeTaskStorageSlot.c │ ├── GetParentTaskStorageSlot.c │ ├── GetTaskStorageSlot.c │ ├── InitTaskHooks.c │ ├── LockTaskList.c │ ├── NextTaskEntry.c │ ├── QueryTaskTagList.c │ ├── RestoreTaskStorage.c │ ├── RunTaskHooks.c │ ├── SaveTaskStorage.c │ ├── SetTaskStorageSlot.c │ ├── UnLockTaskList.c │ ├── mmakefile.src │ ├── task.conf │ ├── task.h │ ├── task_execfuncs.c │ ├── task_init.c │ ├── task_intern.h │ └── task_support.c ├── timer │ ├── abortio.c │ ├── addtime.c │ ├── beginio.c │ ├── cmptime.c │ ├── common_init.c │ ├── getsystime.c │ ├── getuptime.c │ ├── include │ │ └── timer.h │ ├── lowlevel.c │ ├── mmakefile.src │ ├── readeclock.c │ ├── subtime.c │ ├── ticks.c │ ├── timer.conf │ ├── timer_init.c │ ├── timer_intern.h │ ├── timer_macros.h │ ├── timer_platform.h │ ├── timervblank.c │ └── timervblank.h ├── usb │ ├── LEGAL │ ├── README.md │ ├── classes │ │ ├── arosx │ │ │ ├── .gitignore │ │ │ ├── arosx.class.c │ │ │ ├── arosx.class.config.gui.c │ │ │ ├── arosx.class.config.gui.h │ │ │ ├── arosx.class.h │ │ │ ├── arosx.conf │ │ │ ├── arosx.h │ │ │ ├── arosx.library.c │ │ │ ├── arosx_test.c │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── include │ │ │ │ ├── .gitignore │ │ │ │ ├── arosx.conf │ │ │ │ ├── arosx.h │ │ │ │ └── mmakefile.src │ │ │ └── mmakefile.src │ │ ├── asixeth │ │ │ ├── asixeth.class.c │ │ │ ├── asixeth.class.h │ │ │ ├── asixeth.conf │ │ │ ├── asixeth.h │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ └── mmakefile.src │ │ ├── audio │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── mmakefile.src │ │ │ ├── numtostr.c │ │ │ ├── numtostr.h │ │ │ ├── usbaudio.class.c │ │ │ ├── usbaudio.class.h │ │ │ ├── usbaudio.conf │ │ │ └── usbaudio.h │ │ ├── bluetooth │ │ │ ├── bluetooth.class.c │ │ │ ├── bluetooth.class.h │ │ │ ├── bluetooth.conf │ │ │ ├── bluetooth.h │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ └── mmakefile.src │ │ ├── bootkeyboard │ │ │ ├── bootkeyboard.class.c │ │ │ ├── bootkeyboard.class.h │ │ │ ├── bootkeyboard.conf │ │ │ ├── bootkeyboard.h │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ └── mmakefile.src │ │ ├── bootmouse │ │ │ ├── bootmouse.class.c │ │ │ ├── bootmouse.class.h │ │ │ ├── bootmouse.conf │ │ │ ├── bootmouse.h │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ └── mmakefile.src │ │ ├── camdmidi │ │ │ ├── CAMDDriver.c │ │ │ ├── camd │ │ │ │ ├── .gitignore │ │ │ │ ├── mmakefile.src │ │ │ │ └── poseidonusb.c │ │ │ ├── camdusbmidi.class.c │ │ │ ├── camdusbmidi.class.h │ │ │ ├── camdusbmidi.conf │ │ │ ├── camdusbmidi.h │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── mmakefile.src │ │ │ └── poseidonusb │ │ ├── cdcacm │ │ │ ├── cdcacm.class.c │ │ │ ├── cdcacm.class.h │ │ │ ├── cdcacm.conf │ │ │ ├── cdcacm.h │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ └── mmakefile.src │ │ ├── davicometh │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── dm9601eth.class.c │ │ │ ├── dm9601eth.class.h │ │ │ ├── dm9601eth.conf │ │ │ ├── dm9601eth.h │ │ │ └── mmakefile.src │ │ ├── dfu │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dfu.class.c │ │ │ ├── dfu.class.h │ │ │ ├── dfu.conf │ │ │ ├── dfu.h │ │ │ └── mmakefile.src │ │ ├── egalaxtouch │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── egalaxtouch.class.c │ │ │ ├── egalaxtouch.class.h │ │ │ ├── egalaxtouch.conf │ │ │ ├── egalaxtouch.h │ │ │ └── mmakefile.src │ │ ├── ethwrap │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── ethwrap.class.c │ │ │ ├── ethwrap.class.h │ │ │ ├── ethwrap.conf │ │ │ ├── ethwrap.h │ │ │ └── mmakefile.src │ │ ├── felsunxi │ │ │ ├── .gitignore │ │ │ ├── class_DeviceBinding.c │ │ │ ├── class_DoMethodA.c │ │ │ ├── class_FELSunxiTask.c │ │ │ ├── class_GetAttrsA.c │ │ │ ├── class_Library.c │ │ │ ├── class_SetAttrsA.c │ │ │ ├── felsunxi.conf │ │ │ ├── felsunxi_intern.h │ │ │ └── mmakefile.src │ │ ├── hid │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── hid.class.c │ │ │ ├── hid.class.h │ │ │ ├── hid.conf │ │ │ ├── hid.gui.c │ │ │ ├── hid.h │ │ │ ├── hidctrl.gui.c │ │ │ ├── mmakefile.src │ │ │ ├── numtostr.c │ │ │ └── numtostr.h │ │ ├── hub │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── hub.class.c │ │ │ ├── hub.class.h │ │ │ ├── hub.conf │ │ │ ├── hub.h │ │ │ └── mmakefile.src │ │ ├── hubss │ │ │ ├── .gitignore │ │ │ ├── hubss.conf │ │ │ ├── hubss_class.c │ │ │ ├── hubss_class.h │ │ │ └── mmakefile.src │ │ ├── massstorage │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── massstorage.class.c │ │ │ ├── massstorage.class.h │ │ │ ├── massstorage.conf │ │ │ ├── massstorage.h │ │ │ ├── mmakefile.src │ │ │ └── partitions.c │ │ ├── mmakefile.src │ │ ├── moschipeth │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── moschipeth.class.c │ │ │ ├── moschipeth.class.h │ │ │ ├── moschipeth.conf │ │ │ └── moschipeth.h │ │ ├── palmpda │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── palmpda.class.c │ │ │ ├── palmpda.class.h │ │ │ ├── palmpda.conf │ │ │ └── palmpda.h │ │ ├── pegasuseth │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── pegasus.class.c │ │ │ ├── pegasus.class.h │ │ │ ├── pegasus.conf │ │ │ └── pegasus.h │ │ ├── printer │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── printer.class.c │ │ │ ├── printer.class.h │ │ │ ├── printer.conf │ │ │ └── printer.h │ │ ├── ptp │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── mmakefile.src │ │ │ ├── numtostr.c │ │ │ ├── numtostr.h │ │ │ ├── ptp.class.c │ │ │ ├── ptp.class.h │ │ │ ├── ptp.conf │ │ │ └── ptp.h │ │ ├── rawwrap │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── rawwrap.class.c │ │ │ ├── rawwrap.class.h │ │ │ ├── rawwrap.conf │ │ │ └── rawwrap.h │ │ ├── rndis │ │ │ ├── LEGAL │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── if_urndis.c │ │ │ ├── if_urndisreg.h │ │ │ ├── mmakefile.src │ │ │ ├── rndis.class.c │ │ │ ├── rndis.class.h │ │ │ ├── rndis.conf │ │ │ └── rndis.h │ │ ├── serialcp210x │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── serialcp210x.class.c │ │ │ ├── serialcp210x.class.h │ │ │ ├── serialcp210x.conf │ │ │ └── serialcp210x.h │ │ ├── serialpl2303 │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── serialpl2303.class.c │ │ │ ├── serialpl2303.class.h │ │ │ ├── serialpl2303.conf │ │ │ └── serialpl2303.h │ │ ├── simplemidi │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── mmakefile.src │ │ │ ├── simplemidi.class.c │ │ │ ├── simplemidi.class.h │ │ │ ├── simplemidi.conf │ │ │ └── simplemidi.h │ │ ├── stir4200 │ │ │ ├── common.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── stir4200.class.c │ │ │ ├── stir4200.class.h │ │ │ ├── stir4200.conf │ │ │ └── stir4200.h │ │ └── usbclass.conf │ ├── docs │ │ ├── lowlevel.doc.patch │ │ ├── poseidon.doc │ │ ├── usbclass.doc │ │ └── usbhardware.doc │ ├── guiapps │ │ └── ps3eye │ │ │ ├── .gitignore │ │ │ ├── AROS320_pure.c │ │ │ ├── AROS320_video.c │ │ │ ├── AROS640_pure.c │ │ │ ├── AROS640_video.c │ │ │ ├── mmakefile.src │ │ │ └── ps3eye.c │ ├── mmakefile.src │ ├── pciusb │ │ ├── buffer.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── ehcichip.c │ │ ├── ehcichip.h │ │ ├── ehciproto.h │ │ ├── hccommon.h │ │ ├── make.opts │ │ ├── mmakefile.src │ │ ├── ohcichip.c │ │ ├── ohcichip.h │ │ ├── ohciproto.h │ │ ├── pci_aros.h │ │ ├── pciusb.conf │ │ ├── pciusb.h │ │ ├── pciusb_arospci.c │ │ ├── pciusb_dev.c │ │ ├── pciusb_init.c │ │ ├── uhcichip.c │ │ ├── uhcichip.h │ │ ├── uhciproto.h │ │ ├── uhwcmd.c │ │ ├── uhwcmd.h │ │ ├── xhcichip.c │ │ ├── xhcichip.h │ │ ├── xhcichip_async.c │ │ ├── xhcichip_hcport.c │ │ ├── xhcichip_hw.c │ │ ├── xhcichip_periodic.c │ │ ├── xhcidebug.c │ │ ├── xhcidevice.c │ │ └── xhciproto.h │ ├── pciusbhc │ │ ├── ehci │ │ │ ├── mmakefile.src │ │ │ ├── pciehci.conf │ │ │ ├── pciehci.h │ │ │ ├── pciehci_dev.c │ │ │ ├── pciehci_hci.c │ │ │ ├── pciehci_hci.h │ │ │ ├── pciehci_init.c │ │ │ ├── pciehci_uhw.c │ │ │ └── pciehci_uhw.h │ │ ├── mmakefile.src │ │ ├── ohci │ │ │ ├── .gitignore │ │ │ ├── buffer.c │ │ │ ├── buffer_protos.h │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── chip_protos.h │ │ │ ├── cmd.c │ │ │ ├── cmd_protos.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── dev.h │ │ │ ├── mmakefile.src │ │ │ ├── ohci.conf │ │ │ ├── pci.c │ │ │ ├── pci.h │ │ │ ├── pci_protos.h │ │ │ ├── roothub.c │ │ │ └── roothub_protos.h │ │ ├── uhci │ │ │ ├── debug.h │ │ │ ├── dev.c │ │ │ ├── hccommon.h │ │ │ ├── mmakefile.src │ │ │ ├── pci_aros.c │ │ │ ├── pci_aros.h │ │ │ ├── pciuhci.conf │ │ │ ├── pciuhci.h │ │ │ ├── uhcichip.c │ │ │ ├── uhcichip.h │ │ │ ├── uhwcmd.c │ │ │ └── uhwcmd.h │ │ └── xhci │ │ │ ├── .gitignore │ │ │ ├── mmakefile.src │ │ │ ├── pcixhci.conf │ │ │ ├── pcixhci_commands.c │ │ │ ├── pcixhci_controller.c │ │ │ ├── pcixhci_controller.h │ │ │ ├── pcixhci_device.c │ │ │ ├── pcixhci_discover.c │ │ │ ├── pcixhci_intern.h │ │ │ └── pcixhci_misc.c │ ├── poseidon │ │ ├── debug.c │ │ ├── debug.h │ │ ├── include │ │ │ └── hidd │ │ │ │ └── usb.h │ │ ├── mmakefile.src │ │ ├── numtostr.c │ │ ├── numtostr.h │ │ ├── popo.gui.c │ │ ├── popo.gui.h │ │ ├── poseidon.conf │ │ ├── poseidon.library.c │ │ ├── poseidon.library.h │ │ ├── poseidon_intern.h │ │ ├── shellcommands │ │ │ ├── AddUSBClasses.c │ │ │ ├── AddUSBHardware.c │ │ │ ├── PsdDevLister.c │ │ │ ├── PsdErrorlog.c │ │ │ ├── PsdStackLoader.c │ │ │ └── mmakefile.src │ │ ├── usb_controllerclass.c │ │ ├── usb_deviceclass.c │ │ ├── usbromearlystartup.c │ │ └── usbromlatestartup.c │ ├── presets │ │ ├── .gitignore │ │ ├── Poseidon │ │ │ ├── connect.iff │ │ │ └── disconnect.iff │ │ └── mmakefile.src │ ├── shellapps │ │ ├── DRadioTool.c │ │ ├── DRadioTool.h │ │ ├── PencamTool.c │ │ ├── PencamTool.h │ │ ├── PowManTool.c │ │ ├── PowManTool.h │ │ ├── RocketTool.c │ │ ├── RocketTool.h │ │ ├── SonixcamTool.c │ │ ├── SonixcamTool.h │ │ ├── UPSTool.c │ │ ├── UPSTool.h │ │ ├── debug.c │ │ ├── debug.h │ │ └── mmakefile.src │ ├── trident │ │ ├── ActionClass.c │ │ ├── ActionClass.h │ │ ├── CfgListClass.c │ │ ├── CfgListClass.h │ │ ├── DevWinClass.c │ │ ├── DevWinClass.h │ │ ├── IconListClass.c │ │ ├── IconListClass.h │ │ ├── MasonIcons │ │ │ ├── Class_Audio │ │ │ ├── Class_Bluetooth │ │ │ ├── Class_CDCControl │ │ │ ├── Class_CDCData │ │ │ ├── Class_ChipSmartCard │ │ │ ├── Class_CommDevice │ │ │ ├── Class_HID │ │ │ ├── Class_Hub │ │ │ ├── Class_MassStorage │ │ │ ├── Class_None │ │ │ ├── Class_Physical │ │ │ ├── Class_Printer │ │ │ ├── Class_Security │ │ │ ├── Class_StillImage │ │ │ ├── Class_Vendor │ │ │ ├── Classes │ │ │ ├── Devices │ │ │ ├── General │ │ │ ├── GreenLED │ │ │ ├── Hardware │ │ │ ├── MI_Class_Audio.c │ │ │ ├── MI_Class_Bluetooth.c │ │ │ ├── MI_Class_CDCControl.c │ │ │ ├── MI_Class_CDCData.c │ │ │ ├── MI_Class_ChipSmartCard.c │ │ │ ├── MI_Class_CommDevice.c │ │ │ ├── MI_Class_HID.c │ │ │ ├── MI_Class_Hub.c │ │ │ ├── MI_Class_MassStorage.c │ │ │ ├── MI_Class_None.c │ │ │ ├── MI_Class_Physical.c │ │ │ ├── MI_Class_Printer.c │ │ │ ├── MI_Class_Security.c │ │ │ ├── MI_Class_StillImage.c │ │ │ ├── MI_Class_Vendor.c │ │ │ ├── MI_Classes.c │ │ │ ├── MI_Devices.c │ │ │ ├── MI_General.c │ │ │ ├── MI_GreenLED.c │ │ │ ├── MI_Hardware.c │ │ │ ├── MI_Online.c │ │ │ ├── MI_OrangeLED.c │ │ │ ├── MI_OrangeLEDQ.c │ │ │ ├── MI_Popup.c │ │ │ ├── MI_Settings.c │ │ │ ├── Online │ │ │ ├── OrangeLED │ │ │ ├── OrangeLEDQ │ │ │ ├── Popup │ │ │ └── Settings │ │ ├── Trident.c │ │ ├── Trident.h │ │ ├── datatypes │ │ │ ├── PSD.dtd │ │ │ └── mmakefile.src │ │ ├── debug.c │ │ ├── debug.h │ │ ├── icons │ │ │ ├── def_PSD.info.src │ │ │ ├── def_PSD.png │ │ │ └── mmakefile.src │ │ ├── locale.c │ │ ├── locale.h │ │ ├── mmakefile.src │ │ └── neptune8logo.c │ └── vusbhc │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── vusbhci.conf │ │ ├── vusbhci_bridge.c │ │ ├── vusbhci_bridge.h │ │ ├── vusbhci_commands.c │ │ ├── vusbhci_device.c │ │ └── vusbhci_device.h └── utility │ ├── addnamedobject.c │ ├── allocatetagitems.c │ ├── allocnamedobjecta.c │ ├── amiga2date.c │ ├── applytagchanges.c │ ├── attemptremnamedobject.c │ ├── callhookpkt.c │ ├── checkdate.c │ ├── clearmem.c │ ├── clonetagitems.c │ ├── date2amiga.c │ ├── filtertagchanges.c │ ├── filtertagitems.c │ ├── findnamedobject.c │ ├── findtagitem.c │ ├── freenamedobject.c │ ├── freetagitems.c │ ├── getnamespace.c │ ├── gettagdata.c │ ├── getuniqueid.c │ ├── intern.h │ ├── intfindnamedobj.c │ ├── maptags.c │ ├── mmakefile.src │ ├── movemem.c │ ├── namedobjectname.c │ ├── nexttagitem.c │ ├── packbooltags.c │ ├── packstructuretags.c │ ├── refreshtagitemclones.c │ ├── releasenamedobject.c │ ├── remnamedobject.c │ ├── sdivmod32.c │ ├── setmem.c │ ├── smult32.c │ ├── smult64.c │ ├── stricmp.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strnicmp.c │ ├── taginarray.c │ ├── tolower.c │ ├── toupper.c │ ├── udivmod32.c │ ├── umult32.c │ ├── umult64.c │ ├── unpackstructuretags.c │ ├── utility.conf │ ├── utility_init.c │ └── vsnprintf.c ├── scripts ├── .clangd.template ├── aros-clang++.in ├── aros-clang.in ├── aros-cpp.in ├── aros-g++.in ├── aros-gcc.in ├── aros-ld.in ├── aros_atmidnight ├── autoconf │ ├── config.guess │ ├── config.sub │ ├── install.sh │ └── m4 │ │ ├── python.m4 │ │ └── sdl.m4 ├── azure │ ├── azure-pipelines.yml │ ├── check-translations.yml │ ├── gen-dev-downloads.yml │ ├── gen-downloads.py │ ├── gen-smtranslation-pages.py │ ├── gen-unittests.yml │ ├── junittohtml.xml │ ├── rss-commits.yml │ ├── update-dev-nightlies.yml │ ├── update-nightlies.yml │ └── update-unittests.yml ├── bumpyear.sh ├── cint.awk ├── cint2.awk ├── copyright.awk ├── cpy-dir-rec.py ├── elf-gcc.in ├── fetch.sh ├── fix-copyright.py ├── fix-line-ending.py ├── generate_clangd.py ├── genmmakefile ├── gimmearos-ext.sh ├── gimmearos.sh ├── jobclient.awk ├── makedist ├── makelinks ├── merger.sh ├── mkdep ├── moveifchanged ├── nightly │ ├── autotest │ │ ├── Test │ │ ├── Test.cunit │ │ ├── Try │ │ ├── User-Startup │ │ └── User-Startup.cunit │ ├── build │ ├── cfg │ │ ├── beryoza │ │ ├── daemon │ │ ├── defaults │ │ ├── dell │ │ ├── developer │ │ ├── donkey │ │ ├── htlab │ │ ├── ogun │ │ ├── peg2 │ │ ├── server │ │ ├── vault13-armhf │ │ ├── vault13-i386 │ │ ├── vault13-x86_64 │ │ └── vps2 │ ├── cl2html.xslt │ ├── cleanup │ ├── cvs2cl.pl │ ├── functions │ ├── mail │ ├── pkg │ │ ├── amiga-m68k │ │ ├── bootfloppy-pc-i386 │ │ ├── bootiso │ │ ├── bootiso-Parthenope-sam440-ppc │ │ ├── bootiso-grub-pc-i386 │ │ ├── bootiso-grub2-pc-i386 │ │ ├── bootiso-grub2-pc-x86_64 │ │ ├── bootiso-grub2-pc-x86_64-smp │ │ ├── bootiso-ub2lb-efika-ppc │ │ ├── changelogs-all │ │ ├── contrib │ │ ├── contrib-amiga-m68k │ │ ├── contrib-linux-arm │ │ ├── contrib-linux-armhf │ │ ├── contrib-linux-ppc │ │ ├── contrib-pc-i386 │ │ ├── contrib-pc-x86_64 │ │ ├── contrib-sam440-ppc │ │ ├── crosstools │ │ ├── crosstools-linux-armhf │ │ ├── crosstools-pc-i386 │ │ ├── crosstools-pc-x86_64 │ │ ├── developer │ │ ├── documentation-all │ │ ├── hosted │ │ ├── hosted-android-arm │ │ ├── hosted-darwin-i386 │ │ ├── hosted-darwin-ppc │ │ ├── hosted-darwin-x86_64 │ │ ├── hosted-linux-arm │ │ ├── hosted-linux-armhf │ │ ├── hosted-linux-i386 │ │ ├── hosted-linux-ppc │ │ ├── hosted-linux-x86_64 │ │ ├── hosted-mingw32-i386 │ │ ├── hosted-mingw32-x86_64 │ │ ├── raspi-armhf │ │ ├── sdk │ │ ├── sdk-linux-arm │ │ ├── sdk-linux-armhf │ │ ├── sdk-linux-ppc │ │ ├── sdk-pc-i386 │ │ ├── sdk-pc-x86_64 │ │ ├── sdk-sam440-ppc │ │ └── sources-all │ ├── setup │ └── update ├── pkg-config.in ├── relpath ├── repo_id.sh ├── repo_rev.sh ├── repo_type.sh ├── snapshotports.sh ├── strtoint.c ├── uname.in └── web │ ├── nightly-clean │ ├── nightly-update │ ├── nightly-update-frs │ ├── nightly2-clean │ ├── nightly2-clean-dev │ ├── nightly2-update │ ├── nightly2-update-dev │ ├── nightly2-update-dev-frs │ ├── nightly2-update-frs │ ├── snapshots-update │ ├── snapshots2-update │ ├── unittests-clean │ ├── update │ ├── update-frs │ ├── updatearchives │ ├── updatearosworld │ ├── updatecommits │ └── updateunittests ├── tools ├── ADFlib │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── adflib.pc.in │ ├── autogen.sh │ ├── configure.ac │ ├── doc │ │ ├── API.txt │ │ ├── FAQ │ │ │ ├── adf_info.html │ │ │ ├── adf_info.txt │ │ │ ├── adf_info_V0_9.txt │ │ │ └── image │ │ │ │ ├── adf_dir.gif │ │ │ │ └── adf_file.gif │ │ ├── Makefile.am │ │ ├── api_device.html │ │ ├── api_dir.html │ │ ├── api_env.html │ │ ├── api_file.html │ │ ├── api_index.html │ │ ├── api_native.html │ │ ├── api_salv.html │ │ ├── api_volume.html │ │ └── version0.7.9d_gary.txt │ ├── examples │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── patch_unadf_2010_0209_Galt_Barber │ │ ├── unadf.c │ │ ├── unadf.output │ │ └── unadf.usage │ ├── mmakefile.src │ ├── regtests │ │ ├── Boot │ │ │ └── stdboot3.bbk │ │ ├── Dumps │ │ │ ├── blank.adf │ │ │ ├── links.adf │ │ │ ├── testffs.adf │ │ │ ├── testhd.adf │ │ │ ├── testhd.ami │ │ │ ├── testhd.cmd │ │ │ └── testofs.adf │ │ └── Test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.bak │ │ │ ├── access.c │ │ │ ├── bigdev.sh │ │ │ ├── bootdisk.c │ │ │ ├── bootdisk2.c │ │ │ ├── cache_test.c │ │ │ ├── comment.c │ │ │ ├── del_test.c │ │ │ ├── dir_test.c │ │ │ ├── dir_test2.c │ │ │ ├── dirc.c │ │ │ ├── dirc_test.c │ │ │ ├── dispsect.c │ │ │ ├── experiments.txt │ │ │ ├── file_test.c │ │ │ ├── file_test2.c │ │ │ ├── file_test2a.c │ │ │ ├── file_test3.c │ │ │ ├── fl_test.c │ │ │ ├── fl_test2.c │ │ │ ├── flfile_test.c │ │ │ ├── floppy.sh │ │ │ ├── hardfile.c │ │ │ ├── hardfile2.c │ │ │ ├── hd_test.c │ │ │ ├── hd_test2.c │ │ │ ├── hd_test3.c │ │ │ ├── progbar.c │ │ │ ├── readonly.c │ │ │ ├── rename.c │ │ │ ├── rename2.c │ │ │ ├── undel.c │ │ │ ├── undel2.c │ │ │ └── undel3.c │ └── src │ │ ├── Makefile.am │ │ ├── adf_bitm.c │ │ ├── adf_bitm.h │ │ ├── adf_blk.h │ │ ├── adf_cache.c │ │ ├── adf_cache.h │ │ ├── adf_defs.h │ │ ├── adf_dir.c │ │ ├── adf_dir.h │ │ ├── adf_disk.c │ │ ├── adf_disk.h │ │ ├── adf_dump.c │ │ ├── adf_dump.h │ │ ├── adf_env.c │ │ ├── adf_env.h │ │ ├── adf_err.h │ │ ├── adf_file.c │ │ ├── adf_file.h │ │ ├── adf_hd.c │ │ ├── adf_hd.h │ │ ├── adf_link.c │ │ ├── adf_link.h │ │ ├── adf_raw.c │ │ ├── adf_raw.h │ │ ├── adf_salv.c │ │ ├── adf_salv.h │ │ ├── adf_str.h │ │ ├── adf_util.c │ │ ├── adf_util.h │ │ ├── adflib.h │ │ ├── defendian.h │ │ ├── generic │ │ ├── adf_nativ.c │ │ └── adf_nativ.h │ │ ├── hd_blk.h │ │ ├── prefix.h │ │ └── win32 │ │ ├── adf_nativ.c │ │ ├── adf_nativ.h │ │ ├── adfvolinfo.c │ │ ├── defendian.h │ │ ├── nt4_dev.c │ │ ├── nt4_dev.h │ │ └── readme_win32.html ├── MetaMake │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── DemoMMFile │ ├── INSTALL │ ├── LEGAL │ ├── Makefile.amiga │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.GeekGadgets │ ├── TODO │ ├── acconfig.h │ ├── ansi2knr.1 │ ├── ansi2knr.c │ ├── cache.c │ ├── cache.h │ ├── compiler.h │ ├── config.guess │ ├── config.h.amiga │ ├── config.h.bot │ ├── config.h.in │ ├── config.h.top │ ├── config.sub │ ├── configure.in │ ├── dep.c │ ├── dep.h │ ├── dirnode.c │ ├── dirnode.h │ ├── install-sh │ ├── io.c │ ├── io_.h │ ├── list.c │ ├── list.h │ ├── mem.c │ ├── mem.h │ ├── missing │ ├── mkinstalldirs │ ├── mmake.c │ ├── mmake.config.sample │ ├── mmake.h │ ├── mmake.txt │ ├── mmakefile.src │ ├── project.c │ ├── project.h │ ├── stamp-h.in │ ├── var.c │ ├── var.h │ └── win32.h ├── archtools │ ├── Makefile │ ├── archtool.c │ ├── archtool.doc │ └── mmakefile.src ├── collect-aros │ ├── Makefile │ ├── README │ ├── backend-bfd.c │ ├── backend-generic.c │ ├── backend.h │ ├── collect-aros.c │ ├── docommand-exec.c │ ├── docommand-spawn.c │ ├── docommand.h │ ├── env.h.in │ ├── gensets.c │ ├── gensets.h │ ├── ldscript.h │ ├── misc.c │ ├── misc.h │ └── mmakefile ├── copytoafs │ ├── Makefile │ ├── Makefile.afslib │ ├── copytoafs.c │ └── myconf.aros ├── crosstools │ ├── README │ ├── gnu.cfg │ ├── gnu.deps │ ├── gnu │ │ ├── .gitignore │ │ ├── binutils-2.32-aros.diff │ │ ├── binutils-2.35-aros.diff │ │ ├── binutils-2.38-aros.diff │ │ ├── binutils-2.40-aros.diff │ │ ├── binutils-2.45-aros.diff │ │ ├── gcc-10.5.0-aros.diff │ │ ├── gcc-11.2.0-aros.diff │ │ ├── gcc-12.2.0-aros.diff │ │ ├── gcc-13.4.0-aros.diff │ │ ├── gcc-15.2.0-aros.diff │ │ ├── gcc-6.5.0-aros.diff │ │ ├── gcc-8.3.0-aros.diff │ │ ├── gcc-9.5.0-aros.diff │ │ ├── gdb-7.9-aros.diff │ │ ├── gmp-6.3.0-aros.diff │ │ └── mmakefile.src │ ├── llvm.cfg │ ├── llvm.deps │ ├── llvm │ │ ├── .gitignore │ │ ├── cfe-3.8.0.src-aros.diff │ │ ├── cfe-3.9.0.src-aros.diff │ │ ├── cfe-7.0.0.src-aros.diff │ │ ├── cfe-9.0.0.src-aros.diff │ │ ├── clang-10.0.1.src-aros.diff │ │ ├── clang-10.0.1rc1.src-aros.diff │ │ ├── clang-11.0.0.src-aros.diff │ │ ├── clang-11.0.1.src-aros.diff │ │ ├── clang-20.1.0.src-aros.diff │ │ ├── compiler-rt-11.0.0.src-aros.diff │ │ ├── compiler-rt-20.1.0.src-aros.diff │ │ ├── libcxx-11.0.0.src-aros.diff │ │ ├── libcxx-20.1.0.src-aros.diff │ │ ├── libcxxabi-11.0.0.src-aros.diff │ │ ├── libcxxabi-20.1.0.src-aros.diff │ │ ├── libunwind-11.0.0.src-aros.diff │ │ ├── libunwind-20.1.0.src-aros.diff │ │ ├── llvm-10.0.1.src-aros.diff │ │ ├── llvm-10.0.1rc1.src-aros.diff │ │ ├── llvm-11.0.0.src-aros.diff │ │ ├── llvm-11.0.1.src-aros.diff │ │ ├── llvm-20.1.0.src-aros.diff │ │ ├── llvm-3.8.0.src-aros.diff │ │ ├── llvm-3.9.0.src-aros.diff │ │ ├── llvm-7.0.0.src-aros.diff │ │ ├── llvm-9.0.0.src-aros.diff │ │ └── mmakefile.src │ └── mmakefile.src ├── cxref │ ├── ANNOUNCE │ ├── COPYING │ ├── ChangeLog │ ├── FAQ │ ├── FAQ-html.pl │ ├── FAQ.html │ ├── INSTALL │ ├── LEGAL │ ├── LSM │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.c │ ├── README.c.html │ ├── README.c.rtf │ ├── README.c.sgml │ ├── README.c.src.html │ ├── README.html │ ├── README.man │ ├── README.sgml │ ├── README.tex │ ├── README_c.tex │ ├── TODO │ ├── acconfig.h │ ├── autoconfig.h.in │ ├── comment.c │ ├── configure │ ├── configure.in │ ├── contrib │ │ ├── README │ │ ├── README.xrgr │ │ ├── cflow.el │ │ ├── cxref-1.5c-webcpp.patch │ │ ├── cxref.el │ │ ├── cxref.spec │ │ ├── cxref_includes.pl │ │ ├── daVinvi_function.pl │ │ ├── daVinvi_include.pl │ │ ├── fixheader.pl │ │ ├── includes2cxref.pl │ │ ├── knr2ansi.pl │ │ ├── make_depend.pl │ │ ├── tree.pl │ │ ├── xrefgraph.py │ │ └── xrgr.pl │ ├── cpp │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── README.man │ │ ├── autoconfig.h.in │ │ ├── cccp.c │ │ ├── cccp.c.diff │ │ ├── cexp.c │ │ ├── cexp.y │ │ ├── config.h │ │ ├── configure │ │ ├── configure.in │ │ ├── cxref-cpp-configure.in │ │ ├── cxref-cpp-configure.man │ │ ├── cxref-cpp.man │ │ ├── pcp.h │ │ ├── tm.h │ │ └── version.c │ ├── cxref-cc │ ├── cxref.c │ ├── cxref.h │ ├── datatype.h │ ├── doc │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── cxref.style │ │ ├── fonts.style │ │ └── page.style │ ├── file.c │ ├── func.c │ ├── html.c │ ├── install-sh │ ├── latex.c │ ├── memory.c │ ├── memory.h │ ├── parse-yy.h │ ├── parse.l │ ├── parse.y │ ├── preproc.c │ ├── query │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── README.man │ │ ├── input.c │ │ ├── output.c │ │ ├── query.c │ │ └── query.h │ ├── rtf.c │ ├── sgml.c │ ├── slist.c │ ├── type.c │ ├── var.c │ ├── warn-raw.c │ └── xref.c ├── dtdesc │ ├── FORMAT │ ├── Makefile │ ├── Makefile.aros │ ├── Makefile.sasc │ ├── Makefile.vbcc │ ├── Makefile.vbccppc │ ├── README │ ├── c_iff │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.aros │ │ ├── Makefile.sasc │ │ ├── Makefile.vbcc │ │ ├── Makefile.vbccppc │ │ ├── README │ │ ├── autodoc.pl │ │ ├── c_iff.h │ │ ├── c_iff.html │ │ ├── checkiff.c │ │ ├── closeiff.c │ │ ├── endchunk.c │ │ ├── example.c │ │ ├── filesize.c │ │ ├── fixiffsize.c │ │ ├── hot.iff │ │ ├── mmakefile.src │ │ ├── newchunk.c │ │ ├── newiff.c │ │ ├── newsubform.c │ │ ├── openiff.c │ │ ├── readchunkdata.c │ │ ├── readchunkheader.c │ │ ├── skipchunkdata.c │ │ └── writechunkdata.c │ ├── createdtdesc.c │ ├── createdtdesc.h │ ├── dtdesc.h │ ├── examinedtdesc.c │ ├── mmakefile.src │ └── parser.h ├── elf2hunk │ ├── Makefile │ ├── elf2hunk.c │ └── mmakefile.src ├── fd2inline │ ├── COPYING │ ├── LEGAL │ ├── Makefile │ ├── Makefile.cross.in │ ├── Makefile.in │ ├── Product-Info │ ├── README.os-include │ ├── README.os-lib │ ├── configure │ ├── configure.in │ ├── cross │ │ ├── bin │ │ │ └── gg-fix-includes.in │ │ └── share │ │ │ ├── geninclude.pl │ │ │ ├── ix86be-amithlon │ │ │ └── macros.h │ │ │ ├── m68k-amigaos │ │ │ ├── alib.h │ │ │ ├── macros.h │ │ │ └── strsup.h │ │ │ ├── ppc-morphos │ │ │ └── macros.h │ │ │ ├── splitasm.awk │ │ │ └── stubs.h │ ├── fd2inline.c │ ├── fd2inline.texi │ ├── include-src │ │ ├── inline │ │ │ ├── alib.h │ │ │ ├── macros.h │ │ │ ├── strsup.h │ │ │ └── stubs.h │ │ └── proto │ │ │ ├── alib.h │ │ │ ├── all.h │ │ │ ├── datatypes.h │ │ │ ├── dos.h │ │ │ ├── dospath.h │ │ │ ├── exec.h │ │ │ ├── expansion.h │ │ │ ├── graphics.h │ │ │ ├── iffparse.h │ │ │ ├── mathffp.h │ │ │ ├── mathtrans.h │ │ │ ├── muimaster.h │ │ │ ├── screennotify.h │ │ │ └── wb.h │ ├── install.sh │ ├── lib │ │ ├── Makefile.in │ │ └── splitasm.awk │ ├── makemacros.awk │ ├── makepragmas.awk │ ├── manifests │ │ ├── bin │ │ └── src │ └── patches │ │ ├── amigaguide_lib.fd.diff │ │ ├── commodities_lib.fd.diff │ │ ├── commodities_protos.h.diff │ │ └── timer.h.diff ├── fd2pragma │ ├── .gitignore │ ├── LEGAL │ ├── Makefile │ ├── fd2pragma.c │ ├── fd2pragma.guide │ └── mmakefile.src ├── flexcat │ ├── .gitignore │ ├── .tx │ │ └── config │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── LEGAL │ ├── Makefile │ ├── README │ ├── TODO │ ├── contrib │ │ ├── Storm_FlexCat │ │ │ ├── FlexCat.srx │ │ │ ├── FlexCatCatalog.srx │ │ │ └── Storm_FlexCat.readme │ │ └── cd2po │ │ │ └── cd2po.sh │ ├── dist │ │ ├── FlexCat.info │ │ └── FlexCat │ │ │ ├── Docs.info │ │ │ ├── Docs │ │ │ ├── FlexCat_english.guide │ │ │ └── FlexCat_english.guide.info │ │ │ ├── Install │ │ │ └── Install.info │ ├── doc │ │ ├── FlexCat.announce │ │ ├── FlexCat.history │ │ ├── FlexCat.readme │ │ ├── FlexCat_english.texinfo │ │ ├── FlexCat_german.texinfo │ │ ├── FlexCat_spanish.texinfo │ │ └── FlexCat_swedish.texinfo │ ├── mmakefile.src │ ├── src │ │ ├── .gitignore │ │ ├── FlexCat_cat.h │ │ ├── FlexCat_cat_other.h │ │ ├── Makefile │ │ ├── Makefile.aros │ │ ├── SDI_compiler.h │ │ ├── asprintf.c │ │ ├── createcat.c │ │ ├── createcat.h │ │ ├── createcatsrc.c │ │ ├── createcatsrc.h │ │ ├── createct.c │ │ ├── createct.h │ │ ├── flexcat.h │ │ ├── flexcat.sln │ │ ├── flexcat.vcproj │ │ ├── getft.c │ │ ├── globals.c │ │ ├── globals.h │ │ ├── include │ │ │ ├── clib │ │ │ │ └── codesets_protos.h │ │ │ ├── defines │ │ │ │ └── codesets.h │ │ │ ├── inline │ │ │ │ ├── codesets.h │ │ │ │ └── codesets_protos.h │ │ │ ├── inline4 │ │ │ │ └── codesets.h │ │ │ ├── interfaces │ │ │ │ ├── codesets.h │ │ │ │ └── codesets.i │ │ │ ├── libraries │ │ │ │ └── codesets.h │ │ │ ├── mingw32 │ │ │ │ └── iconv.h │ │ │ ├── ppcinline │ │ │ │ └── codesets.h │ │ │ ├── pragmas │ │ │ │ └── codesets_pragmas.h │ │ │ └── proto │ │ │ │ └── codesets.h │ │ ├── locale.c │ │ ├── locale │ │ │ ├── FlexCat.pot │ │ │ ├── croatian.po │ │ │ ├── czech.po │ │ │ ├── danish.po │ │ │ ├── dutch.po │ │ │ ├── finnish.po │ │ │ ├── french.po │ │ │ ├── german.po │ │ │ ├── greek.po │ │ │ ├── hungarian.po │ │ │ ├── italian.po │ │ │ ├── norwegian.po │ │ │ ├── polish.po │ │ │ ├── portuguese.po │ │ │ ├── russian.po │ │ │ ├── serbian.po │ │ │ ├── slovenian.po │ │ │ ├── spanish.po │ │ │ ├── swedish.po │ │ │ └── turkish.po │ │ ├── locale_other.c │ │ ├── main.c │ │ ├── mmakefile.src │ │ ├── openlibs.c │ │ ├── openlibs.h │ │ ├── readprefs.c │ │ ├── readprefs.h │ │ ├── scancd.c │ │ ├── scancd.h │ │ ├── scanct.c │ │ ├── scanct.h │ │ ├── scanpo.c │ │ ├── scanpo.h │ │ ├── sd │ │ │ ├── ARexx.sd │ │ │ ├── AmigaOberon.sd │ │ │ ├── AutoC_c.sd │ │ │ ├── AutoC_h.sd │ │ │ ├── AztecAs_asm.sd │ │ │ ├── AztecAs_i.sd │ │ │ ├── C++_CatalogF.cc │ │ │ ├── C++_CatalogF.h │ │ │ ├── C++_cc.sd │ │ │ ├── C++_h.sd │ │ │ ├── C_c.sd │ │ │ ├── C_c_V20.sd │ │ │ ├── C_c_V21.sd │ │ │ ├── C_c_orig.sd │ │ │ ├── C_h.sd │ │ │ ├── C_h_aros.sd │ │ │ ├── C_h_orig.sd │ │ │ ├── Cat2h.readme │ │ │ ├── Cat2h_c.sd │ │ │ ├── Cat2h_h.sd │ │ │ ├── CatComp_h.sd │ │ │ ├── E21b.sd │ │ │ ├── E30b.sd │ │ │ ├── E32e.sd │ │ │ ├── HSPascalUnit.sd │ │ │ ├── Hardcode_c.sd │ │ │ ├── Hardcode_h.sd │ │ │ ├── Modula2Def.sd │ │ │ ├── Modula2Mod.sd │ │ │ ├── NoAutoC_c.sd │ │ │ ├── NoAutoC_h.sd │ │ │ ├── Oberon-A.sd │ │ │ ├── Oberon_V38.sd │ │ │ ├── Oberon_V39.sd │ │ │ ├── RexCat.sd │ │ │ ├── RexCat.sd.readme │ │ │ ├── SASasm_a.sd │ │ │ ├── SASasm_i.sd │ │ │ └── gcccatcomp.sd │ │ ├── showfuncs.c │ │ ├── showfuncs.h │ │ ├── smakefile │ │ ├── strptime.c │ │ ├── swapfuncs.c │ │ ├── swapfuncs.h │ │ ├── translators.c │ │ ├── translators.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── vasprintf.c │ │ ├── vastubs.c │ │ └── version.h │ ├── tools │ │ ├── bumprev.sh │ │ ├── mkrelease.sh │ │ └── update_copyright.sh │ └── web │ │ └── index.html ├── genctbl │ ├── Makefile │ ├── genctbl.c │ └── mmakefile.src ├── genmf │ ├── Makefile │ ├── genmf.c │ ├── genmf.py │ ├── in.test │ ├── mmakefile.src │ └── tmpl.test ├── genmodule │ ├── Makefile │ ├── Makefile.deps │ ├── boopsisupport.c │ ├── boopsisupport.h │ ├── config.c │ ├── config.h │ ├── dtsupport.c │ ├── dtsupport.h │ ├── fileread.c │ ├── fileread.h │ ├── functionhead.c │ ├── functionhead.h │ ├── genmodule.c │ ├── genmodule.h │ ├── muisupport.c │ ├── muisupport.h │ ├── oopsupport.c │ ├── oopsupport.h │ ├── stringlist.c │ ├── stringlist.h │ ├── writeautoinit.c │ ├── writeend.c │ ├── writefd.c │ ├── writefunclist.c │ ├── writegetlibbase.c │ ├── writeincclib.c │ ├── writeincdefines.c │ ├── writeincinline.c │ ├── writeincinterfaces.c │ ├── writeinclibdefs.c │ ├── writeincproto.c │ ├── writelinkentries.c │ ├── writemakefile.c │ ├── writeskel.c │ ├── writestart.c │ ├── writestubs.c │ ├── writethunk.c │ └── writeutils.c ├── hiddtool │ ├── Makefile │ ├── hidd.conf │ ├── hidds.dep │ └── hiddtool.c ├── icu4c │ ├── .gitignore │ ├── icu4c-60_2-src-aros.diff │ ├── icu4c-61_1-src-aros.diff │ └── mmakefile.src ├── ilbmtoc │ ├── Makefile │ ├── ilbmtoc.c │ └── mmakefile.src ├── ilbmtoicon │ ├── Makefile │ ├── README │ ├── ilbmtoicon.c │ ├── infoinfo.c │ └── mmakefile.src ├── mkamikeymap │ ├── .gitignore │ ├── config.c │ ├── config.h │ ├── debug.h │ ├── mkamikeymap.c │ ├── mkamikeymap.h │ ├── mmakefile.src │ ├── parsedescriptor.c │ ├── template.akmd │ └── writekeymap.c ├── mkfsaffs │ ├── LEGAL │ ├── Makefile │ └── mkfsaffs.c ├── package │ ├── FORMAT │ └── pkg ├── parseoffsets │ ├── Makefile │ ├── Makefile.deps │ ├── header.c │ ├── header.h │ ├── main.c │ ├── parsendkoffsets.c │ └── parsendkoffsets.h ├── sdk │ ├── AROS-SDK-Install │ ├── mmakefile.src │ └── scripts │ │ ├── aros-gcc.in │ │ ├── aros-ld.in │ │ ├── aros-strip.in │ │ └── specs.in ├── setrev │ ├── .gitignore │ ├── LEGAL │ ├── Makefile │ ├── mmakefile.src │ ├── setrev.c │ └── setrev.readme ├── sfdc │ ├── CLib.pl │ ├── COPYING │ ├── Dump.pl │ ├── FD.pl │ ├── FuncTable.pl │ ├── Gate.pl │ ├── Gate68k.pl │ ├── GateAOS4.pl │ ├── GateAROS.pl │ ├── GateAmithlon.pl │ ├── GateMOS.pl │ ├── LEGAL │ ├── LVO.pl │ ├── Macro.pl │ ├── Macro68k.pl │ ├── MacroAOS4.pl │ ├── MacroAROS.pl │ ├── MacroLP.pl │ ├── MacroMOS.pl │ ├── Makefile │ ├── Makefile.in │ ├── Proto.pl │ ├── SASPragmas.pl │ ├── SDI.pl │ ├── SDIAROS.pl │ ├── SFDCompile.pod │ ├── Stub.pl │ ├── Stub68k.pl │ ├── StubAROS.pl │ ├── StubAmithlon.pl │ ├── StubMOS.pl │ ├── Verify.pl │ ├── configure │ ├── configure.in │ ├── gg-sfdc.spec │ ├── gg-sfdc.spec.in │ ├── install-sh │ ├── main.pl │ ├── sfdc.readme │ └── sfdc.readme.in ├── tpl.c ├── vgpostprocess.py └── zopfli │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── COPYING │ ├── Makefile │ ├── README │ ├── README.zopflipng │ ├── blocksplitter.c │ ├── blocksplitter.h │ ├── cache.c │ ├── cache.h │ ├── deflate.c │ ├── deflate.h │ ├── gzip_container.c │ ├── gzip_container.h │ ├── hash.c │ ├── hash.h │ ├── katajainen.c │ ├── katajainen.h │ ├── lz77.c │ ├── lz77.h │ ├── mmakefile.src │ ├── squeeze.c │ ├── squeeze.h │ ├── symbols.h │ ├── tree.c │ ├── tree.h │ ├── util.c │ ├── util.h │ ├── zlib_container.c │ ├── zlib_container.h │ ├── zopfli.h │ ├── zopfli_bin.c │ └── zopfli_lib.c └── workbench ├── .backdrop ├── c ├── AROSMonDrvs.c ├── AddBuffers.c ├── AddDataTypes.c ├── Assign.c ├── Automount.c ├── Avail.c ├── Beep.c ├── BindDrivers.c ├── Break.c ├── CPUInfo │ ├── cpuinfo.h │ ├── main.c │ ├── mmakefile.src │ ├── x86.c │ ├── x86.h │ ├── x86_AMD.c │ ├── x86_Cyrix.c │ ├── x86_IDT.c │ ├── x86_Intel.c │ ├── x86_NatSemi.c │ └── x86_RiSE.c ├── ChangeTaskPri.c ├── CheckMem.c ├── ConClip.c ├── Copy.c ├── CopyToPAR.c ├── Date.c ├── Debug.c ├── Decoration │ ├── config.c │ ├── config.h │ ├── decoration.c │ ├── drawfuncs.c │ ├── drawfuncs.h │ ├── menudecorclass.c │ ├── menudecorclass.h │ ├── mmakefile.src │ ├── newimage.h │ ├── newimagefuncs.c │ ├── screendecorclass.c │ ├── screendecorclass.h │ ├── windowdecorclass.c │ └── windowdecorclass.h ├── Delete.c ├── DevList.c ├── Dir.c ├── DiskChange.c ├── Eject.c ├── Eval.c ├── Filenote.c ├── GfxControl.c ├── HDTool │ ├── deviceio.c │ ├── deviceio.h │ ├── install.c │ ├── install.h │ ├── list.c │ ├── list.h │ ├── main.c │ ├── mmakefile.src │ ├── setup.c │ └── setup.h ├── IconX.c ├── Identify │ ├── main.c │ └── mmakefile.src ├── Info.c ├── Install.c ├── Join.c ├── LeakWatch.c ├── LibList.c ├── List.c ├── Load.c ├── LoadResource │ ├── locale.c │ ├── locale.h │ ├── main.c │ └── mmakefile.src ├── LoadWB.c ├── Lock.c ├── Logger.c ├── Logger.h ├── MakeDir.c ├── MakeLink.c ├── Mount.c ├── Partition │ ├── args.c │ ├── args.h │ ├── main.c │ └── mmakefile.src ├── Play.c ├── Print.c ├── Protect.c ├── R │ ├── .gitignore │ ├── gui.c │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── mmakefile.src │ └── r.h ├── Reboot.c ├── Relabel.c ├── Rename.c ├── RequestChoice.c ├── RequestFile.c ├── RequestString.c ├── ResList.c ├── Search.c ├── SetClock.c ├── SetDate.c ├── SetDefaultFont.c ├── SetKeyboard.c ├── SetLocale.c ├── SetPSM.c ├── Shell │ ├── Shell.c │ ├── Shell.h │ ├── buffer.c │ ├── buffer.h │ ├── cliEcho.c │ ├── cliLen.c │ ├── cliNan.c │ ├── cliPrompt.c │ ├── cliVarNum.c │ ├── convertArg.c │ ├── convertBackTicks.c │ ├── convertLine.c │ ├── convertLineDot.c │ ├── convertRedir.c │ ├── convertVar.c │ ├── interpreter.c │ ├── mmakefile.src │ ├── readLine.c │ ├── redirection.c │ ├── shell.conf │ ├── shell_init.c │ └── state.h ├── Shutdown.c ├── Sort.c ├── StackSnoop.c ├── SymbolDump.c ├── TaskList.c ├── Touch.c ├── Type.c ├── UUIDGen.c ├── Unpack │ ├── bzip2.c │ ├── bzip2.h │ ├── bzip2_private.h │ ├── file.c │ ├── file.h │ ├── gui.c │ ├── gui.h │ ├── mmakefile.src │ ├── modes.h │ ├── package.c │ ├── package.h │ ├── support.c │ ├── support.h │ └── unpack.c ├── Version.c ├── WBRun │ ├── .gitignore │ ├── main.c │ └── mmakefile.src ├── Wait.c ├── WaitForPort.c ├── WaitX.c ├── Which.c ├── evalParser.y ├── iprefs │ ├── fontprefs.c │ ├── global.h │ ├── icontrolprefs.c │ ├── inputprefs.c │ ├── localeprefs.c │ ├── main.c │ ├── misc.c │ ├── mmakefile.src │ ├── paletteprefs.c │ ├── patches.c │ ├── pointerprefs.c │ ├── printerprefs.c │ ├── screenmodeprefs.c │ ├── serialprefs.c │ ├── trackdiskprefs.c │ ├── trackdiskprefs.h │ ├── vars.c │ ├── vars.h │ ├── version.h │ └── wbpatternprefs.c ├── makefile ├── mmakefile.src └── shellcommands │ ├── Alias.c │ ├── Ask.c │ ├── CD.c │ ├── Clip.c │ ├── Cut.c │ ├── Echo.c │ ├── Else.c │ ├── EndCLI.c │ ├── EndIf.c │ ├── EndShell.c │ ├── EndSkip.c │ ├── Execute.c │ ├── FailAt.c │ ├── Fault.c │ ├── Get.c │ ├── Getenv.c │ ├── If.c │ ├── Lab.c │ ├── NewCLI.c │ ├── NewShell.c │ ├── Path.c │ ├── PathPart.c │ ├── Pipe.c │ ├── Prompt.c │ ├── Quit.c │ ├── Resident.c │ ├── Run.c │ ├── Set.c │ ├── Setenv.c │ ├── Skip.c │ ├── Stack.c │ ├── Status.c │ ├── Unalias.c │ ├── Unset.c │ ├── Unsetenv.c │ ├── Why.c │ ├── dos_commanderrors.h │ ├── mmakefile.src │ ├── shellcommands.conf │ ├── shellcommands_init.c │ └── shellcommands_intern.h ├── classes ├── datatypes │ ├── 8svx │ │ ├── 8svx.conf │ │ ├── 8svxclass.c │ │ ├── compilerspecific.h │ │ ├── debug.h │ │ ├── methods.h │ │ └── mmakefile.src │ ├── amigaguide │ │ ├── Makefile │ │ ├── amigaguide.conf │ │ ├── amigaguide.rev │ │ ├── amigaguide_dtc.doc │ │ ├── amigaguide_rev.h │ │ ├── amigaguideclass.c │ │ ├── classbase.c │ │ ├── classbase.h │ │ ├── classdata.h │ │ ├── compiler.h │ │ ├── file.c │ │ ├── include │ │ │ └── debug.h │ │ ├── mmakefile.src │ │ ├── navigator.c │ │ ├── navigator.h │ │ ├── nodeclass.c │ │ ├── process.c │ │ ├── project │ │ └── util.c │ ├── animation │ │ ├── .gitignore │ │ ├── animation.conf │ │ ├── animationbuffer.c │ │ ├── animationclass.c │ │ ├── animationclass.h │ │ ├── animationframe.c │ │ ├── animationplayback.c │ │ ├── animationprefs.c │ │ ├── animationsave.c │ │ └── mmakefile.src │ ├── ascii │ │ ├── ascii.conf │ │ ├── ascii_intern.h │ │ ├── asciiclass.c │ │ └── mmakefile.src │ ├── binary │ │ ├── binary.conf │ │ ├── binary_intern.h │ │ ├── binaryclass.c │ │ ├── compilerspecific.h │ │ ├── debug.h │ │ ├── libfunc.c │ │ ├── mmakefile.src │ │ └── smakefile │ ├── bmp │ │ ├── bmp.conf │ │ ├── bmpclass.c │ │ ├── debug.h │ │ ├── methods.h │ │ └── mmakefile.src │ ├── degas │ │ ├── LEGAL │ │ ├── aros_datatype.c │ │ ├── checker.c │ │ ├── datatype.c │ │ ├── datatype.h │ │ ├── datatype_protos.h │ │ ├── degas.c │ │ ├── degas_protos.h │ │ ├── initializers.h │ │ ├── mmakefile.src │ │ └── startup.c │ ├── font │ │ ├── classbase.h │ │ ├── font.conf │ │ ├── fontclass.c │ │ ├── mmakefile.src │ │ ├── otag.c │ │ ├── otag.h │ │ ├── prefs.c │ │ └── prefs.h │ ├── gemimage │ │ ├── LEGAL │ │ ├── aros_datatype.c │ │ ├── datatype.c │ │ ├── datatype.h │ │ ├── datatype_protos.h │ │ ├── endian.h │ │ ├── gemimage.c │ │ ├── gemimage_protos.h │ │ ├── initializers.h │ │ ├── mmakefile.src │ │ └── startup.c │ ├── gif │ │ ├── codec.c │ │ ├── codec.h │ │ ├── codeclzw.c │ │ ├── debug.h │ │ ├── gif.conf │ │ ├── gifclass.c │ │ ├── gifclass.h │ │ ├── methods.h │ │ ├── mmakefile.src │ │ └── readme.txt │ ├── heic │ │ ├── heic.conf │ │ ├── heicclass.c │ │ ├── heicdummy.cc │ │ ├── libaom-3.12.1-aros.diff │ │ ├── mmakefile.src │ │ └── v1.19.8-aros.diff │ ├── html │ │ ├── Makefile │ │ ├── common.h │ │ ├── html.conf │ │ ├── htmlclass.c │ │ ├── htmlclass.h │ │ ├── layout.c │ │ ├── layout.h │ │ ├── main.c │ │ ├── main.h │ │ ├── mmakefile.src │ │ ├── parse.c │ │ ├── parse.h │ │ ├── readme.txt │ │ ├── tables.c │ │ └── tables.h │ ├── ilbm │ │ ├── compilerspecific.h │ │ ├── debug.h │ │ ├── ilbm.conf │ │ ├── ilbmclass.c │ │ ├── libfunc.c │ │ ├── methods.h │ │ ├── mmakefile.src │ │ └── smakefile │ ├── jpeg │ │ ├── debug.h │ │ ├── jpeg.conf │ │ ├── jpeg.readme │ │ ├── jpegclass.c │ │ ├── memory.c │ │ ├── methods.h │ │ ├── mmakefile.src │ │ └── stubs.c │ ├── mmakefile │ ├── picture │ │ ├── README │ │ ├── TODO │ │ ├── colorhandling.c │ │ ├── colorhandling.h │ │ ├── colormap.pl │ │ ├── compilerspecific.h │ │ ├── debug.h │ │ ├── libfunc.c │ │ ├── methods.h │ │ ├── mmakefile.src │ │ ├── picture.conf │ │ ├── pictureclass.c │ │ ├── pictureclass.h │ │ ├── prefs.c │ │ ├── prefs.h │ │ ├── smakefile │ │ ├── support.c │ │ └── support.h │ ├── png │ │ ├── debug.h │ │ ├── directaccess.c │ │ ├── memory.c │ │ ├── methods.h │ │ ├── mmakefile.src │ │ ├── png.conf │ │ └── pngclass.c │ ├── pnm │ │ ├── debug.h │ │ ├── methods.h │ │ ├── mmakefile.src │ │ ├── pnm.conf │ │ └── pnmclass.c │ ├── sound │ │ ├── BoopsiStubs.h │ │ ├── CompilerSpecific.h │ │ ├── Debug.h │ │ ├── LICENSE │ │ ├── SoundDT41src.readme │ │ ├── aiff.h │ │ ├── classbase.h │ │ ├── dispatch.c │ │ ├── library.c │ │ ├── makefile │ │ ├── mmakefile.src │ │ ├── obtainengine.c │ │ ├── sound.conf │ │ └── sound_init.c │ ├── text │ │ ├── ReadMe │ │ ├── agextension.c │ │ ├── agextension.h │ │ ├── compilerspecific.h │ │ ├── debug.h │ │ ├── ftxt_descriptor_VERSION.h │ │ ├── getsearchstring.h │ │ ├── initstruct.h │ │ ├── libfunc.c │ │ ├── main.c │ │ ├── mmakefile.src │ │ ├── obtainengine.c │ │ ├── smakefile │ │ ├── support.c │ │ ├── support.h │ │ ├── text.conf │ │ ├── text.datatype_VERSION.h │ │ ├── text_init.c │ │ ├── text_intern.h │ │ ├── textclass.c │ │ └── textclass.h │ ├── tiff │ │ ├── debug.h │ │ ├── methods.h │ │ ├── mmakefile.src │ │ ├── tiff.conf │ │ └── tiffclass.c │ ├── wav │ │ ├── Changelog │ │ ├── Changelog.info │ │ ├── Makefile │ │ ├── Makefile.gcc │ │ ├── WAVE │ │ ├── WAVE.dt │ │ ├── WAVE.info │ │ ├── bitpack.c │ │ ├── bitpack_lsb.c │ │ ├── bitpack_msb.c │ │ ├── decoders.c │ │ ├── g72x │ │ │ ├── README │ │ │ ├── g721.c │ │ │ ├── g723_16.c │ │ │ ├── g723_24.c │ │ │ ├── g723_40.c │ │ │ ├── g72x.c │ │ │ └── g72x.h │ │ ├── gsm │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── Makefile.gcc │ │ │ ├── Makefile.in │ │ │ ├── add.c │ │ │ ├── code.c │ │ │ ├── decode.c │ │ │ ├── gsm.3 │ │ │ ├── gsm.h │ │ │ ├── gsm_create.c │ │ │ ├── gsm_decode.c │ │ │ ├── gsm_destroy.c │ │ │ ├── gsm_encode.c │ │ │ ├── gsm_option.3 │ │ │ ├── gsm_option.c │ │ │ ├── long_term.c │ │ │ ├── lpc.c │ │ │ ├── mmakefile.src │ │ │ ├── preprocess.c │ │ │ ├── private.h │ │ │ ├── rpe.c │ │ │ ├── short_term.c │ │ │ └── table.c │ │ ├── include │ │ │ ├── bitpack.h │ │ │ ├── compile_endian_test │ │ │ ├── decoders.h │ │ │ ├── endian.h │ │ │ ├── endian_test.c │ │ │ ├── riff-wave.h │ │ │ ├── wave_alaw.h │ │ │ ├── wave_class.h │ │ │ ├── wave_formats.h │ │ │ ├── wave_formats_be.h │ │ │ ├── wave_formats_le.h │ │ │ ├── wave_g72x.h │ │ │ ├── wave_gsm610.h │ │ │ ├── wave_ieee_float.h │ │ │ ├── wave_ima_adpcm.h │ │ │ ├── wave_mpeg.h │ │ │ ├── wave_ms_adpcm.h │ │ │ └── wave_pcm.h │ │ ├── init.c │ │ ├── mmakefile.src │ │ ├── wave.conf │ │ ├── wave.datatype_rev.h │ │ ├── wave.datatype_rev.i │ │ ├── wave.datatype_rev.rev │ │ ├── wave.datatype_rev.s │ │ ├── wave_alaw.c │ │ ├── wave_class.c │ │ ├── wave_dt.readme │ │ ├── wave_dt.readme.info │ │ ├── wave_g72x.c │ │ ├── wave_gsm610.c │ │ ├── wave_ieee_float.c │ │ ├── wave_ima_adpcm.c │ │ ├── wave_mpeg.c │ │ ├── wave_ms_adpcm.c │ │ └── wave_pcm.c │ └── webp │ │ ├── .gitignore │ │ ├── config.h │ │ ├── mmakefile.src │ │ ├── webp.conf │ │ └── webpclass.c ├── gadgets │ ├── arosmutualexclude │ │ ├── arosmutualexclude.conf │ │ ├── arosmutualexclude_intern.h │ │ ├── mmakefile.src │ │ ├── mxclass.c │ │ └── support.c │ ├── colorwheel │ │ ├── BoopsiStubs.h │ │ ├── CompilerSpecific.h │ │ ├── Debug.h │ │ ├── bmbmrp.c │ │ ├── bmbmrp.h │ │ ├── colorwheel.conf │ │ ├── colorwheel_intern.h │ │ ├── colorwheelclass.c │ │ ├── converthsbtorgb.c │ │ ├── convertrgbtohsb.c │ │ ├── fixmath.h │ │ ├── fixmathtrans.c │ │ ├── library.c │ │ ├── makefile │ │ ├── mmakefile.src │ │ └── support.c │ ├── gradientslider │ │ ├── BoopsiStubs.h │ │ ├── CompilerSpecific.h │ │ ├── Debug.h │ │ ├── gradientslider.conf │ │ ├── gradientslider_intern.h │ │ ├── gradientsliderclass.c │ │ ├── integer.s │ │ ├── library.c │ │ ├── makefile │ │ ├── mmakefile.src │ │ └── support.c │ ├── initstruct.h │ ├── mmakefile │ └── tapedeck │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── tapedeck.conf │ │ ├── tapedeck_intern.h │ │ └── tapedeckclass.c ├── mmakefile └── zune │ ├── aboutbox │ ├── Aboutbox.c │ ├── Aboutbox.conf │ ├── Aboutbox_mcc.h │ ├── Aboutbox_private.h │ ├── MCC_Aboutbox.doc │ └── mmakefile.src │ ├── aboutwindow │ ├── LEGAL │ ├── aboutwindow.c │ ├── aboutwindow.conf │ ├── aboutwindow.h │ ├── aboutwindow_private.h │ └── mmakefile.src │ ├── betterstring │ ├── .tx │ │ └── config │ ├── COPYING │ ├── ChangeLog │ ├── Makefile │ ├── README.md │ ├── dist │ │ ├── MCC_BetterString.info │ │ └── MCC_BetterString │ │ │ ├── COPYING.info │ │ │ ├── ChangeLog.info │ │ │ ├── Install-MCC │ │ │ ├── Install-MCC.info │ │ │ ├── ReadMe.info │ │ │ ├── ReadMe.mui │ │ │ └── ReadMe.mui.info │ ├── doc │ │ ├── MCC_BetterString.doc │ │ ├── MCC_BetterString.readme │ │ └── MCC_HotkeyString.doc │ ├── include │ │ ├── SDI_compiler.h │ │ ├── SDI_hook.h │ │ ├── SDI_lib.h │ │ ├── SDI_stdarg.h │ │ ├── amiga-align.h │ │ ├── clib │ │ │ ├── mccclass_protos.h │ │ │ └── muimaster_protos.h │ │ ├── default-align.h │ │ ├── defines │ │ │ └── mccclass.h │ │ ├── fd │ │ │ ├── mccclass_lib.fd │ │ │ └── muimaster_lib.fd │ │ ├── inline │ │ │ ├── mccclass.h │ │ │ ├── muimaster.h │ │ │ └── muimaster_protos.h │ │ ├── inline4 │ │ │ ├── mccclass.h │ │ │ └── muimaster.h │ │ ├── interfaces │ │ │ ├── mccclass.h │ │ │ ├── mccclass.i │ │ │ └── muimaster.h │ │ ├── libraries │ │ │ └── mui.h │ │ ├── mcc_common.h │ │ ├── mccclass_68k.c │ │ ├── mccinit.c │ │ ├── mui │ │ │ ├── BetterString_mcc.h │ │ │ ├── HotkeyString_mcc.h │ │ │ └── NBitmap_mcc.h │ │ ├── muiextra.h │ │ ├── newmouse.h │ │ ├── ppcinline │ │ │ └── muimaster.h │ │ ├── pragmas │ │ │ ├── mccclass_pragmas.h │ │ │ └── muimaster_pragmas.h │ │ ├── proto │ │ │ ├── mccclass.h │ │ │ └── muimaster.h │ │ ├── sfd │ │ │ ├── mccclass_lib.sfd │ │ │ └── muimaster_lib.sfd │ │ ├── shellstart.c │ │ └── xml │ │ │ ├── mccclass.xml │ │ │ └── muimaster.xml │ ├── mcc │ │ ├── AllocBitMap.c │ │ ├── AllocFunctions.c │ │ ├── BetterString-Test.c │ │ ├── ClipboardServer.c │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Dispatcher.c │ │ ├── FileNameCompl.c │ │ ├── GetSetAttrs.c │ │ ├── HandleInput.c │ │ ├── InitConfig.c │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Pointer.c │ │ ├── PrintString.c │ │ ├── hotkeystring │ │ │ ├── Debug.c │ │ │ ├── Debug.h │ │ │ ├── Dispatcher.c │ │ │ ├── HandleInput.c │ │ │ ├── HotkeyString-Test.c │ │ │ ├── Makefile │ │ │ ├── Makefile.dep │ │ │ ├── library.c │ │ │ ├── mmakefile.src │ │ │ ├── private.h │ │ │ ├── vastubs.c │ │ │ └── version.h │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── mcp │ │ ├── BetterString_mcp.h │ │ ├── C_c.sd │ │ ├── C_h.sd │ │ ├── CreatePrefsGroup.c │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Dispatcher.c │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Preference.c │ │ ├── icon.c │ │ ├── icon.h │ │ ├── images │ │ │ ├── icon32.png │ │ │ └── icon8.iff │ │ ├── library.c │ │ ├── locale │ │ │ ├── BetterString_mcp.pot │ │ │ ├── czech.po │ │ │ ├── danish.po │ │ │ ├── dutch.po │ │ │ ├── finnish.po │ │ │ ├── french.po │ │ │ ├── german.po │ │ │ ├── greek.po │ │ │ ├── italian.po │ │ │ ├── polish.po │ │ │ ├── russian.po │ │ │ ├── slovak.po │ │ │ ├── spanish.po │ │ │ ├── swedish.po │ │ │ └── turkish.po │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── mmakefile.src │ └── tools │ │ ├── bumprev.sh │ │ ├── mkrelease.sh │ │ └── update_copyright.sh │ ├── busy │ ├── Busy_mcc.h │ ├── busy.c │ ├── busy.conf │ ├── busy_private.h │ └── mmakefile.src │ ├── calendar │ ├── calendar.c │ ├── calendar.conf │ ├── calendar.h │ ├── calendar_init.c │ ├── calendar_private.h │ └── mmakefile.src │ ├── calltips │ ├── .gitignore │ ├── Calltips.c │ ├── Calltips.conf │ ├── Calltips_mcc.h │ ├── Calltips_private.h │ └── mmakefile.src │ ├── clock │ ├── clock.c │ ├── clock.conf │ ├── clock.h │ ├── clock_init.c │ ├── clock_private.h │ └── mmakefile.src │ ├── graph │ ├── .gitignore │ ├── graph.c │ ├── graph.conf │ ├── graph.h │ ├── graph_init.c │ ├── graph_intern.h │ └── mmakefile.src │ ├── iconimage │ ├── LEGAL │ ├── iconimage.c │ ├── iconimage.conf │ ├── iconimage.h │ ├── iconimage_private.h │ └── mmakefile.src │ ├── lamp │ ├── Lamp_mcc.h │ ├── lamp.c │ ├── lamp.conf │ ├── lamp_private.h │ └── mmakefile.src │ ├── listtree │ ├── Listtree_mcc.h │ ├── listtree.c │ ├── listtree.conf │ ├── listtree_private.h │ ├── mmakefile.src │ ├── support.c │ └── support.h │ ├── loginwindow │ ├── loginwindow.c │ ├── loginwindow.conf │ ├── loginwindow.h │ ├── loginwindow_private.h │ ├── mmakefile.src │ └── strings.h │ ├── mmakefile │ ├── nlist │ ├── .tx │ │ └── config │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── LEGAL │ ├── Makefile │ ├── README │ ├── TODO │ ├── demo │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── NBitmap-Demo.c │ │ ├── NList-Demo.c │ │ ├── NList-Demo2.c │ │ ├── NList-Demo2.h │ │ ├── NList-Demo3.c │ │ ├── NList-Demo3.h │ │ ├── NListtree-Demo.c │ │ ├── mmakefile.src │ │ └── vastubs.c │ ├── dist │ │ ├── MCC_NList.info │ │ └── MCC_NList │ │ │ ├── AUTHORS.info │ │ │ ├── COPYING.info │ │ │ ├── ChangeLog.info │ │ │ ├── Demos.info │ │ │ ├── Install-MCC │ │ │ ├── Install-MCC.info │ │ │ ├── ReadMe.info │ │ │ ├── ReadMe.mui │ │ │ └── ReadMe.mui.info │ ├── docs │ │ ├── MCC_NBalance.doc │ │ ├── MCC_NFloattext.doc │ │ ├── MCC_NList.doc │ │ ├── MCC_NListtree.doc │ │ ├── MCC_NListview.doc │ │ ├── NList_mcc.doc │ │ └── ReadMe │ ├── include │ │ ├── SDI_compiler.h │ │ ├── SDI_hook.h │ │ ├── SDI_lib.h │ │ ├── SDI_stdarg.h │ │ ├── amiga-align.h │ │ ├── clib │ │ │ ├── mccclass_protos.h │ │ │ └── muimaster_protos.h │ │ ├── default-align.h │ │ ├── defines │ │ │ └── mccclass.h │ │ ├── inline │ │ │ ├── mccclass.h │ │ │ ├── muimaster.h │ │ │ └── muimaster_protos.h │ │ ├── inline4 │ │ │ ├── mccclass.h │ │ │ └── muimaster.h │ │ ├── interfaces │ │ │ ├── mccclass.h │ │ │ ├── mccclass.i │ │ │ └── muimaster.h │ │ ├── libraries │ │ │ ├── mui.h │ │ │ └── muiaros.h │ │ ├── mcc_common.h │ │ ├── mccclass_68k.c │ │ ├── mccinit.c │ │ ├── mui │ │ │ ├── Busy_mcc.h │ │ │ ├── HotkeyString_mcc.h │ │ │ ├── NBalance_mcc.h │ │ │ ├── NBitmap_mcc.h │ │ │ ├── NFloattext_mcc.h │ │ │ ├── NList_mcc.h │ │ │ ├── NListtree_mcc.h │ │ │ └── NListview_mcc.h │ │ ├── muiextra.h │ │ ├── newmouse.h │ │ ├── proto │ │ │ ├── mccclass.h │ │ │ └── muimaster.h │ │ ├── shellstart.c │ │ └── timeval.h │ ├── mmakefile │ ├── nbalance_mcc │ │ ├── .gitignore │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Dispatcher.c │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NBalance-Test.c │ │ ├── NBalance.c │ │ ├── NBalance.h │ │ ├── Pointer.c │ │ ├── Pointer.h │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── nbitmap_mcc │ │ ├── .gitignore │ │ ├── Chunky2Bitmap.c │ │ ├── Chunky2Bitmap.h │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── DitherImage.c │ │ ├── DitherImage.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NBitmap-Test.c │ │ ├── NBitmap.c │ │ ├── NBitmap.h │ │ ├── SetPatch.c │ │ ├── SetPatch.h │ │ ├── WritePixelArray.c │ │ ├── WritePixelArrayAlpha.c │ │ ├── dispatcher.c │ │ ├── icon.png │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── nfloattext_mcc │ │ ├── .gitignore │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NFloattext.c │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── private.h │ │ └── version.h │ ├── nlist_mcc │ │ ├── .gitignore │ │ ├── ClipboardServer.c │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NList-Test.c │ │ ├── NList.bh │ │ ├── NList_func.c │ │ ├── NList_func.h │ │ ├── NList_func2.c │ │ ├── NList_func3.c │ │ ├── NList_func4.c │ │ ├── NList_grp.c │ │ ├── NList_grp.h │ │ ├── NList_img.c │ │ ├── NList_img.h │ │ ├── NList_img2.c │ │ ├── NList_img2.h │ │ ├── NList_mcc.c │ │ ├── NList_mcc0.c │ │ ├── NList_mcc1.c │ │ ├── NList_mcc2.c │ │ ├── NList_mcc3.c │ │ ├── NList_mcc4.c │ │ ├── NList_mcc5.c │ │ ├── NList_mcc6.c │ │ ├── Pointer.c │ │ ├── Pointer.h │ │ ├── extrasrc │ │ │ ├── AllocVecPooled.c │ │ │ └── FreeVecPooled.c │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── move.c │ │ ├── private.h │ │ ├── protos.h │ │ ├── vastubs.c │ │ └── version.h │ ├── nlisttree_mcc │ │ ├── .gitignore │ │ ├── ClipboardServer.c │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NListtree.c │ │ ├── NListtree.h │ │ ├── QuickSort.c │ │ ├── images │ │ │ ├── ClosedNode │ │ │ │ ├── ClosedNode.c │ │ │ │ ├── ClosedNode.image │ │ │ │ ├── ClosedNode.image.info │ │ │ │ ├── ClosedNode_rev.h │ │ │ │ ├── SCOPTIONS │ │ │ │ ├── SCOPTIONS.in │ │ │ │ └── SMakefile │ │ │ ├── ClosedNodeWin98 │ │ │ │ ├── ClosedNodeWin98.c │ │ │ │ ├── ClosedNodeWin98.image │ │ │ │ ├── ClosedNodeWin98.image.info │ │ │ │ ├── ClosedNodeWin98_rev.h │ │ │ │ ├── SCOPTIONS │ │ │ │ ├── SCOPTIONS.in │ │ │ │ └── SMakefile │ │ │ ├── OpenNode │ │ │ │ ├── OpenNode.c │ │ │ │ ├── OpenNode.image │ │ │ │ ├── OpenNode.image.info │ │ │ │ ├── OpenNode_rev.h │ │ │ │ ├── SCOPTIONS │ │ │ │ ├── SCOPTIONS.in │ │ │ │ └── SMakefile │ │ │ ├── OpenNodeWin98 │ │ │ │ ├── OpenNodeWin98.c │ │ │ │ ├── OpenNodeWin98.image │ │ │ │ ├── OpenNodeWin98.image.info │ │ │ │ ├── OpenNodeWin98_rev.h │ │ │ │ ├── SCOPTIONS │ │ │ │ ├── SCOPTIONS.in │ │ │ │ └── SMakefile │ │ │ ├── Samples │ │ │ │ ├── AllImages.ilbm │ │ │ │ ├── Grab_NListtree182.iff │ │ │ │ └── glowbsp.iff │ │ │ └── aphaso │ │ │ │ ├── ClosedBall.ilbm │ │ │ │ ├── ClosedDrawerWin98.ilbm │ │ │ │ ├── GlowDrawerClosed.ilbm │ │ │ │ ├── GlowDrawerOpen.ilbm │ │ │ │ ├── OpenBall.ilbm │ │ │ │ └── OpenDrawerWin98.ilbm │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── nlisttree_mcp │ │ ├── .gitignore │ │ ├── C_c.sd │ │ ├── C_h.sd │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NListtree-Prefs.c │ │ ├── NListtree.c │ │ ├── icon.c │ │ ├── icon.h │ │ ├── images │ │ │ ├── icon32.png │ │ │ └── icon8.iff │ │ ├── library.c │ │ ├── locale │ │ │ ├── NListtree_mcp.pot │ │ │ ├── czech.po │ │ │ ├── danish.po │ │ │ ├── english-british.po │ │ │ ├── french.po │ │ │ ├── german.po │ │ │ ├── greek.po │ │ │ ├── italian.po │ │ │ ├── polish.po │ │ │ ├── russian.po │ │ │ ├── swedish.po │ │ │ └── turkish.po │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── nlistview_mcc │ │ ├── .gitignore │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NListview.c │ │ ├── library.c │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ ├── nlistviews_mcp │ │ ├── .gitignore │ │ ├── C_c.sd │ │ ├── C_h.sd │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── NListviews-Prefs.c │ │ ├── NListviews.c │ │ ├── NListviews_mcp.h │ │ ├── icon.c │ │ ├── icon.h │ │ ├── images │ │ │ └── icon32.png │ │ ├── library.c │ │ ├── locale │ │ │ ├── NListviews_mcp.pot │ │ │ ├── czech.po │ │ │ ├── danish.po │ │ │ ├── english-british.po │ │ │ ├── french.po │ │ │ ├── german.po │ │ │ ├── greek.po │ │ │ ├── italian.po │ │ │ ├── polish.po │ │ │ ├── russian.po │ │ │ ├── swedish.po │ │ │ └── turkish.po │ │ ├── mmakefile.src │ │ ├── private.h │ │ ├── vastubs.c │ │ └── version.h │ └── tools │ │ ├── bumprev.sh │ │ ├── mkrelease.sh │ │ └── update_copyright.sh │ ├── prefseditor │ ├── LEGAL │ ├── mmakefile.src │ ├── prefseditor.c │ ├── prefseditor.conf │ ├── prefseditor.h │ ├── prefseditor_private.h │ ├── support.c │ └── support.h │ ├── prefswindow │ ├── LEGAL │ ├── mmakefile.src │ ├── prefswindow.c │ ├── prefswindow.conf │ ├── prefswindow.h │ └── prefswindow_private.h │ ├── rawimage │ ├── MCC_Rawimage.doc │ ├── Rawimage.c │ ├── Rawimage.conf │ ├── Rawimage_mcc.h │ ├── Rawimage_private.h │ └── mmakefile.src │ ├── systemprefswindow │ ├── LEGAL │ ├── mmakefile.src │ ├── systemprefswindow.c │ ├── systemprefswindow.conf │ ├── systemprefswindow.h │ └── systemprefswindow_private.h │ └── texteditor │ ├── .tx │ └── config │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── LEGAL │ ├── Makefile │ ├── README │ ├── TODO │ ├── demo │ ├── Makefile │ ├── TextEditor-Demo-Toolbar.c │ ├── TextEditor-Demo.c │ ├── Toolstrip.ilbm │ ├── Toolstrip_G.ilbm │ ├── mmakefile.src │ ├── rexx │ │ ├── CountWords.TEd │ │ ├── ImageDimensions.TEd │ │ ├── MakeFormalLetter.TEd │ │ └── Reformat.Rexx │ └── vastubs.c │ ├── dist │ ├── MCC_TextEditor.info │ └── MCC_TextEditor │ │ ├── AUTHORS.info │ │ ├── COPYING.info │ │ ├── ChangeLog.info │ │ ├── Demos.info │ │ ├── Demos │ │ └── TextEditor-Demo.info │ │ ├── Docs.info │ │ ├── Docs │ │ └── MCC_TextEditor.guide.info │ │ ├── Install-MCC │ │ ├── Install-MCC.info │ │ ├── ReadMe.info │ │ ├── ReadMe.mui │ │ └── ReadMe.mui.info │ ├── doc │ ├── MCC_TextEditor.doc │ ├── MCC_TextEditor.guide │ └── MCC_TextEditor.readme │ ├── include │ ├── SDI_compiler.h │ ├── SDI_hook.h │ ├── SDI_lib.h │ ├── SDI_stdarg.h │ ├── amiga-align.h │ ├── clib │ │ ├── mccclass_protos.h │ │ └── muimaster_protos.h │ ├── default-align.h │ ├── defines │ │ └── mccclass.h │ ├── fd │ │ ├── mccclass_lib.fd │ │ └── muimaster_lib.fd │ ├── inline │ │ ├── mccclass.h │ │ ├── muimaster.h │ │ └── muimaster_protos.h │ ├── inline4 │ │ ├── mccclass.h │ │ └── muimaster.h │ ├── interfaces │ │ ├── mccclass.h │ │ ├── mccclass.i │ │ └── muimaster.h │ ├── libraries │ │ ├── mui.h │ │ └── muiaros.h │ ├── mcc_common.h │ ├── mccclass_68k.c │ ├── mccinit.c │ ├── mui │ │ ├── BetterString_mcc.h │ │ ├── HotkeyString_mcc.h │ │ ├── NBitmap_mcc.h │ │ └── TextEditor_mcc.h │ ├── muiextra.h │ ├── newmouse.h │ ├── ppcinline │ │ └── muimaster.h │ ├── pragmas │ │ ├── mccclass_pragmas.h │ │ └── muimaster_pragmas.h │ ├── proto │ │ ├── mccclass.h │ │ └── muimaster.h │ ├── sfd │ │ ├── mccclass_lib.sfd │ │ └── muimaster_lib.sfd │ ├── shellstart.c │ └── xml │ │ ├── mccclass.xml │ │ └── muimaster.xml │ ├── mcc │ ├── AllocBitMap.c │ ├── BlockOperators.c │ ├── CaseConversion.c │ ├── ClipboardServer.c │ ├── ColorOperators.c │ ├── Debug.c │ ├── Debug.h │ ├── Dispatcher.c │ ├── EditorStuff.c │ ├── ExportBlock.c │ ├── ExportHook.c │ ├── ExportText.c │ ├── GetSetAttrs.c │ ├── Grow.c │ ├── HandleARexx.c │ ├── HandleInput.c │ ├── ImportHook.c │ ├── ImportText.c │ ├── InitConfig.c │ ├── Keybindings.c │ ├── Makefile │ ├── Makefile.dep │ ├── Methods.c │ ├── MixedFunctions.c │ ├── Navigation.c │ ├── NewGfx.c │ ├── Pointer.c │ ├── PrintLineWithStyles.c │ ├── Search.c │ ├── SetBlock.c │ ├── SpellChecker.c │ ├── StyleOperators.c │ ├── TextEditor-Test.c │ ├── UndoFunctions.c │ ├── extrasrc │ │ ├── AllocVecPooled.c │ │ ├── FreeVecPooled.c │ │ ├── GetHead.c │ │ ├── GetPred.c │ │ ├── GetSucc.c │ │ ├── GetTail.c │ │ └── MoveList.c │ ├── library.c │ ├── mmakefile.src │ ├── private.h │ ├── vastubs.c │ └── version.h │ ├── mcp │ ├── C_c.sd │ ├── C_h.sd │ ├── CreatePrefsGroup.c │ ├── Debug.c │ ├── Debug.h │ ├── Dispatcher.c │ ├── KeyStorage.c │ ├── Keybindings.c │ ├── Makefile │ ├── Makefile.dep │ ├── ObjectCreator.c │ ├── Preference.c │ ├── TextEditor_mcp.h │ ├── extrasrc │ │ ├── GetHead.c │ │ ├── GetPred.c │ │ ├── GetSucc.c │ │ └── GetTail.c │ ├── icon.c │ ├── icon.h │ ├── images │ │ ├── icon32.png │ │ └── icon8.iff │ ├── library.c │ ├── locale │ │ ├── TextEditor_mcp.pot │ │ ├── czech.po │ │ ├── danish.po │ │ ├── french.po │ │ ├── german.po │ │ ├── greek.po │ │ ├── italian.po │ │ ├── polish.po │ │ ├── russian.po │ │ └── swedish.po │ ├── mmakefile.src │ ├── private.h │ ├── vastubs.c │ └── version.h │ ├── mmakefile.src │ └── tools │ ├── bumprev.sh │ ├── mkrelease.sh │ └── update_copyright.sh ├── devs ├── AHI │ ├── AHI-Handler │ │ ├── AUDIO │ │ ├── AUDIO.MWB.info │ │ ├── AUDIO.info │ │ ├── Makefile.in │ │ ├── aros │ │ │ ├── resident.c │ │ │ └── resident_end.c │ │ ├── main.c │ │ ├── main.h │ │ ├── version.date │ │ └── version.rev │ ├── AHI-Startup │ ├── AHI │ │ ├── AHI.MWB.info │ │ ├── AHI.info │ │ ├── COPYING │ │ ├── C_c_noauto.sd │ │ ├── C_h_noauto.sd │ │ ├── Makefile.in │ │ ├── ahi.c │ │ ├── ahi.h │ │ ├── gui.h │ │ ├── gui_bgui.c │ │ ├── gui_ca.c │ │ ├── gui_mui.c │ │ ├── support.c │ │ ├── support.h │ │ ├── version.date │ │ └── version.rev │ ├── AddAudioModes │ │ ├── AddAudioModes.c │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── version.date │ │ └── version.rev │ ├── COPYING │ ├── COPYING.DRIVERS │ ├── COPYING.LIB │ ├── ChangeLog │ ├── Device │ │ ├── COPYING │ │ ├── C_c_AHI.sd │ │ ├── C_h_AHI.sd │ │ ├── Makefile.in │ │ ├── addroutines.h │ │ ├── addroutines_32bit.c │ │ ├── addroutines_68k.s │ │ ├── addroutines_71.c │ │ ├── addroutines_hifi.c │ │ ├── addroutines_lofi.c │ │ ├── addtest.c │ │ ├── ahi_def.h │ │ ├── audioctrl.c │ │ ├── audioctrl.h │ │ ├── database.c │ │ ├── database.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── devcommands.c │ │ ├── devcommands.h │ │ ├── device.c │ │ ├── device.h │ │ ├── devsupp.c │ │ ├── devsupp.h │ │ ├── dsp.h │ │ ├── dspecho.c │ │ ├── dspecho.h │ │ ├── dspechofuncs.c │ │ ├── dspechofuncs.h │ │ ├── dspechofuncs_68k.s │ │ ├── effectinit.c │ │ ├── effectinit.h │ │ ├── elfloader.c │ │ ├── elfloader.h │ │ ├── elftest.c │ │ ├── gateway.c │ │ ├── gateway.h │ │ ├── header.c │ │ ├── header.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── mixer.c │ │ ├── mixer.h │ │ ├── modeinfo.c │ │ ├── modeinfo.h │ │ ├── requester.c │ │ ├── requester.h │ │ ├── sound.c │ │ ├── sound.h │ │ ├── test.c │ │ ├── version.date │ │ ├── version.rev │ │ ├── warpup.c │ │ └── warpup.h │ ├── Docs │ │ ├── Makefile.in │ │ ├── ahidev.html │ │ ├── ahidev.readme.info │ │ ├── ahidev.texinfo │ │ ├── ahiusr.readme.info │ │ ├── ahiusr.texinfo │ │ ├── iso.sty │ │ ├── readme.changes │ │ ├── readme.dev │ │ ├── readme.main │ │ ├── readme.usr │ │ └── texinfo.tex │ ├── Drivers │ │ ├── Alsa │ │ │ ├── ALSA.s │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── alsa-accel.c │ │ │ ├── alsa-bridge │ │ │ │ ├── .gitignore │ │ │ │ ├── alsa.c │ │ │ │ ├── alsa.h │ │ │ │ ├── alsa_hostlib.c │ │ │ │ ├── alsa_hostlib.h │ │ │ │ └── mmakefile.src │ │ │ ├── alsa-init.c │ │ │ ├── alsa-main.c │ │ │ ├── alsa-playslave.c │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── Aura │ │ │ ├── asmfuncs.a │ │ │ ├── aura.c │ │ │ ├── aura.h │ │ │ ├── aura.i │ │ │ ├── prefsfile.a │ │ │ └── smakefile │ │ ├── CMI8738 │ │ │ ├── CMI8738.s │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── accel.c │ │ │ ├── cmi8738hw.c │ │ │ ├── driver-init.c │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── pci_aros.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── regs.h │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── Common │ │ │ ├── DriverBase.h │ │ │ ├── MODEFILE.s │ │ │ ├── Makefile.common.in │ │ │ ├── camd_drv.sfd │ │ │ ├── library.c │ │ │ └── library.h │ │ ├── Device │ │ │ ├── DEVICE.s │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── device-accel.c │ │ │ ├── device-init.c │ │ │ ├── device-main.c │ │ │ ├── device-playslave.c │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── EMU10kx │ │ │ ├── 8010.h │ │ │ ├── CAMD │ │ │ │ └── emu10kx.c │ │ │ ├── COPYING │ │ │ ├── DriverData.h │ │ │ ├── EMU10KX-2.s │ │ │ ├── EMU10KX.s │ │ │ ├── Makefile.in │ │ │ ├── efxmgr.c │ │ │ ├── efxmgr.h │ │ │ ├── emu10kx-ac97.c │ │ │ ├── emu10kx-ac97.h │ │ │ ├── emu10kx-accel.c │ │ │ ├── emu10kx-camd.c │ │ │ ├── emu10kx-camd.h │ │ │ ├── emu10kx-init.c │ │ │ ├── emu10kx-interrupt.c │ │ │ ├── emu10kx-interrupt.h │ │ │ ├── emu10kx-main.c │ │ │ ├── emu10kx-misc.c │ │ │ ├── emu10kx-misc.h │ │ │ ├── emuadxmg.c │ │ │ ├── hwaccess.c │ │ │ ├── hwaccess.h │ │ │ ├── linuxsupport.c │ │ │ ├── linuxsupport.h │ │ │ ├── main.c │ │ │ ├── pci_aos4.c │ │ │ ├── pci_aros.c │ │ │ ├── pci_openpci.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── test_ac97.c │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ ├── version.ver │ │ │ ├── voicemgr.c │ │ │ └── voicemgr.h │ │ ├── Envy24 │ │ │ ├── DriverData.h │ │ │ ├── ENVY24.s │ │ │ ├── I2C.c │ │ │ ├── I2C.h │ │ │ ├── LEGAL │ │ │ ├── Makefile.in │ │ │ ├── Phase88.c │ │ │ ├── Phase88.h │ │ │ ├── accel.c │ │ │ ├── ak_codec.c │ │ │ ├── ak_codec.h │ │ │ ├── driver-init.c │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── pci_aros.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── regs.h │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── Envy24HT │ │ │ ├── DriverData.h │ │ │ ├── ENVY24HT.s │ │ │ ├── I2C.c │ │ │ ├── I2C.h │ │ │ ├── LEGAL │ │ │ ├── Makefile.in │ │ │ ├── Revo51.c │ │ │ ├── Revo51.h │ │ │ ├── accel.c │ │ │ ├── ak4114.h │ │ │ ├── ak_codec.c │ │ │ ├── ak_codec.h │ │ │ ├── driver-init.c │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── pci_aros.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── regs.h │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── Filesave │ │ │ ├── DriverData.h │ │ │ ├── FILESAVE.s │ │ │ ├── FileFormats.h │ │ │ ├── Makefile.in │ │ │ ├── Studio16file.h │ │ │ ├── filesave-accel.c │ │ │ ├── filesave-init.c │ │ │ ├── filesave-main.c │ │ │ ├── filesave-playslave.c │ │ │ ├── filesave-recslave.c │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── HDAudio │ │ │ ├── DriverData.h │ │ │ ├── HDAUDIO.s │ │ │ ├── Makefile.in │ │ │ ├── README.txt │ │ │ ├── accel.c │ │ │ ├── driver-init.c │ │ │ ├── hdaudio.config │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── mmakefile.src │ │ │ ├── pci_aros.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── regs.h │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── MODE_ID.md │ │ ├── Makefile.in │ │ ├── OSS │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── OSS-accel.c │ │ │ ├── OSS-init.c │ │ │ ├── OSS-main.c │ │ │ ├── OSS-playslave.c │ │ │ ├── OSS.s │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── Paula │ │ │ ├── debug.a │ │ │ ├── macros.i │ │ │ ├── paula_audio.a │ │ │ ├── prefsfile.a │ │ │ ├── smakefile │ │ │ └── version.rexx │ │ ├── PulseAudio │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── PULSEAUDIO.s │ │ │ ├── pulseaudio-accel.c │ │ │ ├── pulseaudio-bridge │ │ │ │ ├── .gitignore │ │ │ │ ├── mmakefile.src │ │ │ │ ├── pulseaudio.c │ │ │ │ ├── pulseaudio.h │ │ │ │ ├── pulseaudio_hostlib.c │ │ │ │ └── pulseaudio_hostlib.h │ │ │ ├── pulseaudio-init.c │ │ │ ├── pulseaudio-main.c │ │ │ ├── pulseaudio-playslave.c │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── SB128 │ │ │ ├── DriverData.h │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile.in │ │ │ ├── README.txt │ │ │ ├── SB128.s │ │ │ ├── accel.c │ │ │ ├── driver-init.c │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── pci_aros.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── regs.h │ │ │ ├── sb128hw.c │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── SoundBlasterAWE │ │ │ └── test.c │ │ ├── Toccata │ │ │ ├── asmfuncs.a │ │ │ ├── prefsfile.a │ │ │ ├── smakefile │ │ │ ├── toccata.c │ │ │ ├── toccata.h │ │ │ └── toccata.i │ │ ├── VIA-AC97 │ │ │ ├── DriverData.h │ │ │ ├── LEGAL │ │ │ ├── Makefile.in │ │ │ ├── VIA-AC97.s │ │ │ ├── accel.c │ │ │ ├── driver-init.c │ │ │ ├── hwaccess.h │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── pci_aros.c │ │ │ ├── pci_wrapper.c │ │ │ ├── pci_wrapper.h │ │ │ ├── regs.h │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ ├── version.ver │ │ │ └── via.c │ │ ├── Void │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── VOID.s │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ ├── version.ver │ │ │ ├── void-accel.c │ │ │ ├── void-init.c │ │ │ ├── void-main.c │ │ │ └── void-playslave.c │ │ ├── WASAPI │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── WASAPI-accel.c │ │ │ ├── WASAPI-bridge │ │ │ │ ├── .gitignore │ │ │ │ ├── WASAPI.c │ │ │ │ ├── WASAPI.h │ │ │ │ ├── WASAPIAudio.rc │ │ │ │ ├── WASAPI_common.h │ │ │ │ ├── WASAPI_hostlib.c │ │ │ │ ├── WASAPI_hostlib.h │ │ │ │ ├── WASAPI_native.c │ │ │ │ └── mmakefile.src │ │ │ ├── WASAPI-init.c │ │ │ ├── WASAPI-main.c │ │ │ ├── WASAPI-playslave.c │ │ │ ├── WASAPI.s │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ ├── Wavetools │ │ │ ├── dad_audio.i │ │ │ ├── log.ascii │ │ │ ├── makeit │ │ │ ├── prefsfile.a │ │ │ ├── smakefile │ │ │ ├── wavetools.audio.readme │ │ │ └── wavetools_audio.a │ │ ├── ac97 │ │ │ ├── DriverData.h │ │ │ ├── Makefile.in │ │ │ ├── ac97-accel.c │ │ │ ├── ac97-init.c │ │ │ ├── ac97-main.c │ │ │ ├── ac97-playslave.c │ │ │ ├── ac97.s │ │ │ ├── version.date │ │ │ ├── version.rev │ │ │ └── version.ver │ │ └── amiga-m68k │ │ │ ├── LEGAL │ │ │ ├── PAULA │ │ │ ├── mmakefile │ │ │ ├── paula.audio │ │ │ └── paula.audio.000 │ ├── Examples │ │ ├── Device │ │ │ ├── Makefile │ │ │ ├── PlayTest │ │ │ │ ├── Makefile.in │ │ │ │ ├── PlayTest.c │ │ │ │ ├── version.date │ │ │ │ └── version.rev │ │ │ └── RecordTest │ │ │ │ ├── RecordTest.c │ │ │ │ ├── SCOPTIONS │ │ │ │ └── smakefile │ │ ├── Extras │ │ │ ├── CheckAHIPrefs │ │ │ │ ├── CheckAHIPrefs.c │ │ │ │ └── smakefile │ │ │ ├── CloneAudioModes │ │ │ │ ├── CloneAudioModes.c │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── version.date │ │ │ │ └── version.rev │ │ │ └── Makefile │ │ ├── Low-level │ │ │ ├── 3rd party │ │ │ │ ├── DetectPaulaAudio.info │ │ │ │ ├── DetectPaulaAudio │ │ │ │ │ ├── DetectPaulaAudio.c │ │ │ │ │ ├── SCOPTIONS │ │ │ │ │ └── smakefile │ │ │ │ ├── GetAudioID.info │ │ │ │ └── GetAudioID │ │ │ │ │ ├── Catalogs │ │ │ │ │ ├── empty.ct │ │ │ │ │ ├── italiano │ │ │ │ │ │ ├── italiano.catalog │ │ │ │ │ │ └── italiano.ct │ │ │ │ │ └── suomi │ │ │ │ │ │ └── GetAudioID.catalog │ │ │ │ │ ├── GetAudioID │ │ │ │ │ ├── GetAudioID.guide │ │ │ │ │ ├── GetAudioID.guide.info │ │ │ │ │ ├── GetAudioID.info │ │ │ │ │ └── Source │ │ │ │ │ ├── GAI.S │ │ │ │ │ └── GAI.cd │ │ │ ├── BestAudioID │ │ │ │ ├── BestAudioID.c │ │ │ │ ├── SCOPTIONS │ │ │ │ └── smakefile │ │ │ ├── DoubleBuffer │ │ │ │ ├── DoubleBuffer.c │ │ │ │ ├── SCOPTIONS │ │ │ │ └── smakefile │ │ │ ├── HardDiskRecord │ │ │ │ ├── Catalogs │ │ │ │ │ ├── deutsch │ │ │ │ │ │ ├── HardDiskRecord.catalog │ │ │ │ │ │ └── HardDiskRecord.ct │ │ │ │ │ └── italiano │ │ │ │ │ │ ├── HardDiskRecord.catalog │ │ │ │ │ │ └── HardDiskRecord.ct │ │ │ │ ├── GUI.c │ │ │ │ ├── GUI.des │ │ │ │ ├── GUI.extras.h │ │ │ │ ├── GUI.h │ │ │ │ ├── HardDiskRecord.c │ │ │ │ ├── HardDiskRecord.cd │ │ │ │ ├── HardDiskRecord.ct │ │ │ │ ├── HardDiskRecord.h │ │ │ │ ├── HardDiskRecord.readme │ │ │ │ ├── recordfunc.a │ │ │ │ └── smakefile │ │ │ ├── Makefile │ │ │ ├── PT-AHIPlay │ │ │ │ ├── PT-AHIPlay.h │ │ │ │ ├── PT-AHIPlay.i │ │ │ │ ├── PT-AHIPlay.s │ │ │ │ └── smakefile │ │ │ ├── PTdatatype │ │ │ │ ├── Class.c │ │ │ │ ├── DT_code.a │ │ │ │ ├── DT_ident │ │ │ │ ├── Data.h │ │ │ │ ├── LibCode.c │ │ │ │ ├── ProtrackerDT.info │ │ │ │ ├── ProtrackerDT │ │ │ │ │ ├── Classes │ │ │ │ │ │ └── Datatypes │ │ │ │ │ │ │ └── dummy │ │ │ │ │ ├── Devs │ │ │ │ │ │ └── DataTypes │ │ │ │ │ │ │ └── Protracker.info │ │ │ │ │ ├── ENV │ │ │ │ │ │ └── DataTypes │ │ │ │ │ │ │ └── Protracker │ │ │ │ │ ├── Install │ │ │ │ │ ├── Install.info │ │ │ │ │ ├── ProtrackerDT.readme │ │ │ │ │ └── ProtrackerDT.readme.info │ │ │ │ ├── RomTag.a │ │ │ │ ├── SMakefile │ │ │ │ ├── protracker.datatype_rev.h │ │ │ │ ├── protracker.datatype_rev.i │ │ │ │ ├── protracker.datatype_rev.rev │ │ │ │ ├── protracker_rev.i │ │ │ │ └── protracker_rev.rev │ │ │ ├── PlaySineEverywhere │ │ │ │ ├── Makefile.in │ │ │ │ ├── PlaySineEverywhere.c │ │ │ │ ├── version.date │ │ │ │ └── version.rev │ │ │ ├── RecordTestQnD │ │ │ │ └── RecordTestQnD.s │ │ │ ├── Req-test │ │ │ │ ├── SCOPTIONS │ │ │ │ ├── req-test.c │ │ │ │ └── smakefile │ │ │ ├── ScanAudioModes │ │ │ │ ├── Makefile.in │ │ │ │ ├── ScanAudioModes.c │ │ │ │ ├── version.date │ │ │ │ └── version.rev │ │ │ ├── SimplePlay │ │ │ │ ├── SCOPTIONS │ │ │ │ ├── SimplePlay.c │ │ │ │ └── smakefile │ │ │ ├── Test-7.1 │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test-7.1.c │ │ │ │ ├── version.date │ │ │ │ └── version.rev │ │ │ └── lib │ │ │ │ ├── AHI_lib.c │ │ │ │ └── smakefile │ │ ├── Makefile.in │ │ └── Makefile.sc │ ├── Include │ │ ├── Asm │ │ │ ├── devices │ │ │ │ └── ahi.i │ │ │ └── libraries │ │ │ │ └── ahi_sub.i │ │ ├── C │ │ │ ├── devices │ │ │ │ └── ahi.h │ │ │ └── libraries │ │ │ │ └── ahi_sub.h │ │ ├── Makefile.in │ │ ├── SFD │ │ │ ├── ahi_lib.sfd │ │ │ └── ahi_sub_lib.sfd │ │ └── mmakefile │ ├── Makefile.in │ ├── PackageFiles │ │ ├── Packages │ │ │ ├── AHI │ │ │ └── mmakefile.src │ │ └── S │ │ │ ├── Package-Startup │ │ │ └── mmakefile.src │ ├── README │ ├── README.ATO │ ├── README.TRANSLATIONS │ ├── README.md │ ├── TODO │ ├── Test │ │ ├── asmtest │ │ │ └── asmtest.s │ │ └── examine_ahi │ │ │ ├── examine_ahi.c │ │ │ └── smakefile │ ├── Toccata │ │ ├── README │ │ ├── libinit.c │ │ ├── slaveproc.c │ │ ├── smakefile │ │ ├── stubs.a │ │ ├── toccata.c │ │ └── toccata.h │ ├── acconfig.h │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── install-sh │ ├── mmakefile.src │ ├── version.date │ ├── version.rev │ └── version.ver ├── DOSDrivers │ ├── DEBUG │ ├── PAR │ ├── PIPE │ ├── PRT │ ├── SER │ ├── SER0 │ └── SER1 ├── Mountlist ├── USB │ ├── LICENSE.LGPL │ ├── classes │ │ ├── HID │ │ │ ├── hid.c │ │ │ ├── hid.conf │ │ │ ├── hid.h │ │ │ ├── hid_init.c │ │ │ ├── hid_stubs.c │ │ │ ├── hidclass.c │ │ │ ├── include │ │ │ │ ├── hid.h │ │ │ │ └── mmakefile.src │ │ │ ├── kbdclass.c │ │ │ ├── mmakefile.src │ │ │ └── mouseclass.c │ │ ├── MassStorage │ │ │ ├── include │ │ │ │ ├── mmakefile.src │ │ │ │ └── mstorage.h │ │ │ ├── mmakefile.src │ │ │ ├── mstorage.conf │ │ │ ├── storage.h │ │ │ ├── storage_device.c │ │ │ ├── storage_init.c │ │ │ ├── storage_stubs.c │ │ │ ├── storage_task.c │ │ │ ├── storage_volumes.c │ │ │ └── storageclass.c │ │ └── mmakefile.src │ ├── drivers │ │ ├── EHCI │ │ │ ├── ehci.conf │ │ │ ├── ehci.h │ │ │ ├── ehci_init.c │ │ │ └── mmakefile.src │ │ ├── OHCI │ │ │ ├── mmakefile.src │ │ │ ├── ohci.conf │ │ │ ├── ohci.h │ │ │ ├── ohci_init.c │ │ │ ├── ohciclass.c │ │ │ ├── ohcideviceclass.c │ │ │ ├── ohcidriverclass.c │ │ │ └── ohcihub.c │ │ ├── UHCI │ │ │ ├── hardware.c │ │ │ ├── mmakefile.src │ │ │ ├── uhci.conf │ │ │ ├── uhci.h │ │ │ ├── uhci_init.c │ │ │ └── uhciclass.c │ │ └── mmakefile.src │ ├── include │ │ ├── mmakefile.src │ │ ├── usb.h │ │ └── usb_core.h │ ├── mmakefile.src │ ├── stack │ │ ├── misc.c │ │ ├── misc.h │ │ ├── mmakefile.src │ │ ├── stubs │ │ │ ├── mmakefile.src │ │ │ └── usb_stubs.c │ │ ├── usb.conf │ │ ├── usb.h │ │ ├── usb_init.c │ │ ├── usbclass.c │ │ ├── usbdeviceclass.c │ │ ├── usbhubclass.c │ │ └── usbprocess.c │ └── tools │ │ ├── lsusb │ │ ├── main.c │ │ └── mmakefile.src │ │ └── mmakefile.src ├── audio │ ├── audio.conf │ ├── audio.device_readme │ ├── audio_commands.c │ ├── audio_esys.c │ ├── audio_intern.h │ ├── libfunctions.c │ ├── mmakefile.src │ └── objpoollite.c ├── clipboard │ ├── MORPHOS_CVS_LOG │ ├── clipboard.c │ ├── clipboard.conf │ ├── clipboard_intern.h │ └── mmakefile.src ├── datatypes │ ├── 8SVX.dtd │ ├── A68K.dtd │ ├── ADF.dtd │ ├── AIFF.dtd │ ├── AMR.dtd │ ├── ANIM.dtd │ ├── ASF.dtd │ ├── AVI.dtd │ ├── AVIF.dtd │ ├── AmiLua.dtd │ ├── AmigaGuide.dtd │ ├── AmigaGuideMOS.dtd │ ├── AmigaGuideNode.dtd │ ├── Archive.dtd │ ├── AudioMode.dtd │ ├── BMP.dtd │ ├── Bitmap_Font.dtd │ ├── CAT.dtd │ ├── CDXL.dtd │ ├── Catalog.dtd │ ├── Country.dtd │ ├── DT64.dtd │ ├── DataType.dtd │ ├── Degas.dtd │ ├── ELF.dtd │ ├── ELF64_EXE.dtd │ ├── ELF64_EXE_BE.dtd │ ├── ELF_EXE.dtd │ ├── ELF_EXE_BE.dtd │ ├── ELF_EXE_Linux.dtd │ ├── FAT.dtd │ ├── FLAC.dtd │ ├── FLV.dtd │ ├── FTXT.dtd │ ├── GEMImage.dtd │ ├── GIF.dtd │ ├── HEIC.dtd │ ├── HTML.dtd │ ├── ILBM.dtd │ ├── JPEG.dtd │ ├── KickDisk.dtd │ ├── KickROM.dtd │ ├── LHA.dtd │ ├── LIST.dtd │ ├── Lua.dtd │ ├── Lunapaint.dtd │ ├── M3U.dtd │ ├── MID.dtd │ ├── MOV.dtd │ ├── MP1.dtd │ ├── MP3.dtd │ ├── MP3ID3.dtd │ ├── MP4.dtd │ ├── MPEGVideo.dtd │ ├── MSD.dtd │ ├── MSI.dtd │ ├── OGG.dtd │ ├── Otag.dtd │ ├── Outline_Font.dtd │ ├── PCX.dtd │ ├── PDF.dtd │ ├── PFS.dtd │ ├── PLS.dtd │ ├── PNG.dtd │ ├── PNMP1.dtd │ ├── PNMP2.dtd │ ├── PNMP3.dtd │ ├── PNMP4.dtd │ ├── PNMP5.dtd │ ├── PNMP6.dtd │ ├── PREF.dtd │ ├── PostScript.dtd │ ├── Python.dtd │ ├── REXX.dtd │ ├── RM.dtd │ ├── S3M.dtd │ ├── SFS.dtd │ ├── SVG.dtd │ ├── TIFF.dtd │ ├── Targa.dtd │ ├── Trashcan.dtd │ ├── TrueType.dtd │ ├── VOB.dtd │ ├── WAVE.dtd │ ├── WMA.dtd │ ├── WMV.dtd │ ├── WebM.dtd │ ├── WebP.dtd │ ├── WinURL.dtd │ ├── XM.dtd │ ├── ZIP.dtd │ └── mmakefile.src ├── diskimage │ ├── LVOs.i │ ├── Makefile │ ├── Makefile.ppc-aros │ ├── Makefile.x86-aros │ ├── audio │ │ ├── aiff.c │ │ ├── flac.c │ │ ├── mp3_mpega.c │ │ ├── mp3_mpg123.c │ │ ├── vorbis.c │ │ ├── wave.c │ │ └── wavpack.c │ ├── bz2_library │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.ppc-aros │ │ ├── Makefile.x86-aros │ │ ├── README │ │ ├── blocksort.c │ │ ├── bz2.library_rev.h │ │ ├── bz2.library_rev.rev │ │ ├── bzlib.c │ │ ├── compress.c │ │ ├── crctable.c │ │ ├── decompress.c │ │ ├── huffman.c │ │ ├── include │ │ │ ├── bzlib.h │ │ │ └── bzlib_private.h │ │ ├── init.c │ │ ├── malloc.c │ │ ├── randtable.c │ │ ├── stub_m68k.s │ │ ├── stub_ppc.s │ │ └── stub_x86.s │ ├── cmd │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── mountdiskimage.c │ │ └── mounthdf.c │ ├── device │ │ ├── .gitignore │ │ ├── diskimage.conf │ │ ├── include │ │ │ ├── diskimage_device.h │ │ │ └── progress.h │ │ ├── init.c │ │ ├── init_aros.c │ │ ├── io.c │ │ ├── locale.c │ │ ├── main_vectors.c │ │ ├── mmakefile.src │ │ ├── password.c │ │ ├── plugin_vectors.c │ │ ├── plugins.c │ │ ├── progress.c │ │ ├── scsicmd.c │ │ ├── stub_m68k.s │ │ ├── stub_ppc.s │ │ ├── stub_x86.s │ │ ├── tempfile.c │ │ └── unit.c │ ├── dms │ │ ├── crc_csum.c │ │ ├── getbits.c │ │ ├── maketbl.c │ │ ├── tables.c │ │ ├── u_deep.c │ │ ├── u_heavy.c │ │ ├── u_init.c │ │ ├── u_medium.c │ │ ├── u_quick.c │ │ ├── u_rle.c │ │ └── xdms.h │ ├── expat_library │ │ ├── COPYING │ │ ├── Makefile.ppc-aros │ │ ├── Makefile.x86-aros │ │ ├── expat.library_rev.h │ │ ├── expat.library_rev.rev │ │ ├── include │ │ │ ├── amigaconfig.h │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── expat.h │ │ │ ├── expat_external.h │ │ │ ├── iasciitab.h │ │ │ ├── internal.h │ │ │ ├── latin1tab.h │ │ │ ├── nametab.h │ │ │ ├── utf8tab.h │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.h │ │ │ └── xmltok_impl.h │ │ ├── init.c │ │ ├── malloc.c │ │ ├── stub_ppc.s │ │ ├── stub_x86.s │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmltok.c │ │ ├── xmltok_impl.c │ │ └── xmltok_ns.c │ ├── include │ │ ├── .gitignore │ │ ├── SDI_compiler.h │ │ ├── SDI_hook.h │ │ ├── SDI_interrupt.h │ │ ├── SDI_lib.h │ │ ├── SDI_misc.h │ │ ├── SDI_stdarg.h │ │ ├── amigaos │ │ │ ├── amissl │ │ │ │ ├── amissl.h │ │ │ │ └── tags.h │ │ │ ├── caps │ │ │ │ └── capsimage.h │ │ │ ├── clib │ │ │ │ ├── Picasso96API_protos.h │ │ │ │ ├── amissl_protos.h │ │ │ │ ├── amisslmaster_protos.h │ │ │ │ ├── bz2_protos.h │ │ │ │ ├── capsimage_protos.h │ │ │ │ ├── cybergraphics_protos.h │ │ │ │ ├── diskimage_protos.h │ │ │ │ ├── expat_protos.h │ │ │ │ ├── mpega_protos.h │ │ │ │ ├── screennotify_protos.h │ │ │ │ ├── xadmaster_protos.h │ │ │ │ ├── xpkmaster_protos.h │ │ │ │ └── z_protos.h │ │ │ ├── cybergraphx │ │ │ │ └── cybergraphics.h │ │ │ ├── devices │ │ │ │ └── newstyle.h │ │ │ ├── fcntl.h │ │ │ ├── images │ │ │ │ └── titlebar.h │ │ │ ├── inline │ │ │ │ ├── Picasso96API_protos.h │ │ │ │ ├── amissl_protos.h │ │ │ │ ├── amisslmaster_protos.h │ │ │ │ ├── bz2_protos.h │ │ │ │ ├── capsimage_protos.h │ │ │ │ ├── diskimage_protos.h │ │ │ │ ├── expat_protos.h │ │ │ │ ├── mpega_protos.h │ │ │ │ ├── screennotify_protos.h │ │ │ │ ├── xadmaster_protos.h │ │ │ │ ├── xpkmaster_protos.h │ │ │ │ └── z_protos.h │ │ │ ├── libraries │ │ │ │ ├── Picasso96.h │ │ │ │ ├── amissl.h │ │ │ │ ├── amisslmaster.h │ │ │ │ ├── screennotify.h │ │ │ │ └── xadmaster.h │ │ │ ├── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── bio.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── buffer.h │ │ │ │ ├── cast.h │ │ │ │ ├── comp.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── crypto.h │ │ │ │ ├── des.h │ │ │ │ ├── des_old.h │ │ │ │ ├── dh.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dso.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── engine.h │ │ │ │ ├── err.h │ │ │ │ ├── evp.h │ │ │ │ ├── fips.h │ │ │ │ ├── fips_rand.h │ │ │ │ ├── hmac.h │ │ │ │ ├── idea.h │ │ │ │ ├── krb5_asn.h │ │ │ │ ├── kssl.h │ │ │ │ ├── lhash.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── rand.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── safestack.h │ │ │ │ ├── sha.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl23.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── stack.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── tmdiff.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── ui.h │ │ │ │ ├── ui_compat.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ └── x509v3.h │ │ │ ├── proto │ │ │ │ ├── Picasso96API.h │ │ │ │ ├── amissl.h │ │ │ │ ├── amisslmaster.h │ │ │ │ ├── bz2.h │ │ │ │ ├── capsimage.h │ │ │ │ ├── diskimage.h │ │ │ │ ├── expat.h │ │ │ │ ├── mpega.h │ │ │ │ ├── screennotify.h │ │ │ │ ├── xadmaster.h │ │ │ │ ├── xpkmaster.h │ │ │ │ └── z.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ │ ├── stat.h │ │ │ │ └── types.h │ │ │ └── xpk │ │ │ │ ├── xpk.h │ │ │ │ ├── xpkLib.h │ │ │ │ ├── xpkprefs.h │ │ │ │ └── xpksub.h │ │ ├── aros │ │ │ ├── clib │ │ │ │ ├── bz2_protos.h │ │ │ │ ├── diskimage_protos.h │ │ │ │ ├── expat_protos.h │ │ │ │ ├── mpega_protos.h │ │ │ │ └── z_protos.h │ │ │ ├── ctype.h │ │ │ ├── defines │ │ │ │ ├── bz2.h │ │ │ │ ├── diskimage.h │ │ │ │ ├── expat.h │ │ │ │ ├── mpega.h │ │ │ │ └── z.h │ │ │ └── proto │ │ │ │ ├── bz2.h │ │ │ │ ├── diskimage.h │ │ │ │ ├── expat.h │ │ │ │ ├── mpega.h │ │ │ │ └── z.h │ │ ├── audio │ │ │ ├── aiff.h │ │ │ ├── flac.h │ │ │ ├── mp3_mpega.h │ │ │ ├── mp3_mpg123.h │ │ │ ├── vorbis.h │ │ │ ├── wave.h │ │ │ └── wavpack.h │ │ ├── bytepack.h │ │ ├── device_locale.h │ │ ├── devices │ │ │ ├── ahi.h │ │ │ └── diskimage.h │ │ ├── dos64.h │ │ ├── endian.h │ │ ├── interfaces │ │ │ └── diplugin.h │ │ ├── libraries │ │ │ ├── bz2.h │ │ │ ├── expat.h │ │ │ ├── mpega.h │ │ │ └── z.h │ │ ├── mmakefile.src │ │ ├── mpg123.h │ │ ├── prefs.h │ │ ├── rev │ │ │ ├── DiskImageGUI_rev.h │ │ │ ├── DiskImageGUI_rev.rev │ │ │ ├── MountDiskImage_rev.h │ │ │ ├── MountDiskImage_rev.rev │ │ │ ├── MountHDF_rev.h │ │ │ ├── MountHDF_rev.rev │ │ │ ├── diskimage.device_rev.h │ │ │ └── diskimage.device_rev.rev │ │ ├── scsicmd.h │ │ ├── support.h │ │ ├── td64.h │ │ └── types.h │ ├── mmakefile │ ├── plugins │ │ ├── .gitignore │ │ ├── adf.c │ │ ├── ccd.c │ │ ├── ciso.c │ │ ├── cpc.c │ │ ├── crypt.c │ │ ├── cue │ │ │ ├── cue.c │ │ │ ├── cue.h │ │ │ ├── fdio.c │ │ │ ├── flac.c │ │ │ ├── malloc.c │ │ │ ├── select.c │ │ │ ├── stdio.c │ │ │ ├── string.c │ │ │ └── wavpack.c │ │ ├── d64.c │ │ ├── daa.c │ │ ├── dax.c │ │ ├── dmg │ │ │ ├── adc.c │ │ │ ├── adc.h │ │ │ ├── base64.c │ │ │ ├── base64.h │ │ │ └── dmg.c │ │ ├── dms.c │ │ ├── fdi │ │ │ ├── COPYING │ │ │ ├── fdi.c │ │ │ ├── fdi2raw.c │ │ │ └── fdi2raw.h │ │ ├── generic.c │ │ ├── gi.c │ │ ├── ipf.c │ │ ├── iso.c │ │ ├── mds.c │ │ ├── mmakefile.src │ │ ├── nrg.c │ │ ├── stub_aros.c │ │ ├── stub_m68k.s │ │ ├── stub_ppc.s │ │ ├── stub_x86.s │ │ ├── uif.c │ │ ├── xad.c │ │ └── xpk.c │ ├── png_image │ │ ├── Makefile │ │ ├── class.c │ │ ├── include │ │ │ └── class.h │ │ ├── init.c │ │ ├── loadpng.c │ │ ├── png.image_rev.h │ │ ├── png.image_rev.rev │ │ ├── png_image.readme │ │ ├── remap.c │ │ ├── stub_m68k.s │ │ ├── writergbapixels_cgx.c │ │ └── writergbapixels_p96.c │ ├── prefs │ │ ├── .gitignore │ │ ├── mmakefile.src │ │ ├── prefs.c │ │ ├── readprefs.c │ │ └── writeprefs.c │ ├── ra_gui │ │ ├── catalogs │ │ │ ├── diskimagegui.cd │ │ │ ├── diskimagegui_deutsch.ct │ │ │ ├── diskimagegui_finnish.ct │ │ │ ├── diskimagegui_french.ct │ │ │ ├── diskimagegui_italian.ct │ │ │ ├── diskimagegui_polski.ct │ │ │ ├── diskimagegui_spanish.ct │ │ │ ├── diskimagegui_swedish.ct │ │ │ └── diskimagegui_turkish.ct │ │ ├── cxbroker.c │ │ ├── driveops.c │ │ ├── extscrollerclass.c │ │ ├── extwindowclass.c │ │ ├── gui.c │ │ ├── images.c │ │ ├── images │ │ │ ├── eject.c │ │ │ ├── insert.c │ │ │ ├── list_cd.c │ │ │ ├── list_checkmark.c │ │ │ ├── list_disk.c │ │ │ ├── list_plugin.c │ │ │ ├── list_writeprotected.c │ │ │ ├── prefs.c │ │ │ ├── refresh.c │ │ │ └── writeprotect.c │ │ ├── include │ │ │ ├── classes │ │ │ │ └── extwindow.h │ │ │ ├── diskimagegui.h │ │ │ ├── gadgets │ │ │ │ └── extscroller.h │ │ │ └── locale.h │ │ ├── locale.c │ │ ├── main.c │ │ ├── requesters.c │ │ ├── setdevicetype.c │ │ └── snapshot.c │ ├── raauto │ │ ├── bitmap_autoopenlib.c │ │ ├── bitmap_autoopenver.c │ │ ├── chooser_autoopenlib.c │ │ ├── chooser_autoopenver.c │ │ ├── label_autoopenlib.c │ │ ├── label_autoopenver.c │ │ ├── layout_autoopenlib.c │ │ ├── layout_autoopenver.c │ │ ├── listbrowser_autoopenlib.c │ │ ├── listbrowser_autoopenver.c │ │ ├── raauto_alerts.c │ │ ├── raauto_alerts.h │ │ ├── requester_autoopenlib.c │ │ ├── requester_autoopenver.c │ │ ├── scroller_autoopenlib.c │ │ ├── scroller_autoopenver.c │ │ ├── slider_autoopenlib.c │ │ ├── slider_autoopenver.c │ │ ├── space_autoopenlib.c │ │ ├── space_autoopenver.c │ │ ├── speedbar_autoopenlib.c │ │ ├── speedbar_autoopenver.c │ │ ├── string_autoopenlib.c │ │ ├── string_autoopenver.c │ │ ├── texteditor_autoopenlib.c │ │ ├── texteditor_autoopenver.c │ │ ├── window_autoopenlib.c │ │ └── window_autoopenver.c │ ├── sfd │ │ ├── amissl_lib.sfd │ │ ├── amisslmaster_lib.sfd │ │ ├── bz2_lib.sfd │ │ ├── diskimage_lib.sfd │ │ ├── expat_lib.sfd │ │ ├── screennotify_lib.sfd │ │ └── z_lib.sfd │ ├── support │ │ ├── .gitignore │ │ ├── amigaos │ │ │ ├── allocvecpooled.s │ │ │ ├── asprintf.s │ │ │ └── asprintfpooled.s │ │ ├── aros │ │ │ ├── asprintf.c │ │ │ └── asprintfpooled.c │ │ ├── checkbptr.c │ │ ├── checklib.c │ │ ├── copystringbstrtoc.c │ │ ├── deletelibrary.c │ │ ├── diskimagedevice.c │ │ ├── dos64.c │ │ ├── envvar.c │ │ ├── getattrs.c │ │ ├── getcurrentdir.c │ │ ├── hooks.c │ │ ├── istext.c │ │ ├── lists.c │ │ ├── localeinfo.c │ │ ├── m68k │ │ │ └── swab2.s │ │ ├── messages.c │ │ ├── mmakefile.src │ │ ├── mutexes.c │ │ ├── paths.c │ │ ├── ports.c │ │ ├── reallocbuf.c │ │ ├── semaphores.c │ │ ├── setprocwindow.c │ │ ├── strlcpy.c │ │ ├── swab2.c │ │ ├── tooltypes.c │ │ ├── translatefuncs.c │ │ └── trimstr.c │ ├── z_library │ │ ├── Makefile │ │ ├── Makefile.ppc-aros │ │ ├── Makefile.x86-aros │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── deflate.c │ │ ├── include │ │ │ ├── crc32.h │ │ │ ├── deflate.h │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.h │ │ │ ├── inftrees.h │ │ │ ├── trees.h │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ └── zutil.h │ │ ├── inffast.c │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── init.c │ │ ├── malloc.c │ │ ├── stub_m68k.s │ │ ├── stub_ppc.s │ │ ├── stub_x86.s │ │ ├── trees.c │ │ ├── uncompr.c │ │ ├── z.library_rev.h │ │ ├── z.library_rev.rev │ │ └── zutil.c │ └── zune_gui │ │ ├── .gitignore │ │ ├── digfx │ │ ├── CD │ │ ├── CD_48 │ │ ├── Checkmark │ │ ├── Crypt │ │ ├── Disk │ │ ├── Disk_48 │ │ ├── Eject │ │ ├── Insert │ │ ├── Plugin │ │ ├── Plugin_48 │ │ ├── Prefs │ │ ├── Protect │ │ └── Refresh │ │ ├── drivelist.c │ │ ├── driveops.c │ │ ├── gui.c │ │ ├── images.c │ │ ├── include │ │ └── diskimagegui.h │ │ ├── locale.c │ │ ├── locale.h │ │ ├── main.c │ │ ├── mmakefile.src │ │ ├── pluginlist.c │ │ └── requesters.c ├── fdsk.conf ├── fdsk_device.c ├── fdsk_device_gcc.h ├── keymaps │ ├── descriptions │ │ ├── Kbdal_Albanian_pkf.txt │ │ ├── Kbdbe_FrenchBelgian_pkf.txt │ │ ├── Kbdbr_PortugueseBrazilian_pkf.txt │ │ ├── Kbdcz_Czech_pkf.txt │ │ ├── Kbddk_Danish_pkf.txt │ │ ├── Kbdet_Estonian_pkf.txt │ │ ├── Kbdfi_Finnish_pkf.txt │ │ ├── Kbdhu_Hungarian_pkf.txt │ │ ├── Kbdic_Icelandic_pkf.txt │ │ ├── Kbdla_LatinAmerican_pkf.txt │ │ ├── Kbdlt_Lithuanian_pkf.txt │ │ ├── Kbdlv_Latvian_pkf.txt │ │ ├── Kbdne_DutchStandard_pkf.txt │ │ ├── Kbdru_Russian_pkf.txt │ │ ├── Kbdsl_Slovak_pkf.txt │ │ ├── Kbdsp_SpanishStandard_pkf.txt │ │ ├── Kbdur_Ucranian_pkf.txt │ │ └── Kbdusx_EnglishUnitedStatesExtended_pkf.txt │ ├── mmakefile.src │ ├── old_c │ │ ├── common.h │ │ ├── pc104_usa.c │ │ ├── pc105_b.c │ │ ├── pc105_cz.c │ │ ├── pc105_d.c │ │ ├── pc105_dk.c │ │ ├── pc105_e.c │ │ ├── pc105_f.c │ │ ├── pc105_fin.c │ │ ├── pc105_gb.c │ │ ├── pc105_i.c │ │ ├── pc105_irl.c │ │ ├── pc105_lt.c │ │ ├── pc105_nl.c │ │ ├── pc105_pl.c │ │ ├── pc105_ro.c │ │ ├── pc105_rus.c │ │ ├── pc105_sk.c │ │ ├── pc105_tr.c │ │ ├── pc105_ua.c │ │ ├── pc105_usx.c │ │ ├── standard.h │ │ └── sun_usa.c │ ├── pc104_il.c │ ├── pc104_p.txt │ ├── pc104_usa.akmd │ ├── pc104_usa2.c │ ├── pc105_al.c │ ├── pc105_b.akmd │ ├── pc105_bg.c │ ├── pc105_br.c │ ├── pc105_by.c │ ├── pc105_cdn.c │ ├── pc105_ch1.c │ ├── pc105_ch2.c │ ├── pc105_col.c │ ├── pc105_cz.akmd │ ├── pc105_d.akmd │ ├── pc105_d.txt │ ├── pc105_dk.akmd │ ├── pc105_dvl.c │ ├── pc105_dvr.c │ ├── pc105_dvx.c │ ├── pc105_e.akmd │ ├── pc105_e.txt │ ├── pc105_est.c │ ├── pc105_f.akmd │ ├── pc105_f.txt │ ├── pc105_fin.akmd │ ├── pc105_gb.akmd │ ├── pc105_gb.txt │ ├── pc105_gbx.c │ ├── pc105_gr.c │ ├── pc105_gr.txt │ ├── pc105_h.c │ ├── pc105_hr.c │ ├── pc105_i.akmd │ ├── pc105_irl.akmd │ ├── pc105_is.c │ ├── pc105_la.c │ ├── pc105_lt.akmd │ ├── pc105_lv.c │ ├── pc105_n.c │ ├── pc105_nl.akmd │ ├── pc105_p.c │ ├── pc105_pl.akmd │ ├── pc105_pl.txt │ ├── pc105_ro.akmd │ ├── pc105_rus.akmd │ ├── pc105_s.akmd │ ├── pc105_s.c │ ├── pc105_sk.akmd │ ├── pc105_tr.akmd │ ├── pc105_ua.akmd │ ├── pc105_usasun5c.txt │ ├── pc105_usx.akmd │ └── sun_usa.akmd ├── midi │ ├── debugdriver.c │ └── mmakefile.src ├── mmakefile.src ├── monitors │ ├── Compositor │ │ ├── compositor_class.c │ │ ├── compositor_intern.h │ │ ├── compositor_startup.c │ │ ├── displaymode.c │ │ ├── include │ │ │ └── compositor.h │ │ └── mmakefile.src │ ├── IntelGMA │ │ ├── compositing.h │ │ ├── i915 │ │ │ ├── .gitignore │ │ │ └── mmakefile.src │ │ ├── i915_3d.h │ │ ├── i915_reg.h │ │ ├── intelG45_regs.h │ │ ├── intelgma_bitmapclass.c │ │ ├── intelgma_compositor.h │ │ ├── intelgma_compositorclass.c │ │ ├── intelgma_copybox.c │ │ ├── intelgma_gallium.h │ │ ├── intelgma_galliumclass.c │ │ ├── intelgma_hidd.h │ │ ├── intelgma_hiddclass.c │ │ ├── intelgma_i2cclass.c │ │ ├── intelgma_init.c │ │ ├── intelgma_memory.c │ │ ├── intelgma_startup.c │ │ ├── intelgma_support.c │ │ ├── intelgma_winsys.h │ │ └── mmakefile.src │ └── wrapper │ │ ├── mmakefile.src │ │ └── wrapper.c ├── netinfo │ ├── assert.c │ ├── assert.h │ ├── base.h │ ├── config.h │ ├── entries.c │ ├── entries.h │ ├── groupunit.c │ ├── include │ │ └── netinfo.h │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── netinfo.c │ ├── netinfo.conf │ ├── passwdunit.c │ └── server.c ├── networks │ ├── .gitignore │ ├── atheros5000 │ │ ├── LEGAL │ │ ├── Makefile.MOS │ │ ├── Makefile.OS4 │ │ ├── aros_device.c │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── encryption.c │ │ ├── encryption_protos.h │ │ ├── expansion.c │ │ ├── expansion_protos.h │ │ ├── hal │ │ │ ├── LEGAL │ │ │ ├── ah.c │ │ │ ├── ah.h │ │ │ ├── ah_debug.h │ │ │ ├── ah_decode.h │ │ │ ├── ah_desc.h │ │ │ ├── ah_devid.h │ │ │ ├── ah_eeprom.h │ │ │ ├── ah_eeprom_v14.c │ │ │ ├── ah_eeprom_v14.h │ │ │ ├── ah_eeprom_v3.c │ │ │ ├── ah_eeprom_v3.h │ │ │ ├── ah_internal.h │ │ │ ├── ah_osdep.h │ │ │ ├── ah_regdomain.c │ │ │ ├── ah_soc.h │ │ │ ├── amigaos │ │ │ │ ├── ah_osdep.c │ │ │ │ ├── ah_osdep.h │ │ │ │ ├── configure │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ └── opt_ah.h │ │ │ ├── ar5210 │ │ │ │ ├── ar5210.h │ │ │ │ ├── ar5210_attach.c │ │ │ │ ├── ar5210_beacon.c │ │ │ │ ├── ar5210_interrupts.c │ │ │ │ ├── ar5210_keycache.c │ │ │ │ ├── ar5210_misc.c │ │ │ │ ├── ar5210_phy.c │ │ │ │ ├── ar5210_power.c │ │ │ │ ├── ar5210_recv.c │ │ │ │ ├── ar5210_reset.c │ │ │ │ ├── ar5210_xmit.c │ │ │ │ ├── ar5210desc.h │ │ │ │ ├── ar5210phy.h │ │ │ │ ├── ar5210reg.h │ │ │ │ └── ar5k_0007.ini │ │ │ ├── ar5211 │ │ │ │ ├── ar5211.h │ │ │ │ ├── ar5211_attach.c │ │ │ │ ├── ar5211_beacon.c │ │ │ │ ├── ar5211_interrupts.c │ │ │ │ ├── ar5211_keycache.c │ │ │ │ ├── ar5211_misc.c │ │ │ │ ├── ar5211_phy.c │ │ │ │ ├── ar5211_power.c │ │ │ │ ├── ar5211_recv.c │ │ │ │ ├── ar5211_reset.c │ │ │ │ ├── ar5211_xmit.c │ │ │ │ ├── ar5211desc.h │ │ │ │ ├── ar5211phy.h │ │ │ │ ├── ar5211reg.h │ │ │ │ └── boss.ini │ │ │ ├── ar5212 │ │ │ │ ├── ar2316.c │ │ │ │ ├── ar2317.c │ │ │ │ ├── ar2413.c │ │ │ │ ├── ar2425.c │ │ │ │ ├── ar5111.c │ │ │ │ ├── ar5112.c │ │ │ │ ├── ar5212.h │ │ │ │ ├── ar5212.ini │ │ │ │ ├── ar5212_ani.c │ │ │ │ ├── ar5212_attach.c │ │ │ │ ├── ar5212_beacon.c │ │ │ │ ├── ar5212_eeprom.c │ │ │ │ ├── ar5212_gpio.c │ │ │ │ ├── ar5212_interrupts.c │ │ │ │ ├── ar5212_keycache.c │ │ │ │ ├── ar5212_misc.c │ │ │ │ ├── ar5212_phy.c │ │ │ │ ├── ar5212_power.c │ │ │ │ ├── ar5212_recv.c │ │ │ │ ├── ar5212_reset.c │ │ │ │ ├── ar5212_xmit.c │ │ │ │ ├── ar5212desc.h │ │ │ │ ├── ar5212phy.h │ │ │ │ ├── ar5212reg.h │ │ │ │ ├── ar5311reg.h │ │ │ │ └── ar5413.c │ │ │ ├── ar5312 │ │ │ │ ├── ar5312.h │ │ │ │ ├── ar5312_attach.c │ │ │ │ ├── ar5312_eeprom.c │ │ │ │ ├── ar5312_gpio.c │ │ │ │ ├── ar5312_interrupts.c │ │ │ │ ├── ar5312_misc.c │ │ │ │ ├── ar5312_power.c │ │ │ │ ├── ar5312_reset.c │ │ │ │ ├── ar5312phy.h │ │ │ │ ├── ar5312reg.h │ │ │ │ └── ar5315_gpio.c │ │ │ ├── ar5416 │ │ │ │ ├── ar2133.c │ │ │ │ ├── ar5416.h │ │ │ │ ├── ar5416.ini │ │ │ │ ├── ar5416_attach.c │ │ │ │ ├── ar5416_beacon.c │ │ │ │ ├── ar5416_eeprom.c │ │ │ │ ├── ar5416_gpio.c │ │ │ │ ├── ar5416_interrupts.c │ │ │ │ ├── ar5416_keycache.c │ │ │ │ ├── ar5416_misc.c │ │ │ │ ├── ar5416_phy.c │ │ │ │ ├── ar5416_power.c │ │ │ │ ├── ar5416_recv.c │ │ │ │ ├── ar5416_reset.c │ │ │ │ ├── ar5416_xmit.c │ │ │ │ ├── ar5416desc.h │ │ │ │ ├── ar5416phy.h │ │ │ │ ├── ar5416reg.h │ │ │ │ ├── ar9160.ini │ │ │ │ └── ar9160_attach.c │ │ │ ├── linux │ │ │ │ ├── ah_osdep.c │ │ │ │ ├── ah_osdep.h │ │ │ │ ├── makefile │ │ │ │ └── makefile.inc │ │ │ ├── makefile │ │ │ ├── mmakefile.src │ │ │ ├── opt_ah.h │ │ │ ├── public │ │ │ │ ├── alpha-elf.inc │ │ │ │ ├── ap30.inc │ │ │ │ ├── ap43.inc │ │ │ │ ├── ap51.inc │ │ │ │ ├── ap61.inc │ │ │ │ ├── arm-elf.inc │ │ │ │ ├── arm9-le-thumb-elf.inc │ │ │ │ ├── armeb-elf.inc │ │ │ │ ├── armv4-be-elf.inc │ │ │ │ ├── armv4-le-elf.inc │ │ │ │ ├── i386-elf.inc │ │ │ │ ├── m68k-elf.inc │ │ │ │ ├── mips-be-elf.inc │ │ │ │ ├── mips-le-elf.inc │ │ │ │ ├── mips1-be-elf.inc │ │ │ │ ├── mips1-le-elf.inc │ │ │ │ ├── mipsisa32-be-elf.inc │ │ │ │ ├── mipsisa32-le-elf.inc │ │ │ │ ├── powerpc-be-eabi.inc │ │ │ │ ├── powerpc-be-elf.inc │ │ │ │ ├── powerpc-le-eabi.inc │ │ │ │ ├── riscv-elf.inc │ │ │ │ ├── sh4-le-elf.inc │ │ │ │ ├── sparc-be-elf.inc │ │ │ │ ├── sparc64-be-elf.inc │ │ │ │ ├── wackelf.c │ │ │ │ ├── wisoc.inc │ │ │ │ ├── x86_64-elf.inc │ │ │ │ ├── xscale-be-elf.inc │ │ │ │ └── xscale-le-elf.inc │ │ │ ├── readme │ │ │ └── version.h │ │ ├── halsupport.c │ │ ├── initializers.h │ │ ├── io.h │ │ ├── mmakefile.src │ │ ├── mos_device.c │ │ ├── openpci.c │ │ ├── openpci_protos.h │ │ ├── os4_device.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_protos.h │ │ ├── prometheus.c │ │ ├── prometheus_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── unit.c │ │ ├── unit_protos.h │ │ └── wireless.h │ ├── broadcom4400 │ │ ├── LEGAL │ │ ├── aros_device.c │ │ ├── broadcom4400.h │ │ ├── compatibility.h │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── endian.h │ │ ├── ethernet.h │ │ ├── initializers.h │ │ ├── io.h │ │ ├── mii.h │ │ ├── mmakefile.src │ │ ├── pci.c │ │ ├── pci_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── task.h │ │ ├── timer.c │ │ ├── timer_protos.h │ │ ├── unit.c │ │ └── unit_protos.h │ ├── e1000 │ │ ├── COPYING │ │ ├── e1000-README │ │ ├── e1000.c │ │ ├── e1000.conf │ │ ├── e1000.h │ │ ├── e1000_82540.c │ │ ├── e1000_82541.c │ │ ├── e1000_82541.h │ │ ├── e1000_82542.c │ │ ├── e1000_82543.c │ │ ├── e1000_82543.h │ │ ├── e1000_api.c │ │ ├── e1000_api.h │ │ ├── e1000_defines.h │ │ ├── e1000_hw.h │ │ ├── e1000_init.c │ │ ├── e1000_mac.c │ │ ├── e1000_mac.h │ │ ├── e1000_manage.c │ │ ├── e1000_manage.h │ │ ├── e1000_nvm.c │ │ ├── e1000_nvm.h │ │ ├── e1000_osdep.h │ │ ├── e1000_phy.c │ │ ├── e1000_phy.h │ │ ├── e1000_regs.h │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── unit.c │ │ └── unit.h │ ├── emac │ │ ├── LEGAL │ │ ├── emac.conf │ │ ├── emac.h │ │ ├── emac_hw.c │ │ ├── emac_init.c │ │ ├── emac_unit.c │ │ ├── handler.c │ │ ├── mal.c │ │ ├── mal.h │ │ └── mmakefile.src │ ├── etherlink3 │ │ ├── LEGAL │ │ ├── Makefile │ │ ├── Makefile.MOS │ │ ├── Makefile.OS4 │ │ ├── Notes │ │ ├── aros_device.c │ │ ├── compatibility.h │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── endian.h │ │ ├── etherlink3.h │ │ ├── ethernet.h │ │ ├── expansion.c │ │ ├── expansion_protos.h │ │ ├── initializers.h │ │ ├── io.h │ │ ├── isa.c │ │ ├── isa_protos.h │ │ ├── mii.h │ │ ├── mmakefile.src │ │ ├── mos_device.c │ │ ├── openpci.c │ │ ├── openpci_protos.h │ │ ├── os4_device.c │ │ ├── pccard.c │ │ ├── pccard_protos.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_protos.h │ │ ├── powerpci.c │ │ ├── powerpci_protos.h │ │ ├── prometheus.c │ │ ├── prometheus_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── task.h │ │ ├── unit.c │ │ └── unit_protos.h │ ├── fec │ │ ├── LEGAL │ │ ├── fec.conf │ │ ├── fec.h │ │ ├── fec_handler.c │ │ ├── fec_hardware.c │ │ ├── fec_init.c │ │ ├── fec_unit.c │ │ └── mmakefile.src │ ├── intelpro100 │ │ ├── LEGAL │ │ ├── Makefile │ │ ├── Makefile.MOS │ │ ├── Makefile.OS4 │ │ ├── Notes │ │ ├── aros_device.c │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── dp83840.h │ │ ├── endian.h │ │ ├── expansion.c │ │ ├── expansion_protos.h │ │ ├── initializers.h │ │ ├── intelpro100.h │ │ ├── io.h │ │ ├── mii.h │ │ ├── mmakefile.src │ │ ├── mos_device.c │ │ ├── openpci.c │ │ ├── openpci_protos.h │ │ ├── os4_device.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_protos.h │ │ ├── powerpci.c │ │ ├── powerpci_protos.h │ │ ├── prometheus.c │ │ ├── prometheus_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── task.h │ │ ├── unit.c │ │ └── unit_protos.h │ ├── mmakefile.src │ ├── nForce │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── nforce.c │ │ ├── nforce.conf │ │ ├── nforce.h │ │ ├── nforce_init.c │ │ ├── unit.c │ │ └── unit.h │ ├── nvidianet │ │ ├── LEGAL │ │ ├── aros_device.c │ │ ├── compatibility.h │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── endian.h │ │ ├── ethernet.h │ │ ├── initializers.h │ │ ├── io.h │ │ ├── mii.h │ │ ├── mmakefile.src │ │ ├── nvidianet.h │ │ ├── pci.c │ │ ├── pci_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── task.h │ │ ├── timer.c │ │ ├── timer_protos.h │ │ ├── unit.c │ │ └── unit_protos.h │ ├── pcnet32 │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── pcnet32.c │ │ ├── pcnet32.conf │ │ ├── pcnet32.h │ │ ├── pcnet32_init.c │ │ ├── unit.c │ │ └── unit.h │ ├── ppp │ │ ├── LEGAL │ │ ├── ModemManager │ │ │ ├── Makefile │ │ │ ├── ModemManager.c │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── mmakefile.src │ │ │ └── ppp.h │ │ ├── device_protos.h │ │ ├── handler.c │ │ ├── init.c │ │ ├── mmakefile.src │ │ ├── ppp.c │ │ ├── ppp.conf │ │ ├── ppp.h │ │ └── serial.c │ ├── prism2 │ │ ├── LEGAL │ │ ├── Makefile │ │ ├── Makefile.MOS │ │ ├── Makefile.OS4 │ │ ├── aros_device.c │ │ ├── cybpci.c │ │ ├── cybpci_protos.h │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── encryption.c │ │ ├── encryption_68k.s │ │ ├── encryption_protos.h │ │ ├── endian.h │ │ ├── expansion.c │ │ ├── expansion_protos.h │ │ ├── firmware │ │ │ ├── .gitignore │ │ │ ├── HermesI │ │ │ ├── HermesII │ │ │ ├── LEGAL │ │ │ └── mmakefile.src │ │ ├── initializers.h │ │ ├── io.h │ │ ├── mmakefile.src │ │ ├── mos_device.c │ │ ├── openpci.c │ │ ├── openpci_protos.h │ │ ├── os4_device.c │ │ ├── pccard.c │ │ ├── pccard_protos.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_protos.h │ │ ├── plx9052.h │ │ ├── powerpci.c │ │ ├── powerpci_protos.h │ │ ├── prism2.h │ │ ├── prometheus.c │ │ ├── prometheus_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── timer.c │ │ ├── timer_protos.h │ │ ├── unit.c │ │ ├── unit_protos.h │ │ └── wireless.h │ ├── realtek8180 │ │ ├── Makefile │ │ ├── Makefile.MOS │ │ ├── aros_device.c │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── eeprom.c │ │ ├── eeprom_protos.h │ │ ├── encryption.c │ │ ├── encryption_protos.h │ │ ├── endian.h │ │ ├── initializers.h │ │ ├── io.h │ │ ├── mmakefile.src │ │ ├── mos_device.c │ │ ├── radio.c │ │ ├── radio_protos.h │ │ ├── realtek8187.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── startup.c │ │ ├── task.h │ │ ├── timer.c │ │ ├── timer_protos.h │ │ ├── unit.c │ │ ├── unit_protos.h │ │ ├── usb.c │ │ ├── usb_protos.h │ │ └── wireless.h │ ├── rhine │ │ ├── aros_device.c │ │ ├── device.c │ │ ├── device.h │ │ ├── device_protos.h │ │ ├── endian.h │ │ ├── ethernet.h │ │ ├── initializers.h │ │ ├── io.h │ │ ├── mmakefile.src │ │ ├── pci.c │ │ ├── pci_protos.h │ │ ├── request.c │ │ ├── request_protos.h │ │ ├── rhine.h │ │ ├── startup.c │ │ ├── task.h │ │ ├── timer.c │ │ ├── timer_protos.h │ │ ├── unit.c │ │ └── unit_protos.h │ ├── rtl8029 │ │ ├── LEGAL │ │ ├── driver.c │ │ ├── endian.h │ │ ├── header.c │ │ ├── io.h │ │ ├── mmakefile.src │ │ ├── ne2000.h │ │ └── rev.h │ ├── rtl8139 │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── rtl8139-README │ │ ├── rtl8139.c │ │ ├── rtl8139.conf │ │ ├── rtl8139.h │ │ ├── rtl8139_init.c │ │ ├── unit.c │ │ └── unit.h │ ├── rtl8168 │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── rtl8168-README │ │ ├── rtl8168.c │ │ ├── rtl8168.conf │ │ ├── rtl8168.h │ │ ├── rtl8168_init.c │ │ ├── unit.c │ │ └── unit.h │ ├── rtl8169 │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── rtl8101_hw.c │ │ ├── rtl8101_hw.h │ │ ├── rtl8168_hw.c │ │ ├── rtl8168_hw.h │ │ ├── rtl8169.c │ │ ├── rtl8169.conf │ │ ├── rtl8169.h │ │ ├── rtl8169_hw.c │ │ ├── rtl8169_hw.h │ │ ├── rtl8169_ids.c │ │ ├── rtl8169_init.c │ │ ├── unit.c │ │ └── unit.h │ ├── sis900 │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── sis900.c │ │ ├── sis900.conf │ │ ├── sis900.h │ │ ├── sis900_init.c │ │ ├── unit.c │ │ └── unit.h │ └── via-rhine │ │ ├── LEGAL │ │ ├── handler.c │ │ ├── mmakefile.src │ │ ├── unit.c │ │ ├── unit.h │ │ ├── via-rhine.c │ │ ├── via-rhine.h │ │ ├── via-rhine_init.c │ │ └── viarhine.conf ├── parallel │ ├── mmakefile.src │ ├── parallel.conf │ ├── parallel_init.c │ ├── parallel_intern.h │ ├── parallel_interrupthandlers.c │ └── parallel_support.c ├── printer │ ├── .gitignore │ ├── driver.c │ ├── gfx.c │ ├── include │ │ └── turboprint.h │ ├── mmakefile.src │ ├── prefs.c │ ├── prefs.h │ ├── printer.c │ ├── printer.conf │ ├── printer_intern.h │ └── text.c ├── printtofile │ ├── .gitignore │ ├── mmakefile.src │ ├── printtofile.c │ ├── printtofile.conf │ └── printtofile_intern.h ├── printtotool │ ├── .gitignore │ ├── mmakefile.src │ ├── printtotool.c │ ├── printtotool.conf │ └── printtotool_intern.h ├── ramdrive.conf ├── ramdrive_device.c ├── ramdrive_device_gcc.h └── serial │ ├── mmakefile.src │ ├── serial.conf │ ├── serial_init.c │ ├── serial_intern.h │ ├── serial_interrupthandlers.c │ └── serial_support.c ├── expansion ├── .gitignore └── mmakefile.src ├── fonts ├── Amiga-1251 │ ├── Amiga-1251_fonts.readme │ ├── SWScrFont_Amiga-1251 │ │ ├── 8 │ │ └── 13 │ ├── Scala_Amiga-1251 │ │ ├── 6 │ │ ├── 8 │ │ └── 11 │ ├── XEN_Amiga-1251 │ │ ├── 8 │ │ ├── 9 │ │ ├── 11 │ │ └── 13 │ ├── XHelvetica_Amiga-1251 │ │ ├── 9 │ │ ├── 11 │ │ └── 13 │ ├── mmakefile │ └── topaz_Amiga-1251 │ │ ├── 8 │ │ ├── 9 │ │ └── 11 ├── AmigaPL │ ├── .gitignore │ ├── AmigaPL_fonts.readme │ ├── ISO-ArialPL.font │ ├── ISO-ArialPL │ │ ├── 10 │ │ ├── 12 │ │ ├── 14 │ │ ├── 16 │ │ ├── 18 │ │ ├── 20 │ │ └── 22 │ ├── ISO-topazPL.font │ ├── ISO-topazPL │ │ └── 8f │ ├── ISOCourierPL.font │ ├── ISOCourierPL │ │ ├── 11f │ │ ├── 14f │ │ ├── 16f │ │ ├── 19f │ │ └── 24f │ ├── ISOHelveticaPL.font │ ├── ISOHelveticaPL │ │ ├── 11 │ │ ├── 13 │ │ ├── 15 │ │ ├── 17 │ │ ├── 22 │ │ └── 29 │ ├── ISOTimesPL.font │ ├── ISOTimesPL │ │ ├── 13 │ │ ├── 15 │ │ ├── 17 │ │ ├── 18 │ │ ├── 21 │ │ └── 27 │ ├── SystemFont.font │ ├── SystemFont │ │ ├── 10f │ │ └── 8f │ ├── SystemFontP.font │ ├── SystemFontP │ │ ├── 11 │ │ └── 12 │ └── mmakefile.src ├── XEN │ ├── 8 │ ├── 9 │ ├── 11 │ └── 13 ├── arial │ ├── 11 │ ├── 12 │ ├── 13 │ ├── 15 │ ├── 16 │ ├── 20 │ ├── 25 │ ├── 30 │ ├── 35 │ └── 40 ├── fixed │ ├── 8 │ ├── 9 │ ├── 11 │ ├── 12 │ ├── 13 │ ├── 14 │ └── 16 ├── mmakefile ├── stop │ ├── 15 │ ├── 18 │ ├── 20 │ ├── 30 │ └── 40 ├── truetype │ ├── .gitignore │ ├── architext │ │ ├── .gitignore │ │ ├── 1001fonts-architext-eula.txt │ │ ├── Architex.ttf │ │ ├── Architext Regular.font │ │ ├── Architext Regular.otag │ │ └── mmakefile.src │ ├── artilla-script │ │ ├── .gitignore │ │ ├── Artilla Script Regular.font │ │ ├── Artilla Script Regular.otag │ │ ├── Artilla.otf │ │ ├── Artilla.ttf │ │ ├── Cover Artilla.png │ │ ├── Description.txt │ │ ├── Readme.txt │ │ └── mmakefile.src │ ├── barlow │ │ ├── .gitignore │ │ ├── Barlow Black Italic.font │ │ ├── Barlow Black Italic.otag │ │ ├── Barlow Black.font │ │ ├── Barlow Black.otag │ │ ├── Barlow Bold Italic.font │ │ ├── Barlow Bold Italic.otag │ │ ├── Barlow Bold.font │ │ ├── Barlow Bold.otag │ │ ├── Barlow ExtraBold Italic.font │ │ ├── Barlow ExtraBold Italic.otag │ │ ├── Barlow ExtraBold.font │ │ ├── Barlow ExtraBold.otag │ │ ├── Barlow ExtraLight Italic.font │ │ ├── Barlow ExtraLight Italic.otag │ │ ├── Barlow ExtraLight.font │ │ ├── Barlow ExtraLight.otag │ │ ├── Barlow Italic.font │ │ ├── Barlow Italic.otag │ │ ├── Barlow Light Italic.font │ │ ├── Barlow Light Italic.otag │ │ ├── Barlow Light.font │ │ ├── Barlow Light.otag │ │ ├── Barlow Medium Italic.font │ │ ├── Barlow Medium Italic.otag │ │ ├── Barlow Medium.font │ │ ├── Barlow Medium.otag │ │ ├── Barlow Regular.font │ │ ├── Barlow Regular.otag │ │ ├── Barlow SemiBold Italic.font │ │ ├── Barlow SemiBold Italic.otag │ │ ├── Barlow SemiBold.font │ │ ├── Barlow SemiBold.otag │ │ ├── Barlow Thin Italic.font │ │ ├── Barlow Thin Italic.otag │ │ ├── Barlow Thin.font │ │ ├── Barlow Thin.otag │ │ ├── Barlow-Black.ttf │ │ ├── Barlow-BlackItalic.ttf │ │ ├── Barlow-Bold.ttf │ │ ├── Barlow-BoldItalic.ttf │ │ ├── Barlow-ExtraBold.ttf │ │ ├── Barlow-ExtraBoldItalic.ttf │ │ ├── Barlow-ExtraLight.ttf │ │ ├── Barlow-ExtraLightItalic.ttf │ │ ├── Barlow-Italic.ttf │ │ ├── Barlow-Light.ttf │ │ ├── Barlow-LightItalic.ttf │ │ ├── Barlow-Medium.ttf │ │ ├── Barlow-MediumItalic.ttf │ │ ├── Barlow-Regular.ttf │ │ ├── Barlow-SemiBold.ttf │ │ ├── Barlow-SemiBoldItalic.ttf │ │ ├── Barlow-Thin.ttf │ │ ├── Barlow-ThinItalic.ttf │ │ ├── OFL.txt │ │ └── mmakefile.src │ ├── bellefair │ │ ├── .gitignore │ │ ├── Bellefair Regular.font │ │ ├── Bellefair Regular.otag │ │ ├── Bellefair-Regular.ttf │ │ ├── OFL.txt │ │ └── mmakefile.src │ ├── bitstream │ │ ├── COPYRIGHT │ │ ├── LEGAL │ │ ├── Vera Mono Bold Italic.font │ │ ├── Vera Mono Bold Italic.otag │ │ ├── Vera Mono Bold.font │ │ ├── Vera Mono Bold.otag │ │ ├── Vera Mono Italic.font │ │ ├── Vera Mono Italic.otag │ │ ├── Vera Mono.font │ │ ├── Vera Mono.otag │ │ ├── Vera Sans Bold Italic.font │ │ ├── Vera Sans Bold Italic.otag │ │ ├── Vera Sans Bold.font │ │ ├── Vera Sans Bold.otag │ │ ├── Vera Sans Italic.font │ │ ├── Vera Sans Italic.otag │ │ ├── Vera Sans.font │ │ ├── Vera Sans.otag │ │ ├── Vera Serif Bold.font │ │ ├── Vera Serif Bold.otag │ │ ├── Vera Serif.font │ │ ├── Vera Serif.otag │ │ ├── VeraMono.ttf │ │ ├── VeraMonoBold.ttf │ │ ├── VeraMonoBoldItalic.ttf │ │ ├── VeraMonoItalic.ttf │ │ ├── VeraSans.ttf │ │ ├── VeraSansBold.ttf │ │ ├── VeraSansBoldItalic.ttf │ │ ├── VeraSansItalic.ttf │ │ ├── VeraSerif.ttf │ │ ├── VeraSerifBold.ttf │ │ └── mmakefile.src │ ├── carbon │ │ ├── .gitignore │ │ ├── Carbon Black.font │ │ ├── Carbon Black.otag │ │ ├── Carbon Phyber.font │ │ ├── Carbon Phyber.otag │ │ ├── CarbonBl.ttf │ │ ├── CarbonPhyber.ttf │ │ ├── mmakefile.src │ │ ├── read-this.html │ │ └── typodermic-eula-02-2014.pdf │ ├── cellestial │ │ ├── .gitignore │ │ ├── 1001fonts-cellestial-eula.txt │ │ ├── Cellestial Regular.font │ │ ├── Cellestial Regular.otag │ │ ├── Cellestial.ttf │ │ └── mmakefile.src │ ├── dustismo-roman │ │ ├── .gitignore │ │ ├── Dustismo Roman Bold Italic.font │ │ ├── Dustismo Roman Bold Italic.otag │ │ ├── Dustismo Roman Bold.font │ │ ├── Dustismo Roman Bold.otag │ │ ├── Dustismo Roman Italic.font │ │ ├── Dustismo Roman Italic.otag │ │ ├── Dustismo Roman Regular.font │ │ ├── Dustismo Roman Regular.otag │ │ ├── DustismoRoman.ttf │ │ ├── DustismoRomanBold.ttf │ │ ├── DustismoRomanItalic.ttf │ │ ├── DustismoRomanItalicBold.ttf │ │ ├── license.txt │ │ └── mmakefile.src │ ├── elronetmono │ │ ├── ElroNet Monospace Normal.font │ │ ├── ElroNet Monospace Normal.otag │ │ ├── Elronmonospace.ttf │ │ └── mmakefile.src │ ├── good-times │ │ ├── .gitignore │ │ ├── Good Times Regular.font │ │ ├── Good Times Regular.otag │ │ ├── GoodTimesRg.ttf │ │ ├── mmakefile.src │ │ ├── read-this.html │ │ └── typodermic-eula-02-2014.pdf │ ├── magnificent │ │ ├── .gitignore │ │ ├── Magnificent Regular.font │ │ ├── Magnificent Regular.otag │ │ ├── Magnificent.ttf │ │ ├── Poster.jpg │ │ ├── mmakefile.src │ │ └── readme.txt │ ├── mmakefile.src │ ├── opensans │ │ ├── LICENSE.txt │ │ ├── Open Sans Bold Italic.font │ │ ├── Open Sans Bold Italic.otag │ │ ├── Open Sans Bold.font │ │ ├── Open Sans Bold.otag │ │ ├── Open Sans Extrabold Italic.font │ │ ├── Open Sans Extrabold Italic.otag │ │ ├── Open Sans Extrabold.font │ │ ├── Open Sans Extrabold.otag │ │ ├── Open Sans Italic.font │ │ ├── Open Sans Italic.otag │ │ ├── Open Sans Light Italic.font │ │ ├── Open Sans Light Italic.otag │ │ ├── Open Sans Light.font │ │ ├── Open Sans Light.otag │ │ ├── Open Sans Regular.font │ │ ├── Open Sans Regular.otag │ │ ├── Open Sans Semibold Italic.font │ │ ├── Open Sans Semibold Italic.otag │ │ ├── Open Sans Semibold.font │ │ ├── Open Sans Semibold.otag │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ ├── OpenSans-SemiboldItalic.ttf │ │ └── mmakefile.src │ ├── pakenham-free │ │ ├── .gitignore │ │ ├── Pakenham Regular.font │ │ ├── Pakenham Regular.otag │ │ ├── PakenhamRg.ttf │ │ ├── mmakefile.src │ │ ├── read-this.html │ │ └── typodermic-eula-02-2014.pdf │ ├── spectral │ │ ├── .gitignore │ │ ├── OFL.txt │ │ ├── Spectral Bold Italic.font │ │ ├── Spectral Bold Italic.otag │ │ ├── Spectral Bold.font │ │ ├── Spectral Bold.otag │ │ ├── Spectral ExtraBold Italic.font │ │ ├── Spectral ExtraBold Italic.otag │ │ ├── Spectral ExtraBold.font │ │ ├── Spectral ExtraBold.otag │ │ ├── Spectral ExtraLight Italic.font │ │ ├── Spectral ExtraLight Italic.otag │ │ ├── Spectral ExtraLight.font │ │ ├── Spectral ExtraLight.otag │ │ ├── Spectral Italic.font │ │ ├── Spectral Italic.otag │ │ ├── Spectral Light Italic.font │ │ ├── Spectral Light Italic.otag │ │ ├── Spectral Light.font │ │ ├── Spectral Light.otag │ │ ├── Spectral Medium Italic.font │ │ ├── Spectral Medium Italic.otag │ │ ├── Spectral Medium.font │ │ ├── Spectral Medium.otag │ │ ├── Spectral Regular.font │ │ ├── Spectral Regular.otag │ │ ├── Spectral SemiBold Italic.font │ │ ├── Spectral SemiBold Italic.otag │ │ ├── Spectral SemiBold.font │ │ ├── Spectral SemiBold.otag │ │ ├── Spectral-Bold.ttf │ │ ├── Spectral-BoldItalic.ttf │ │ ├── Spectral-ExtraBold.ttf │ │ ├── Spectral-ExtraBoldItalic.ttf │ │ ├── Spectral-ExtraLight.ttf │ │ ├── Spectral-ExtraLightItalic.ttf │ │ ├── Spectral-Italic.ttf │ │ ├── Spectral-Light.ttf │ │ ├── Spectral-LightItalic.ttf │ │ ├── Spectral-Medium.ttf │ │ ├── Spectral-MediumItalic.ttf │ │ ├── Spectral-Regular.ttf │ │ ├── Spectral-SemiBold.ttf │ │ ├── Spectral-SemiBoldItalic.ttf │ │ └── mmakefile.src │ ├── tooneynoodle │ │ ├── .gitignore │ │ ├── 1001fonts-tooneynoodle-eula.txt │ │ ├── Tooney Noodle NF Regular.font │ │ ├── Tooney Noodle NF Regular.otag │ │ ├── TooneyNoodleNF.otf │ │ ├── TooneyNoodleNF.ttf │ │ └── mmakefile.src │ ├── videophreak │ │ ├── .gitignore │ │ ├── VideoPhreak.ttf │ │ ├── Videophreak Regular.font │ │ ├── Videophreak Regular.otag │ │ ├── mmakefile.src │ │ └── pizzadudedotdk.txt │ └── work-sans │ │ ├── .gitignore │ │ ├── OFL.txt │ │ ├── Work Sans Black Italic.font │ │ ├── Work Sans Black Italic.otag │ │ ├── Work Sans Black.font │ │ ├── Work Sans Black.otag │ │ ├── Work Sans Bold Italic.font │ │ ├── Work Sans Bold Italic.otag │ │ ├── Work Sans Bold.font │ │ ├── Work Sans Bold.otag │ │ ├── Work Sans ExtraBold Italic.font │ │ ├── Work Sans ExtraBold Italic.otag │ │ ├── Work Sans ExtraBold.font │ │ ├── Work Sans ExtraBold.otag │ │ ├── Work Sans ExtraLight Italic.font │ │ ├── Work Sans ExtraLight Italic.otag │ │ ├── Work Sans ExtraLight.font │ │ ├── Work Sans ExtraLight.otag │ │ ├── Work Sans Italic.font │ │ ├── Work Sans Italic.otag │ │ ├── Work Sans Light Italic.font │ │ ├── Work Sans Light Italic.otag │ │ ├── Work Sans Light.font │ │ ├── Work Sans Light.otag │ │ ├── Work Sans Medium Italic.font │ │ ├── Work Sans Medium Italic.otag │ │ ├── Work Sans Medium.font │ │ ├── Work Sans Medium.otag │ │ ├── Work Sans Regular.font │ │ ├── Work Sans Regular.otag │ │ ├── Work Sans SemiBold Italic.font │ │ ├── Work Sans SemiBold Italic.otag │ │ ├── Work Sans SemiBold.font │ │ ├── Work Sans SemiBold.otag │ │ ├── Work Sans Thin Italic.font │ │ ├── Work Sans Thin Italic.otag │ │ ├── Work Sans Thin.font │ │ ├── Work Sans Thin.otag │ │ ├── WorkSans-Black.ttf │ │ ├── WorkSans-BlackItalic.ttf │ │ ├── WorkSans-Bold.ttf │ │ ├── WorkSans-BoldItalic.ttf │ │ ├── WorkSans-ExtraBold.ttf │ │ ├── WorkSans-ExtraBoldItalic.ttf │ │ ├── WorkSans-ExtraLight.ttf │ │ ├── WorkSans-ExtraLightItalic.ttf │ │ ├── WorkSans-Italic.ttf │ │ ├── WorkSans-Light.ttf │ │ ├── WorkSans-LightItalic.ttf │ │ ├── WorkSans-Medium.ttf │ │ ├── WorkSans-MediumItalic.ttf │ │ ├── WorkSans-Regular.ttf │ │ ├── WorkSans-SemiBold.ttf │ │ ├── WorkSans-SemiBoldItalic.ttf │ │ ├── WorkSans-Thin.ttf │ │ ├── WorkSans-ThinItalic.ttf │ │ └── mmakefile.src └── ttcourier │ ├── 12 │ ├── 14 │ ├── 16 │ ├── 17 │ ├── 18 │ ├── 20 │ ├── 25 │ ├── 30 │ ├── 35 │ └── 40 ├── fs ├── automount-config ├── debug │ ├── .gitignore │ ├── debug-handler.c │ ├── debug.conf │ └── mmakefile.src ├── mmakefile ├── ntfs │ ├── .gitignore │ ├── cache.c │ ├── cache.h │ ├── charset.c │ ├── charset.h │ ├── debug.h │ ├── direntry.c │ ├── disk.c │ ├── lock.c │ ├── main.c │ ├── mmakefile.src │ ├── names.c │ ├── notify.c │ ├── ntfs.c │ ├── ntfs_constants.h │ ├── ntfs_fs.h │ ├── ntfs_protos.h │ ├── ntfs_struct.h │ ├── ops.c │ ├── packet.c │ ├── startup.c │ ├── support.c │ ├── support.h │ └── timer.c ├── pipe │ ├── Makefile │ ├── POSTER │ ├── README │ ├── main.c │ ├── mmakefile.src │ ├── pipe-handler.c │ ├── pipe-handler.h │ ├── pipebuf.c │ ├── pipebuf.h │ ├── pipecreate.c │ ├── pipecreate.h │ ├── pipedebug.c │ ├── pipedebug.h │ ├── pipedir.c │ ├── pipedir.h │ ├── pipelists.c │ ├── pipelists.h │ ├── pipename.c │ ├── pipename.h │ ├── pipesched.c │ ├── pipesched.h │ └── tap_demo └── port │ ├── .gitignore │ ├── mmakefile.src │ ├── port-handler.c │ └── port.conf ├── hidds ├── agp │ ├── .gitignore │ ├── agp.conf │ ├── agp3bridgedeviceclass.c │ ├── agp_private.h │ ├── agpclass.c │ ├── g33bridgedeviceclass.c │ ├── genericbridgedeviceclass.c │ ├── i7505bridgedeviceclass.c │ ├── i845bridgedeviceclass.c │ ├── i8xxbridgedeviceclass.c │ ├── i915bridgedeviceclass.c │ ├── i965bridgedeviceclass.c │ ├── include │ │ └── agp.h │ ├── init.c │ ├── mmakefile.src │ ├── sisagp3bridgedeviceclass.c │ ├── sisbridgedeviceclass.c │ ├── viaagp3bridgedeviceclass.c │ └── viabridgedeviceclass.c ├── controller │ ├── controller.conf │ ├── controller.h │ ├── controller_init.c │ ├── controllerclass.c │ ├── controllersubsystem.c │ ├── driverdata.c │ ├── include │ │ └── controller.h │ └── mmakefile.src ├── gallium │ ├── .gitignore │ ├── gallium.conf │ ├── gallium_class.c │ ├── gallium_init.c │ ├── gallium_intern.h │ ├── include │ │ └── gallium.h │ └── mmakefile.src ├── i2c │ ├── .gitignore │ ├── i2c.conf │ ├── i2c.h │ ├── i2c_init.c │ ├── i2cclass.c │ ├── i2cdeviceclass.c │ ├── include │ │ └── i2c.h │ ├── mmakefile.src │ └── stubs │ │ ├── .gitignore │ │ ├── i2c_stubs.c │ │ └── mmakefile.src ├── nouveau │ ├── .gitignore │ ├── LEGAL │ ├── arosc_emul.c │ ├── compositor.h │ ├── drm │ │ ├── drm-aros │ │ │ ├── drmP.h │ │ │ ├── drm_aros.c │ │ │ ├── drm_aros.h │ │ │ ├── drm_aros_config.h │ │ │ ├── drm_bufs.c │ │ │ ├── drm_compat_funcs.c │ │ │ ├── drm_compat_funcs.h │ │ │ ├── drm_compat_types.h │ │ │ ├── drm_drv.c │ │ │ ├── drm_linux_list.h │ │ │ ├── drm_mem_util.h │ │ │ ├── drm_redefines.h │ │ │ └── nouveau │ │ │ │ ├── nouveau_drv.c │ │ │ │ └── nouveau_pciids.h │ │ ├── drm.diff │ │ ├── drm │ │ │ ├── drm.h │ │ │ ├── drm_agpsupport.c │ │ │ ├── drm_cache.c │ │ │ ├── drm_cache.h │ │ │ ├── drm_crtc.c │ │ │ ├── drm_crtc.h │ │ │ ├── drm_crtc_helper.c │ │ │ ├── drm_crtc_helper.h │ │ │ ├── drm_dp_helper.h │ │ │ ├── drm_edid.c │ │ │ ├── drm_edid.h │ │ │ ├── drm_edid_modes.h │ │ │ ├── drm_encoder_slave.h │ │ │ ├── drm_fixed.h │ │ │ ├── drm_gem.c │ │ │ ├── drm_global.c │ │ │ ├── drm_global.h │ │ │ ├── drm_hashtab.h │ │ │ ├── drm_irq.c │ │ │ ├── drm_memory.c │ │ │ ├── drm_mm.c │ │ │ ├── drm_mm.h │ │ │ ├── drm_mode.h │ │ │ ├── drm_modes.c │ │ │ ├── drm_sarea.h │ │ │ ├── nouveau │ │ │ │ ├── nouveau_bios.c │ │ │ │ ├── nouveau_bios.h │ │ │ │ ├── nouveau_bo_renamed.c │ │ │ │ ├── nouveau_calc.c │ │ │ │ ├── nouveau_channel_renamed.c │ │ │ │ ├── nouveau_connector.c │ │ │ │ ├── nouveau_connector.h │ │ │ │ ├── nouveau_crtc.h │ │ │ │ ├── nouveau_display.c │ │ │ │ ├── nouveau_dma.c │ │ │ │ ├── nouveau_dma.h │ │ │ │ ├── nouveau_dp.c │ │ │ │ ├── nouveau_drv.h │ │ │ │ ├── nouveau_encoder.h │ │ │ │ ├── nouveau_fb.h │ │ │ │ ├── nouveau_fence_renamed.c │ │ │ │ ├── nouveau_gem.c │ │ │ │ ├── nouveau_grctx.h │ │ │ │ ├── nouveau_hw.c │ │ │ │ ├── nouveau_hw.h │ │ │ │ ├── nouveau_i2c.c │ │ │ │ ├── nouveau_i2c.h │ │ │ │ ├── nouveau_irq.c │ │ │ │ ├── nouveau_mem.c │ │ │ │ ├── nouveau_mm_renamed.c │ │ │ │ ├── nouveau_mm_renamed.h │ │ │ │ ├── nouveau_notifier_renamed.c │ │ │ │ ├── nouveau_object.c │ │ │ │ ├── nouveau_pm.h │ │ │ │ ├── nouveau_ramht.c │ │ │ │ ├── nouveau_ramht.h │ │ │ │ ├── nouveau_reg.h │ │ │ │ ├── nouveau_sgdma.c │ │ │ │ ├── nouveau_state.c │ │ │ │ ├── nouveau_temp.c │ │ │ │ ├── nouveau_ttm.c │ │ │ │ ├── nouveau_util.c │ │ │ │ ├── nouveau_util.h │ │ │ │ ├── nouveau_vm.c │ │ │ │ ├── nouveau_vm.h │ │ │ │ ├── nouveau_volt.c │ │ │ │ ├── nv04_crtc.c │ │ │ │ ├── nv04_cursor.c │ │ │ │ ├── nv04_dac.c │ │ │ │ ├── nv04_dfp.c │ │ │ │ ├── nv04_display.c │ │ │ │ ├── nv04_fb.c │ │ │ │ ├── nv04_fifo.c │ │ │ │ ├── nv04_graph.c │ │ │ │ ├── nv04_instmem.c │ │ │ │ ├── nv04_mc.c │ │ │ │ ├── nv04_pm.c │ │ │ │ ├── nv04_timer.c │ │ │ │ ├── nv04_tv.c │ │ │ │ ├── nv10_fb.c │ │ │ │ ├── nv10_fifo.c │ │ │ │ ├── nv10_gpio.c │ │ │ │ ├── nv10_graph.c │ │ │ │ ├── nv17_tv.c │ │ │ │ ├── nv17_tv.h │ │ │ │ ├── nv17_tv_modes.c │ │ │ │ ├── nv20_graph.c │ │ │ │ ├── nv30_fb.c │ │ │ │ ├── nv31_mpeg.c │ │ │ │ ├── nv40_fb.c │ │ │ │ ├── nv40_fifo.c │ │ │ │ ├── nv40_graph.c │ │ │ │ ├── nv40_grctx.c │ │ │ │ ├── nv40_mc.c │ │ │ │ ├── nv40_pm.c │ │ │ │ ├── nv50_calc.c │ │ │ │ ├── nv50_crtc.c │ │ │ │ ├── nv50_cursor.c │ │ │ │ ├── nv50_dac.c │ │ │ │ ├── nv50_display.c │ │ │ │ ├── nv50_display.h │ │ │ │ ├── nv50_evo.c │ │ │ │ ├── nv50_evo.h │ │ │ │ ├── nv50_fb.c │ │ │ │ ├── nv50_fifo.c │ │ │ │ ├── nv50_gpio.c │ │ │ │ ├── nv50_graph.c │ │ │ │ ├── nv50_grctx.c │ │ │ │ ├── nv50_instmem.c │ │ │ │ ├── nv50_mc.c │ │ │ │ ├── nv50_mpeg.c │ │ │ │ ├── nv50_pm.c │ │ │ │ ├── nv50_sor.c │ │ │ │ ├── nv50_vm.c │ │ │ │ ├── nv50_vram.c │ │ │ │ ├── nv84_bsp.c │ │ │ │ ├── nv84_crypt.c │ │ │ │ ├── nv84_vp.c │ │ │ │ ├── nv98_crypt.c │ │ │ │ ├── nv98_ppp.c │ │ │ │ ├── nva3_copy.c │ │ │ │ ├── nva3_copy.fuc.h │ │ │ │ ├── nva3_pm.c │ │ │ │ ├── nvc0_copy.c │ │ │ │ ├── nvc0_copy.fuc.h │ │ │ │ ├── nvc0_fb.c │ │ │ │ ├── nvc0_fifo.c │ │ │ │ ├── nvc0_graph.c │ │ │ │ ├── nvc0_graph.h │ │ │ │ ├── nvc0_grctx.c │ │ │ │ ├── nvc0_grgpc.fuc.h │ │ │ │ ├── nvc0_grhub.fuc.h │ │ │ │ ├── nvc0_instmem.c │ │ │ │ ├── nvc0_pm.c │ │ │ │ ├── nvc0_vm.c │ │ │ │ ├── nvc0_vram.c │ │ │ │ ├── nvd0_display.c │ │ │ │ └── nvreg.h │ │ │ ├── nouveau_drm.h │ │ │ └── ttm │ │ │ │ ├── ttm_agp_backend.c │ │ │ │ ├── ttm_bo.c │ │ │ │ ├── ttm_bo_api.h │ │ │ │ ├── ttm_bo_driver.h │ │ │ │ ├── ttm_bo_manager.c │ │ │ │ ├── ttm_bo_util.c │ │ │ │ ├── ttm_module.h │ │ │ │ ├── ttm_placement.h │ │ │ │ └── ttm_tt.c │ │ ├── libdrm.diff │ │ ├── libdrm │ │ │ ├── arosdrm.c │ │ │ ├── arosdrm.h │ │ │ ├── arosdrm_nouveau.c │ │ │ ├── arosdrmmode.c │ │ │ ├── arosdrmmode.h │ │ │ ├── libdrm_lists.h │ │ │ └── nouveau │ │ │ │ ├── nouveau_bo.c │ │ │ │ ├── nouveau_bo.h │ │ │ │ ├── nouveau_channel.c │ │ │ │ ├── nouveau_channel.h │ │ │ │ ├── nouveau_device.c │ │ │ │ ├── nouveau_device.h │ │ │ │ ├── nouveau_drmif.h │ │ │ │ ├── nouveau_grobj.c │ │ │ │ ├── nouveau_grobj.h │ │ │ │ ├── nouveau_notifier.c │ │ │ │ ├── nouveau_notifier.h │ │ │ │ ├── nouveau_private.h │ │ │ │ ├── nouveau_pushbuf.c │ │ │ │ ├── nouveau_pushbuf.h │ │ │ │ ├── nouveau_reloc.c │ │ │ │ ├── nouveau_reloc.h │ │ │ │ ├── nouveau_resource.c │ │ │ │ ├── nouveau_resource.h │ │ │ │ ├── nv04_pushbuf.h │ │ │ │ └── nvc0_pushbuf.h │ │ └── sources.drm.mak │ ├── mmakefile.src │ ├── nouveau.conf │ ├── nouveau_accel.c │ ├── nouveau_bitmapclass.c │ ├── nouveau_compositor.h │ ├── nouveau_compositorclass.c │ ├── nouveau_galliumclass.c │ ├── nouveau_hiddclass.c │ ├── nouveau_i2cclass.c │ ├── nouveau_init.c │ ├── nouveau_intern.h │ ├── pci-device-mock │ │ ├── .gitignore │ │ ├── NV44A.c │ │ ├── NVG86.c │ │ ├── NVGF100.c │ │ ├── NVGTS250.c │ │ ├── README │ │ ├── SIS661FX.c │ │ ├── mmakefile.src │ │ ├── pcimock.conf │ │ ├── pcimock_intern.h │ │ ├── pcimockdriverclass.c │ │ ├── pcimockhardware.h │ │ ├── pcimockhardware_intern.h │ │ └── pcimockhardwareclass.c │ ├── xf86-video-nouveau.diff │ └── xf86-video-nouveau │ │ ├── nouveau_class.h │ │ ├── nouveau_exa.c │ │ ├── nouveau_local.h │ │ ├── nv04_exa.c │ │ ├── nv10_exa.c │ │ ├── nv30_exa.c │ │ ├── nv30_shaders.c │ │ ├── nv30_shaders.h │ │ ├── nv40_exa.c │ │ ├── nv50_accel.c │ │ ├── nv50_accel.h │ │ ├── nv50_defs.xml.h │ │ ├── nv50_exa.c │ │ ├── nv50_texture.h │ │ ├── nv_3ddefs.xml.h │ │ ├── nv_accel_common.c │ │ ├── nv_include.h │ │ ├── nv_object.xml.h │ │ ├── nv_rop.h │ │ ├── nvc0_3d.xml.h │ │ ├── nvc0_accel.c │ │ ├── nvc0_accel.h │ │ ├── nvc0_exa.c │ │ └── nvc0_m2mf.xml.h ├── nvidia │ ├── .gitignore │ ├── mmakefile.src │ ├── nv.h │ ├── nv_dma.h │ ├── nv_local.h │ ├── nvhardware.c │ ├── nvidia.conf │ ├── nvidia_init.c │ ├── nvidiabitmap.c │ ├── nvidiaclass.c │ ├── planarbm.c │ └── riva_hw.h ├── parallel │ ├── include │ │ └── parallel.h │ ├── mmakefile.src │ └── parallel_stubs.c ├── radeon │ ├── .gitignore │ ├── ati.h │ ├── ati_bitmap.c │ ├── ati_class.c │ ├── ati_i2c.c │ ├── ati_init.c │ ├── bitmap.c │ ├── bitmap.h │ ├── ids.c │ ├── ids.h │ ├── mmakefile.src │ ├── planarbm.c │ ├── radeon.conf │ ├── radeon.h │ ├── radeon_accel.c │ ├── radeon_accel.h │ ├── radeon_bios.c │ ├── radeon_bios.h │ ├── radeon_driver.c │ ├── radeon_macros.h │ └── radeon_reg.h ├── serial │ ├── include │ │ └── serial.h │ ├── mmakefile.src │ └── serial_stubs.c ├── sm502gfx │ ├── .gitignore │ ├── mmakefile.src │ ├── sm502gfx.conf │ ├── sm502gfx_bitmap.h │ ├── sm502gfx_bitmapclass.c │ ├── sm502gfx_cursor.h │ ├── sm502gfx_hidd.h │ ├── sm502gfx_hiddclass.c │ ├── sm502gfx_init.c │ ├── sm502gfx_support.c │ └── sm502gfx_support.h ├── softpipe │ ├── .gitignore │ ├── arosc_emul.c │ ├── mmakefile.src │ ├── softpipe.conf │ ├── softpipe_galliumclass.c │ ├── softpipe_init.c │ └── softpipe_intern.h └── vmwaresvga │ ├── .gitignore │ ├── arosc_emul.c │ ├── mmakefile.src │ ├── svga_limits.h │ ├── vmwaresvga.conf │ ├── vmwaresvga_bitmap.h │ ├── vmwaresvga_bitmap_common.c │ ├── vmwaresvga_gallium.h │ ├── vmwaresvga_gallium_ctx.c │ ├── vmwaresvga_gallium_screen.c │ ├── vmwaresvga_gallium_surf.c │ ├── vmwaresvga_galliumclass.c │ ├── vmwaresvga_hardware.c │ ├── vmwaresvga_hardware.h │ ├── vmwaresvga_hidd.h │ ├── vmwaresvga_hiddclass.c │ ├── vmwaresvga_init.c │ ├── vmwaresvga_intern.h │ ├── vmwaresvga_mouse.h │ ├── vmwaresvga_offbitmapclass.c │ ├── vmwaresvga_onbitmapclass.c │ └── vmwaresvga_util.c ├── libs ├── amigaguide │ ├── addamigaguidehosta.c │ ├── amigaguide.conf │ ├── amigaguide_intern.h │ ├── amigaguidesignal.c │ ├── closeamigaguide.c │ ├── expungexref.c │ ├── getamigaguideattr.c │ ├── getamigaguidemsg.c │ ├── getamigaguidestring.c │ ├── loadxref.c │ ├── lockamigaguidebase.c │ ├── mmakefile.src │ ├── openamigaguidea.c │ ├── openamigaguideasynca.c │ ├── removeamigaguidehosta.c │ ├── replyamigaguidemsg.c │ ├── sendamigaguidecmda.c │ ├── sendamigaguidecontexta.c │ ├── setamigaguideattrsa.c │ ├── setamigaguidecontexta.c │ └── unlockamigaguidebase.c ├── asl │ ├── abortaslrequest.c │ ├── activateaslrequest.c │ ├── allocaslrequest.c │ ├── allocfilerequest.c │ ├── arrowclass.c │ ├── asl.conf │ ├── asl_init.c │ ├── asl_intern.h │ ├── aslrequest.c │ ├── basicfuncs.c │ ├── buttonclass.c │ ├── colorpickerclass.c │ ├── coolimagedata.c │ ├── coolimages.h │ ├── cycleclass.c │ ├── eraserclass.c │ ├── filereqhooks.c │ ├── filereqhooks.h │ ├── filereqsupport.c │ ├── filereqsupport.h │ ├── fontpreviewclass.c │ ├── fontreqhooks.c │ ├── fontreqhooks.h │ ├── fontreqsupport.c │ ├── fontreqsupport.h │ ├── fontstyleclass.c │ ├── freeaslrequest.c │ ├── freefilerequest.c │ ├── gadgets.c │ ├── layout.h │ ├── listviewclass.c │ ├── locale.c │ ├── mmakefile.src │ ├── modereqhooks.c │ ├── modereqhooks.h │ ├── modereqsupport.c │ ├── modereqsupport.h │ ├── propclass.c │ ├── requestfile.c │ ├── specialreq.c │ ├── specialreq.h │ └── stringclass.c ├── bullet │ ├── bullet.conf │ ├── closeengine.c │ ├── mmakefile.src │ ├── obtaininfoa.c │ ├── openengine.c │ ├── releaseinfoa.c │ └── setinfoa.c ├── camd │ ├── addmidilinka.c │ ├── camd.conf │ ├── camd_init.c │ ├── camd_intern.h │ ├── camdwait.c │ ├── closemididevice.c │ ├── clusters.c │ ├── createmidia.c │ ├── deletemidi.c │ ├── docs.c │ ├── drivers.c │ ├── endclusternotify.c │ ├── findcluster.c │ ├── findmidi.c │ ├── flushmidi.c │ ├── getmidi.c │ ├── getmidiattrsa.c │ ├── getmidierr.c │ ├── getmidilinkattrsa.c │ ├── getmidilinkfromownernode.c │ ├── getsysex.c │ ├── goodputmidi.c │ ├── init.c │ ├── lockcamd.c │ ├── midi2driver.c │ ├── mididistr.c │ ├── midifromdriver.c │ ├── midilinkconnected.c │ ├── midimsglen.c │ ├── midimsgtype.c │ ├── midimsgtype2.c │ ├── miditodriver.c │ ├── mmakefile.src │ ├── nextcluster.c │ ├── nextclusterlink.c │ ├── nextmidi.c │ ├── nextmidilink.c │ ├── openmididevice.c │ ├── parsemidi.c │ ├── putmidi.c │ ├── putsysex.c │ ├── querysysex.c │ ├── receiverproc.c │ ├── removemidilink.c │ ├── rethinkcamd.c │ ├── setmidiattrsa.c │ ├── setmidilinkattrsa.c │ ├── skipsysex.c │ ├── startclusternotify.c │ ├── strings.c │ ├── sysexdistr.c │ ├── unlinkmidilink.c │ ├── unlockcamd.c │ └── waitmidi.c ├── cgfx │ ├── alloccmodelisttaglist.c │ ├── bestcmodeidtaglist.c │ ├── blttemplatealpha.c │ ├── cmoderequesttaglist.c │ ├── cvideoctrltaglist.c │ ├── cybergraphics.conf │ ├── cybergraphics_init.c │ ├── cybergraphics_intern.h │ ├── docdrawmethodtaglist.c │ ├── extractcolor.c │ ├── extractcolor_renderfunc.c │ ├── fillpixelarray.c │ ├── freecmodelist.c │ ├── getcyberidattr.c │ ├── getcybermapattr.c │ ├── gfxfuncsupport.c │ ├── gfxfuncsupport.h │ ├── include │ │ └── cybergraphics.h │ ├── invertpixelarray.c │ ├── iscybermodeid.c │ ├── lockbitmaptaglist.c │ ├── mmakefile.src │ ├── movepixelarray.c │ ├── processpixelarray.c │ ├── processpixelarray_opblur.c │ ├── processpixelarray_opbrightness.c │ ├── processpixelarray_opcol2grey.c │ ├── processpixelarray_opgradient.c │ ├── processpixelarray_opnegative.c │ ├── processpixelarray_opnegative_fade.c │ ├── processpixelarray_ops.h │ ├── processpixelarray_opsetalpha.c │ ├── processpixelarray_opshiftrgb.c │ ├── processpixelarray_optint.c │ ├── processpixelarray_optint_fade.c │ ├── readpixelarray.c │ ├── readrgbpixel.c │ ├── scalepixelarray.c │ ├── unlockbitmap.c │ ├── unlockbitmaptaglist.c │ ├── writelutpixelarray.c │ ├── writepixelarray.c │ ├── writepixelarrayalpha.c │ └── writergbpixel.c ├── cgxvideo │ ├── AttachVLayerTagList.c │ ├── CreateVLayerHandleTagList.c │ ├── DeleteVLayerHandle.c │ ├── DetachVLayer.c │ ├── GetVLayerAttr.c │ ├── LockVLayer.c │ ├── SetVLayerAttrTagList.c │ ├── UnLockVLayer.c │ ├── cgxvideo.conf │ ├── cgxvideo_init.c │ ├── cgxvideo_intern.h │ ├── include │ │ └── cgxvideo.h │ └── mmakefile.src ├── codesets │ ├── 6.22-aros.diff │ └── mmakefile.src ├── commodities │ ├── MORPHOS_CVS_LOG │ ├── activatecxobj.c │ ├── addievents.c │ ├── attachcxobj.c │ ├── brokercommand.c │ ├── clearcxobjerror.c │ ├── commodities.conf │ ├── commodities_init.c │ ├── commodities_inputhandler.c │ ├── copybrokerlist.c │ ├── createcxobj.c │ ├── cxbroker.c │ ├── cxintern.h │ ├── cxmsgdata.c │ ├── cxmsgid.c │ ├── cxmsgtype.c │ ├── cxobjerror.c │ ├── cxobjtype.c │ ├── cxparse.doc │ ├── deletecxobj.c │ ├── deletecxobjall.c │ ├── disposecxmsg.c │ ├── divertcxmsg.c │ ├── enqueuecxobj.c │ ├── eventfuncs.c │ ├── freebrokerlist.c │ ├── insertcxobj.c │ ├── invertkeymap.c │ ├── matchix.c │ ├── mmakefile.src │ ├── parse.h │ ├── parseix.c │ ├── removecxobj.c │ ├── routecxmsg.c │ ├── setcxobjpri.c │ ├── setfilter.c │ ├── setfilterix.c │ └── settranslate.c ├── coolimages │ ├── cool_obtainimagea.c │ ├── coolimages.conf │ ├── coolimages_init.c │ ├── coolimages_intern.h │ └── mmakefile.src ├── datatypes │ ├── adddtobject.c │ ├── class.c │ ├── classfuncs.c │ ├── copydtmethods.c │ ├── copydttriggermethods.c │ ├── datatypes.conf │ ├── datatypes_init.c │ ├── datatypes_intern.h │ ├── disposedtobject.c │ ├── doasynclayout.c │ ├── dodtdomaina.c │ ├── dodtmethoda.c │ ├── drawdtobjecta.c │ ├── dt_inlines.h │ ├── findmethod.c │ ├── findtoolnodea.c │ ├── findtriggermethod.c │ ├── freedtmethods.c │ ├── getdtattrsa.c │ ├── getdtmethods.c │ ├── getdtstring.c │ ├── getdttriggermethoddataflags.c │ ├── getdttriggermethods.c │ ├── helpfuncs.c │ ├── launchtoola.c │ ├── lockdatatype.c │ ├── mmakefile.src │ ├── newdtobjecta.c │ ├── obtaindatatypea.c │ ├── obtaindtdrawinfoa.c │ ├── printdtobjecta.c │ ├── refreshdtobjecta.c │ ├── releasedatatype.c │ ├── releasedtdrawinfo.c │ ├── removedtobject.c │ ├── savedtobjecta.c │ ├── setdtattrsa.c │ └── startdragselect.c ├── diskfont │ ├── MORPHOS_CVS_LOG │ ├── af_fontdescr_io.c │ ├── availfonts.c │ ├── basicfuncs.c │ ├── bullet.c │ ├── diskfont.conf │ ├── diskfont_init.c │ ├── diskfont_intern.h │ ├── diskfont_io.c │ ├── diskfontfunc.c │ ├── disposefontcontents.c │ ├── dosstreamhook.c │ ├── memoryfontfunc.c │ ├── mmakefile.src │ ├── newfontcontents.c │ ├── newscaleddiskfont.c │ └── opendiskfont.c ├── dxtn │ ├── .gitignore │ ├── dxtn.conf │ └── mmakefile.src ├── egl │ ├── .gitignore │ ├── egl.conf │ ├── egl_arosmesa.c │ ├── emul_arosc.c │ ├── mmakefile.src │ ├── tls.c │ └── tls.h ├── expat │ ├── expat-2.1.0-aros.diff │ ├── expat.conf │ ├── expat_config.h │ └── mmakefile.src ├── freetype2 │ ├── .gitignore │ ├── README.AROS │ ├── closeengine.c │ ├── freetype-2.14.1-aros.diff │ ├── freetype2.conf │ ├── ftglyphengine.c │ ├── ftglyphengine.h │ ├── glyph.c │ ├── glyph.h │ ├── kerning.c │ ├── kerning.h │ ├── mmakefile.src │ ├── obtaininfoa.c │ ├── openengine.c │ ├── releaseinfoa.c │ ├── setinfoa.c │ └── tagcall.c ├── gadtools │ ├── MORPHOS_CVS_LOG │ ├── README.hacks │ ├── arrowclass.c │ ├── basicfuncs.c │ ├── buttonclass.c │ ├── checkboxclass.c │ ├── createcontext.c │ ├── creategadgeta.c │ ├── createmenusa.c │ ├── cycleclass.c │ ├── drawbevelboxa.c │ ├── freegadgets.c │ ├── freemenus.c │ ├── freevisualinfo.c │ ├── gadgets.c │ ├── gadtools.conf │ ├── gadtools_init.c │ ├── gadtools_intern.h │ ├── getvisualinfoa.c │ ├── gt_beginrefresh.c │ ├── gt_endrefresh.c │ ├── gt_filterimsg.c │ ├── gt_getgadgetattrsa.c │ ├── gt_getimsg.c │ ├── gt_postfilterimsg.c │ ├── gt_refreshwindow.c │ ├── gt_replyimsg.c │ ├── gt_setgadgetattrsa.c │ ├── layoutmenuitemsa.c │ ├── layoutmenusa.c │ ├── listviewclass.c │ ├── menus.c │ ├── mmakefile.src │ ├── mxclass.c │ ├── paletteclass.c │ ├── scrollerclass.c │ ├── sliderclass.c │ ├── stringclass.c │ └── textclass.c ├── gallium │ ├── bltpiperesourcerastport.c │ ├── createpipe.c │ ├── createpipescreen.c │ ├── destroypipe.c │ ├── destroypipescreen.c │ ├── gallium.conf │ ├── gallium_init.c │ ├── gallium_intern.h │ ├── include │ │ └── gallium.h │ └── mmakefile.src ├── gl │ ├── .gitignore │ ├── OpenGL_ABI │ ├── gl.conf │ ├── gl_funcs.c │ ├── gl_init.c │ ├── gl_intern.h │ ├── gla.h │ └── mmakefile.src ├── glu │ ├── .gitignore │ ├── emul_stdc.c │ ├── glu-9.0.2-aros.diff │ ├── glu.conf │ └── mmakefile.src ├── icon │ ├── addfreelist.c │ ├── bumprevision.c │ ├── changetoselectediconcolor.c │ ├── deletediskobject.c │ ├── diskobj35io.c │ ├── diskobjNIio.c │ ├── diskobjPNGio.c │ ├── diskobjio.c │ ├── drawiconstate.c │ ├── dupdiskobject.c │ ├── findtooltype.c │ ├── freediskobject.c │ ├── freefreelist.c │ ├── getdefdiskobject.c │ ├── getdiskobject.c │ ├── getdiskobjectnew.c │ ├── geticonrectangle.c │ ├── geticontaglist.c │ ├── icon.conf │ ├── icon_init.c │ ├── icon_intern.h │ ├── iconcontrol.c │ ├── identify.c │ ├── identify.h │ ├── layouticon.c │ ├── matchtoolvalue.c │ ├── mmakefile.src │ ├── newdiskobject.c │ ├── putdefdiskobject.c │ ├── putdiskobject.c │ ├── puticontaglist.c │ ├── support.c │ ├── support.h │ ├── support_builtin.c │ └── support_builtin.h ├── identify │ ├── idalert.c │ ├── identify.conf │ ├── identify.h │ ├── identify_intern.h │ ├── idestimateformatsize.c │ ├── idexpansion.c │ ├── idformatstring.c │ ├── idfunction.c │ ├── idhardware.c │ ├── idhardwarenum.c │ ├── idhardwareupdate.c │ ├── library.c │ ├── locale.c │ ├── locale.h │ ├── mmakefile.src │ ├── testidentifylib.c │ └── tools │ │ ├── Function.c │ │ ├── Guru.c │ │ └── mmakefile.src ├── iffparse │ ├── MORPHOS_CVS_LOG │ ├── allociff.c │ ├── alloclocalitem.c │ ├── basicfuncs.c │ ├── bufferingfuncs.c │ ├── clipboardfuncs.c │ ├── closeclipboard.c │ ├── closeiff.c │ ├── collectionchunk.c │ ├── collectionchunks.c │ ├── collectionhooks.c │ ├── currentchunk.c │ ├── dosstreamhandler.c │ ├── entryhandler.c │ ├── exithandler.c │ ├── findcollection.c │ ├── findlocalitem.c │ ├── findprop.c │ ├── findpropcontext.c │ ├── freeiff.c │ ├── freelocalitem.c │ ├── goodid.c │ ├── goodtype.c │ ├── idtostr.c │ ├── iffparse.conf │ ├── iffparse_init.c │ ├── iffparse_intern.h │ ├── initiff.c │ ├── initiffasclip.c │ ├── initiffasdos.c │ ├── localitemdata.c │ ├── mmakefile.src │ ├── openclipboard.c │ ├── openiff.c │ ├── parentchunk.c │ ├── parseiff.c │ ├── popchunk.c │ ├── propchunk.c │ ├── propchunks.c │ ├── prophooks.c │ ├── pushchunk.c │ ├── readchunkbytes.c │ ├── readchunkrecords.c │ ├── setlocalitempurge.c │ ├── stopchunk.c │ ├── stopchunks.c │ ├── stophook.c │ ├── stoponexit.c │ ├── storeitemincontext.c │ ├── storelocalitem.c │ ├── writechunkbytes.c │ └── writechunkrecords.c ├── initstruct.h ├── jpeg │ ├── .gitignore │ ├── jfif.conf │ ├── jpegsrc.v9e-aros.diff │ ├── jpegsrc.v9f-aros.diff │ └── mmakefile.src ├── kms │ ├── kms.conf │ ├── kms_intern.h │ ├── kms_library.c │ ├── mmakefile.src │ ├── openkeymap.c │ └── parsekeymapseg.c ├── locale │ ├── MORPHOS_CVS_LOG │ ├── catalog_funcs.c │ ├── closecatalog.c │ ├── closelocale.c │ ├── convtolower.c │ ├── convtoupper.c │ ├── defaultlocale.c │ ├── english.c │ ├── formatdate.c │ ├── formatstring.c │ ├── getcatalogstr.c │ ├── getlocalestr.c │ ├── initlocale.c │ ├── isxxxx.c │ ├── locale.conf │ ├── locale_init.c │ ├── locale_intern.h │ ├── locdatetostr.c │ ├── locdosgetlocalizedstring.c │ ├── locrawdofmt.c │ ├── locstricmp.c │ ├── locstrnicmp.c │ ├── locstrtodate.c │ ├── loctolower.c │ ├── loctoupper.c │ ├── mmakefile.src │ ├── opencataloga.c │ ├── openlocale.c │ ├── parsedate.c │ ├── patches.c │ ├── prefsupdate.c │ ├── rexxhost.c │ ├── strconvert.c │ └── strncmp.c ├── lowlevel │ ├── addkbint.c │ ├── addtimerint.c │ ├── addvblankint.c │ ├── elapsedtime.c │ ├── getkey.c │ ├── getlanguageselection.c │ ├── lowlevel.conf │ ├── lowlevel_init.c │ ├── lowlevel_intern.h │ ├── mmakefile.src │ ├── querykeys.c │ ├── readjoyport.c │ ├── remkbint.c │ ├── remtimerint.c │ ├── remvblankint.c │ ├── setjoyportattrsa.c │ ├── starttimerint.c │ ├── stoptimerint.c │ └── systemcontrola.c ├── lzma │ ├── lzma.conf │ └── mmakefile.src ├── mathffp │ ├── mathffp.conf │ ├── mathffp_intern.h │ ├── mmakefile.src │ ├── spabs.c │ ├── spadd.c │ ├── spceil.c │ ├── spcmp.c │ ├── spdiv.c │ ├── spfix.c │ ├── spfloor.c │ ├── spflt.c │ ├── spmul.c │ ├── spneg.c │ ├── spsub.c │ └── sptst.c ├── mathieeedoubbas │ ├── ieeedpabs.c │ ├── ieeedpadd.c │ ├── ieeedpbas_fpu.c │ ├── ieeedpceil.c │ ├── ieeedpcmp.c │ ├── ieeedpdiv.c │ ├── ieeedpfix.c │ ├── ieeedpfloor.c │ ├── ieeedpflt.c │ ├── ieeedpmul.c │ ├── ieeedpneg.c │ ├── ieeedpsub.c │ ├── ieeedptst.c │ ├── mathieeedoubbas.conf │ ├── mathieeedoubbas_init.c │ ├── mathieeedoubbas_intern.h │ └── mmakefile.src ├── mathieeedoubtrans │ ├── ieeedpacos.c │ ├── ieeedpasin.c │ ├── ieeedpatan.c │ ├── ieeedpcos.c │ ├── ieeedpcosh.c │ ├── ieeedpexp.c │ ├── ieeedpfieee.c │ ├── ieeedplog.c │ ├── ieeedplog10.c │ ├── ieeedppow.c │ ├── ieeedpsin.c │ ├── ieeedpsincos.c │ ├── ieeedpsinh.c │ ├── ieeedpsqrt.c │ ├── ieeedptan.c │ ├── ieeedptanh.c │ ├── ieeedptieee.c │ ├── ieeedptrans_fpu.c │ ├── intern_ieeedpisodd.c │ ├── intern_ieeedpld.c │ ├── mathieeedoubtrans.conf │ ├── mathieeedoubtrans_intern.h │ └── mmakefile.src ├── mathieeesingbas │ ├── ieeespabs.c │ ├── ieeespadd.c │ ├── ieeespceil.c │ ├── ieeespcmp.c │ ├── ieeespdiv.c │ ├── ieeespfix.c │ ├── ieeespfloor.c │ ├── ieeespflt.c │ ├── ieeespmul.c │ ├── ieeespneg.c │ ├── ieeespsub.c │ ├── ieeesptst.c │ ├── mathieeesingbas.conf │ ├── mathieeesingbas_intern.h │ └── mmakefile.src ├── mathieeesingtrans │ ├── ieeespacos.c │ ├── ieeespasin.c │ ├── ieeespatan.c │ ├── ieeespcos.c │ ├── ieeespcosh.c │ ├── ieeespexp.c │ ├── ieeespfieee.c │ ├── ieeesplog.c │ ├── ieeesplog10.c │ ├── ieeesppow.c │ ├── ieeespsin.c │ ├── ieeespsincos.c │ ├── ieeespsinh.c │ ├── ieeespsqrt.c │ ├── ieeesptan.c │ ├── ieeesptanh.c │ ├── ieeesptieee.c │ ├── intern_ieeespisodd.c │ ├── intern_ieeespld.c │ ├── mathieeesingtrans.conf │ ├── mathieeesingtrans_init.c │ ├── mathieeesingtrans_intern.h │ └── mmakefile.src ├── mathtrans │ ├── intern_spisodd.c │ ├── intern_spld.c │ ├── mathtrans.conf │ ├── mathtrans_init.c │ ├── mathtrans_intern.h │ ├── mmakefile.src │ ├── spacos.c │ ├── spasin.c │ ├── spatan.c │ ├── spcos.c │ ├── spcosh.c │ ├── spexp.c │ ├── spfieee.c │ ├── splog.c │ ├── splog10.c │ ├── sppow.c │ ├── spsin.c │ ├── spsincos.c │ ├── spsinh.c │ ├── spsqrt.c │ ├── sptan.c │ ├── sptanh.c │ └── sptieee.c ├── mesa │ ├── .gitignore │ ├── emul_arosc.c │ ├── libcompiler │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── libgalliumaux │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── libgalliumvm │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── libglapi │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── libmesa │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── libmesautil │ │ ├── .gitignore │ │ └── mmakefile.src │ ├── mesa-20.0.8-aros.diff │ ├── mesa-20.3.2-aros.diff │ ├── mesa-21.0.2-aros.diff │ ├── mesa.cfg │ ├── mesa3dgl_gallium.c │ ├── mesa3dgl_gallium.h │ ├── mesa3dgl_getopenglstatetrackerapi.c │ ├── mesa3dgl_glacreatecontext.c │ ├── mesa3dgl_gladestroycontext.c │ ├── mesa3dgl_glagetconfig.c │ ├── mesa3dgl_glagetcurrentcontext.c │ ├── mesa3dgl_glagetprocaddress.c │ ├── mesa3dgl_glamakecurrent.c │ ├── mesa3dgl_glasetrast.c │ ├── mesa3dgl_glaswapbuffers.c │ ├── mesa3dgl_init.c │ ├── mesa3dgl_support.c │ ├── mesa3dgl_support.h │ ├── mesa3dgl_types.h │ ├── mmakefile.src │ ├── tls.c │ └── tls.h ├── mmakefile ├── muimaster │ ├── .gitignore │ ├── LICENSE │ ├── bubbleengine.c │ ├── bubbleengine.h │ ├── buildincludes.c │ ├── classes │ │ ├── aboutmui.c │ │ ├── aboutmui.conf │ │ ├── aboutmui.h │ │ ├── aboutmui_private.h │ │ ├── application.c │ │ ├── application.h │ │ ├── area.c │ │ ├── area.h │ │ ├── balance.c │ │ ├── balance.conf │ │ ├── balance.h │ │ ├── balance_private.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── bodychunk.c │ │ ├── bodychunk.h │ │ ├── boopsi.c │ │ ├── boopsi.conf │ │ ├── boopsi.h │ │ ├── boopsi_private.h │ │ ├── chunkyimage.c │ │ ├── chunkyimage.h │ │ ├── coloradjust.c │ │ ├── coloradjust.conf │ │ ├── coloradjust.h │ │ ├── coloradjust_private.h │ │ ├── colorfield.c │ │ ├── colorfield.conf │ │ ├── colorfield.h │ │ ├── colorfield_private.h │ │ ├── configdata.c │ │ ├── configdata.h │ │ ├── crawling.c │ │ ├── crawling.conf │ │ ├── crawling.h │ │ ├── crawling_private.h │ │ ├── cycle.c │ │ ├── cycle.h │ │ ├── dataspace.c │ │ ├── dataspace.h │ │ ├── dirlist.c │ │ ├── dirlist.conf │ │ ├── dirlist.h │ │ ├── dirlist_private.h │ │ ├── dtpic.c │ │ ├── dtpic.conf │ │ ├── dtpic.h │ │ ├── dtpic_private.h │ │ ├── family.c │ │ ├── family.h │ │ ├── floattext.c │ │ ├── floattext.conf │ │ ├── floattext.h │ │ ├── floattext_private.h │ │ ├── frameadjust.c │ │ ├── frameadjust.conf │ │ ├── frameadjust.h │ │ ├── frameadjust_private.h │ │ ├── framedisplay.c │ │ ├── framedisplay.conf │ │ ├── framedisplay.h │ │ ├── framedisplay_private.h │ │ ├── gauge.c │ │ ├── gauge.conf │ │ ├── gauge.h │ │ ├── gauge_private.h │ │ ├── group.c │ │ ├── group.h │ │ ├── image.c │ │ ├── image.h │ │ ├── imageadjust.c │ │ ├── imageadjust.conf │ │ ├── imageadjust.h │ │ ├── imageadjust_private.h │ │ ├── imagedisplay.c │ │ ├── imagedisplay.conf │ │ ├── imagedisplay.h │ │ ├── imagedisplay_private.h │ │ ├── knob.c │ │ ├── knob.conf │ │ ├── knob.h │ │ ├── knob_private.h │ │ ├── levelmeter.c │ │ ├── levelmeter.conf │ │ ├── levelmeter.h │ │ ├── levelmeter_private.h │ │ ├── list.c │ │ ├── list.h │ │ ├── listview.c │ │ ├── listview.h │ │ ├── mccprefs.c │ │ ├── mccprefs.h │ │ ├── menuitem.c │ │ ├── menuitem.h │ │ ├── mmakefile.src │ │ ├── notify.c │ │ ├── notify.h │ │ ├── numeric.c │ │ ├── numeric.h │ │ ├── numericbutton.c │ │ ├── numericbutton.conf │ │ ├── numericbutton.h │ │ ├── numericbutton_private.h │ │ ├── palette.c │ │ ├── palette.conf │ │ ├── palette.h │ │ ├── palette_private.h │ │ ├── panel.c │ │ ├── panel.conf │ │ ├── panel.h │ │ ├── panel_private.h │ │ ├── panelgroup.c │ │ ├── panelgroup.conf │ │ ├── panelgroup.h │ │ ├── panelgroup_private.h │ │ ├── penadjust.c │ │ ├── penadjust.conf │ │ ├── penadjust.h │ │ ├── penadjust_private.h │ │ ├── pendisplay.c │ │ ├── pendisplay.conf │ │ ├── pendisplay.h │ │ ├── pendisplay_private.h │ │ ├── pixmap.c │ │ ├── pixmap.conf │ │ ├── pixmap.h │ │ ├── pixmap_private.h │ │ ├── popasl.c │ │ ├── popasl.conf │ │ ├── popasl.h │ │ ├── popasl_private.h │ │ ├── popframe.c │ │ ├── popframe.conf │ │ ├── popframe.h │ │ ├── popframe_private.h │ │ ├── popimage.c │ │ ├── popimage.conf │ │ ├── popimage.h │ │ ├── popimage_private.h │ │ ├── poplist.c │ │ ├── poplist.conf │ │ ├── poplist.h │ │ ├── poplist_private.h │ │ ├── popobject.c │ │ ├── popobject.h │ │ ├── poppen.c │ │ ├── poppen.conf │ │ ├── poppen.h │ │ ├── poppen_private.h │ │ ├── popscreen.c │ │ ├── popscreen.conf │ │ ├── popscreen.h │ │ ├── popscreen_private.h │ │ ├── popstring.c │ │ ├── popstring.h │ │ ├── process.c │ │ ├── process.conf │ │ ├── process.h │ │ ├── process_private.h │ │ ├── prop.c │ │ ├── prop.h │ │ ├── radio.c │ │ ├── radio.conf │ │ ├── radio.h │ │ ├── radio_private.h │ │ ├── rectangle.c │ │ ├── rectangle.h │ │ ├── register.c │ │ ├── register.h │ │ ├── scale.c │ │ ├── scale.conf │ │ ├── scale.h │ │ ├── scale_private.h │ │ ├── scrollbar.c │ │ ├── scrollbar.h │ │ ├── scrollbutton.c │ │ ├── scrollbutton.h │ │ ├── scrollgroup.c │ │ ├── scrollgroup.conf │ │ ├── scrollgroup.h │ │ ├── scrollgroup_private.h │ │ ├── semaphore.c │ │ ├── semaphore.h │ │ ├── settings.c │ │ ├── settings.h │ │ ├── settingsgroup.c │ │ ├── settingsgroup.conf │ │ ├── settingsgroup.h │ │ ├── settingsgroup_private.h │ │ ├── slider.c │ │ ├── slider.h │ │ ├── string.c │ │ ├── string.h │ │ ├── text.c │ │ ├── text.h │ │ ├── title.c │ │ ├── title.conf │ │ ├── title.h │ │ ├── title_private.h │ │ ├── virtgroup.c │ │ ├── virtgroup.conf │ │ ├── virtgroup.h │ │ ├── volumelist.c │ │ ├── volumelist.conf │ │ ├── volumelist.h │ │ ├── volumelist_private.h │ │ ├── window.c │ │ └── window.h │ ├── clipboard.c │ ├── clipboard.h │ ├── customclasses.h │ ├── datatypescache.c │ ├── datatypescache.h │ ├── debug.h │ ├── dragndrop.c │ ├── dragndrop.h │ ├── font.c │ ├── font.h │ ├── frame.c │ ├── frame.h │ ├── headers.c │ ├── imspec.c │ ├── imspec.h │ ├── imspec_gradient.c │ ├── imspec_gradientdraw.c │ ├── imspec_intern.h │ ├── imspec_vector.c │ ├── listimage.h │ ├── locale.c │ ├── locale.h │ ├── macros.h │ ├── makefile.aos4 │ ├── menu.c │ ├── menu.h │ ├── mmakefile.src │ ├── mui.h │ ├── mui_addclipping.c │ ├── mui_addclipregion.c │ ├── mui_allocaslrequest.c │ ├── mui_aslrequest.c │ ├── mui_beginrefresh.c │ ├── mui_createcustomclass.c │ ├── mui_deletecustomclass.c │ ├── mui_disposeobject.c │ ├── mui_endrefresh.c │ ├── mui_error.c │ ├── mui_freeaslrequest.c │ ├── mui_freeclass.c │ ├── mui_getclass.c │ ├── mui_identifiers.h │ ├── mui_layout.c │ ├── mui_makeobject.c │ ├── mui_newobject.c │ ├── mui_obtainpen.c │ ├── mui_redraw.c │ ├── mui_rejectidcmp.c │ ├── mui_releasepen.c │ ├── mui_removeclipping.c │ ├── mui_removeclipregion.c │ ├── mui_request.c │ ├── mui_requestidcmp.c │ ├── mui_seterror.c │ ├── muimaster.conf │ ├── muimaster_init-aros.c │ ├── muimaster_init.c │ ├── muimaster_intern.h │ ├── muimaster_private.h │ ├── penspec.c │ ├── penspec.h │ ├── prefs.h │ ├── smakefile │ ├── staticlib │ │ ├── mmakefile.src │ │ ├── mui_allocaslrequesttags.c │ │ ├── mui_aslrequesttags.c │ │ ├── mui_makeobject.c │ │ └── mui_newobject.c │ ├── support.c │ ├── support.h │ ├── support_amigaos.c │ ├── support_amigaos.h │ ├── support_aros.c │ ├── support_aros.h │ ├── support_classes.c │ ├── support_classes.h │ ├── test.c │ ├── textengine.c │ ├── textengine.h │ ├── tutorial │ │ └── examples │ │ │ ├── HGroup.c │ │ │ ├── HVGroup.c │ │ │ ├── HelloZune.c │ │ │ ├── Notify.c │ │ │ ├── PanelGroup.c │ │ │ ├── VGroup.c │ │ │ ├── VHGroup.c │ │ │ ├── VHGroup2.c │ │ │ ├── mmakefile.src │ │ │ └── muizunesupport.h │ ├── zunemaster.xml │ ├── zunemaster_68k.c │ ├── zunemaster_init-aos4.c │ ├── zunemaster_lib.c │ ├── zunemaster_lib.sfd │ └── zunemaster_vectors.c ├── muiscreen │ ├── addinfoclient.c │ ├── allocpubscreendesc.c │ ├── closepubfile.c │ ├── closepubscreen.c │ ├── fileformat.h │ ├── freepubscreendesc.c │ ├── mmakefile.src │ ├── muiscreen.conf │ ├── muiscreen_init.c │ ├── muiscreen_intern.h │ ├── openpubfile.c │ ├── openpubscreen.c │ ├── readpubfile.c │ ├── reminfoclient.c │ └── writepubfile.c ├── nonvolatile │ ├── deletenv.c │ ├── freenvdata.c │ ├── getcopynv.c │ ├── getnvinfo.c │ ├── getnvlist.c │ ├── mmakefile.src │ ├── nonvolatile.conf │ ├── nonvolatile_init.c │ ├── nonvolatile_intern.h │ ├── nvdisk │ │ ├── deletenvddata.c │ │ ├── getnvditemlist.c │ │ ├── meminfonvd.c │ │ ├── mmakefile.src │ │ ├── nvdisk.conf │ │ ├── nvdisk_init.c │ │ ├── nvdisk_intern.h │ │ ├── readnvddata.c │ │ ├── setnvdprotection.c │ │ └── writenvddata.c │ ├── setnvprotection.c │ └── storenv.c ├── pccard │ ├── mmakefile.src │ ├── pccard.conf │ ├── pccard_intern.h │ └── tuple.c ├── png │ ├── .gitignore │ ├── libpng-1.6.36-unused.diff │ ├── mmakefile.src │ └── png.conf ├── popupmenu │ ├── LICENSE │ ├── compiler.h │ ├── iff.c │ ├── libinit.c │ ├── mmakefile.src │ ├── pm.c │ ├── pmcreate.c │ ├── pmdlist.c │ ├── pmdlist.h │ ├── pmdrawshadow.c │ ├── pmfind.c │ ├── pmfind.h │ ├── pmgraph.c │ ├── pmgraph.h │ ├── pmimages.c │ ├── pmimages.h │ ├── pminit.c │ ├── pminput.c │ ├── pminput.h │ ├── pminternals.h │ ├── pmlayout.c │ ├── pmmem.c │ ├── pmmem.h │ ├── pmprefs.c │ ├── pmprefs.h │ ├── pmpriv.h │ ├── pmrexx.c │ ├── pmshadow.c │ ├── pmshadow.h │ ├── pmtags.c │ ├── pmtopography.c │ ├── pmtopography.h │ ├── pmtypes.h │ ├── pmversion.c │ ├── popupmenu.conf │ ├── prefs.h │ ├── prefs │ │ └── popupmenu.h │ ├── staticlib │ │ ├── autoinit.c │ │ ├── mmakefile.src │ │ ├── pm_exlst.c │ │ ├── pm_filterimsg.c │ │ ├── pm_getitemattrs.c │ │ ├── pm_insertmenuitem.c │ │ ├── pm_layoutmenu.c │ │ ├── pm_makeitem.c │ │ ├── pm_makemenu.c │ │ ├── pm_openpopupmenu.c │ │ └── pm_setitemattrs.c │ ├── timer.c │ └── window.c ├── prometheus │ ├── board.c │ ├── mmakefile.src │ ├── prometheus.conf │ ├── prometheus_init.c │ └── prometheus_intern.h ├── realtime │ ├── createplayera.c │ ├── deleteplayer.c │ ├── externalsync.c │ ├── findconductor.c │ ├── getplayerattrsa.c │ ├── lockrealtime.c │ ├── mmakefile.src │ ├── nextconductor.c │ ├── pulse.c │ ├── realtime.conf │ ├── realtime_init.c │ ├── realtime_intern.h │ ├── realtime_timer.c │ ├── setconductorstate.c │ ├── setplayerattrsa.c │ └── unlockrealtime.c ├── reqtools │ ├── COMPILE.README │ ├── DMakeFile │ ├── FILES.README │ ├── Makefile.gcc │ ├── SCOPTIONS │ ├── amigaincludesforgcc │ │ ├── README │ │ ├── clib │ │ │ └── reqtools_protos.h │ │ ├── inline │ │ │ └── reqtools.h │ │ ├── libraries │ │ │ └── reqtools.h │ │ └── proto │ │ │ └── reqtools.h │ ├── boopsi.asm │ ├── boopsi.c │ ├── boopsi.h │ ├── boopsigads.c │ ├── boopsigads.h │ ├── boopsigads.i │ ├── catalog.h │ ├── checkstack.asm │ ├── closewinsafely.asm │ ├── compilerspecific.h │ ├── filereq.c │ ├── filereq.h │ ├── filereqalloc.c │ ├── filereqextra.c │ ├── filereqmain.c │ ├── filereqsetup.c │ ├── gadstub.asm │ ├── gadstub.h │ ├── general.c │ ├── general.h │ ├── globalvars.h │ ├── mem.asm │ ├── mem.c │ ├── mem.h │ ├── misc.asm │ ├── misc.c │ ├── mmakefile.src │ ├── palettereq.c │ ├── req.c │ ├── reqtools.asm │ ├── reqtools.conf │ ├── reqtools_init.c │ ├── reqtools_intern.h │ ├── reqtools_rev.h │ ├── reqtools_rev.i │ ├── reqtools_rev.rev │ ├── reqtoolsami_init.c │ ├── rtallocrequesta.c │ ├── rtchangereqattra.c │ ├── rtclosewindowsafely.c │ ├── rtezrequesta.c │ ├── rtfilerequesta.c │ ├── rtfontrequesta.c │ ├── rtfreefilelist.c │ ├── rtfreereqbuffer.c │ ├── rtfreerequest.c │ ├── rtfuncs.asm │ ├── rtfuncs.c │ ├── rtfuncs.h │ ├── rtgetlonga.c │ ├── rtgetstringa.c │ ├── rtgetvscreensize.c │ ├── rtinternalenterpassword.c │ ├── rtinternalgetpassword.c │ ├── rtlocale.c │ ├── rtlocale.h │ ├── rtlockprefs.c │ ├── rtlockwindow.c │ ├── rtpaletterequesta.c │ ├── rtreqhandlera.c │ ├── rtscreenmoderequesta.c │ ├── rtscreentofrontsafely.c │ ├── rtsetreqposition.c │ ├── rtsetwaitpointer.c │ ├── rtspread.c │ ├── rtunlockprefs.c │ ├── rtunlockwindow.c │ └── stubs │ │ ├── mmakefile.src │ │ ├── rtallocrequest.c │ │ ├── rtchangereqattr.c │ │ ├── rtezrequest.c │ │ ├── rtezrequesttags.c │ │ ├── rtfilerequest.c │ │ ├── rtfontrequest.c │ │ ├── rtgetlong.c │ │ ├── rtgetstring.c │ │ ├── rtpaletterequest.c │ │ ├── rtreqhandler.c │ │ └── rtscreenmoderequest.c ├── rexxsupport │ ├── allocmem.c │ ├── arexxdispatch.c │ ├── baddr.c │ ├── closeport.c │ ├── closeportrsrc.c │ ├── delay.c │ ├── delete.c │ ├── forbid.c │ ├── freemem.c │ ├── getarg.c │ ├── getpkt.c │ ├── makedir.c │ ├── mmakefile.src │ ├── next.c │ ├── null.c │ ├── offset.c │ ├── openport.c │ ├── portcleanup.c │ ├── portnode.h │ ├── rename.c │ ├── reply.c │ ├── rexxsupport.conf │ ├── rexxsupport_init.c │ ├── rexxsupport_intern.h │ ├── rxfunctions.h │ ├── showdir.c │ ├── showlist.c │ ├── statef.c │ ├── typepkt.c │ └── waitpkt.c ├── rexxsyslib │ ├── clearrexxmsg.c │ ├── createargstring.c │ ├── createrexxmsg.c │ ├── deleteargstring.c │ ├── deleterexxmsg.c │ ├── fillrexxmsg.c │ ├── isrexxmsg.c │ ├── lengthargstring.c │ ├── lockrexxbase.c │ ├── mmakefile.src │ ├── rexxsyslib.conf │ ├── rexxsyslib_init.c │ ├── rexxsyslib_intern.h │ └── unlockrexxbase.c ├── tiff │ ├── mmakefile.src │ ├── tif_aros.c │ ├── tif_config.h │ ├── tiff.conf │ ├── tiffconf.h │ ├── tiffinline.h │ └── tifftypes.h ├── usergroup │ ├── assert.h │ ├── base.h │ ├── config.h │ ├── console.c │ ├── credential.c │ ├── credential.h │ ├── crypt.c │ ├── error.c │ ├── getgrent.c │ ├── getpass.c │ ├── getpwent.c │ ├── getsalt.c │ ├── getutent.c │ ├── initgroups.c │ ├── loginname.c │ ├── mmakefile.src │ ├── random.c │ ├── resource.c │ ├── time.c │ ├── usergroup.c │ ├── usergroup.conf │ ├── usergroup.h │ └── utmp.h ├── utf8proc │ ├── mmakefile.src │ └── utf8proc.conf ├── uuid │ ├── include │ │ └── uuid.h │ ├── mmakefile.src │ ├── uuid.conf │ ├── uuid_clear.c │ ├── uuid_compare.c │ ├── uuid_copy.c │ ├── uuid_generate.c │ ├── uuid_init.c │ ├── uuid_namespace.c │ ├── uuid_pack.c │ ├── uuid_parse.c │ └── uuid_private.h ├── version │ ├── mmakefile.src │ └── version.conf ├── workbench │ ├── addappicona.c │ ├── addappmenuitema.c │ ├── addappwindowa.c │ ├── addappwindowdropzonea.c │ ├── changeworkbenchselectiona.c │ ├── closeworkbenchobjecta.c │ ├── getnextappicon.c │ ├── handler.c │ ├── handler.h │ ├── handler_support.c │ ├── handler_support.h │ ├── makeworkbenchobjectvisiblea.c │ ├── mmakefile.src │ ├── notifyworkbench.c │ ├── notifyworkbench.h │ ├── openworkbenchobjecta.c │ ├── quoteworkbench.c │ ├── registerworkbench.c │ ├── removeappicon.c │ ├── removeappmenuitem.c │ ├── removeappwindow.c │ ├── removeappwindowdropzone.c │ ├── sendappwindowmessage.c │ ├── startworkbench.c │ ├── support.c │ ├── support.h │ ├── support_messages.c │ ├── support_messages.h │ ├── uae_integration.c │ ├── uae_integration.h │ ├── unregisterworkbench.c │ ├── updateworkbench.c │ ├── updateworkbenchobjecta.c │ ├── wbconfig.c │ ├── wbinfo.c │ ├── workbench.conf │ ├── workbench_init.c │ ├── workbench_intern.h │ └── workbenchcontrola.c ├── z │ ├── .gitignore │ ├── make.opt │ ├── mmakefile.src │ ├── z1.conf │ └── zlib-aros.diff └── zstd │ ├── mmakefile.src │ └── zstd.conf ├── locale ├── catalogs │ └── mmakefile ├── countries │ ├── andorra.c │ ├── angola.c │ ├── argentina.c │ ├── australia.c │ ├── austria.c │ ├── belgium.c │ ├── bosnia_herzegovina.c │ ├── brazil.c │ ├── bulgaria.c │ ├── canada.c │ ├── cape_verde.c │ ├── china.c │ ├── costa_rica.c │ ├── croatia.c │ ├── czech_republic.c │ ├── denmark.c │ ├── east_timor.c │ ├── estonia.c │ ├── finland.c │ ├── france.c │ ├── germany.c │ ├── great_britain.c │ ├── greece.c │ ├── haiti.c │ ├── hungary.c │ ├── iceland.c │ ├── indonesia.c │ ├── iran.c │ ├── ireland.c │ ├── italy.c │ ├── japan.c │ ├── latvia.c │ ├── liechtenstein.c │ ├── lithuania.c │ ├── luxembourg.c │ ├── makecountry │ │ ├── country_locale.h │ │ ├── countryprefs.c │ │ └── makecountry.c │ ├── malta.c │ ├── mmakefile.src │ ├── moldova.c │ ├── monaco.c │ ├── montenegro.c │ ├── netherlands.c │ ├── new_zealand.c │ ├── norway.c │ ├── poland.c │ ├── portugal.c │ ├── romania.c │ ├── russia.c │ ├── san_marino.c │ ├── slovakia.c │ ├── slovenia.c │ ├── south_korea.c │ ├── spain.c │ ├── sweden.c │ ├── switzerland.c │ ├── taiwan.c │ ├── templates │ │ └── template.c │ ├── thailand.c │ ├── turkey.c │ ├── ukraine.c │ ├── united_kingdom.c │ ├── united_states.c │ └── vatican_city.c ├── flags │ ├── countries │ │ ├── Afghanistan │ │ ├── Albania │ │ ├── Algeria │ │ ├── Andorra │ │ ├── Angola │ │ ├── Argentina │ │ ├── Armenia │ │ ├── Australia │ │ ├── Austria │ │ ├── Azerbaijan │ │ ├── Bahamas │ │ ├── Bahrain │ │ ├── Bangladesh │ │ ├── Barbados │ │ ├── Belarus │ │ ├── Belgium │ │ ├── Belize │ │ ├── Benin │ │ ├── Bermuda │ │ ├── Bhutan │ │ ├── Bolivia │ │ ├── Bosnia_Herzegovina │ │ ├── Botswana │ │ ├── Brazil │ │ ├── Brunei │ │ ├── Bulgaria │ │ ├── Burkina_Faso │ │ ├── Burundi │ │ ├── Cambodia │ │ ├── Cameroon │ │ ├── Canada │ │ ├── Cape_Verde │ │ ├── Cayman_Islands │ │ ├── Chad │ │ ├── Chile │ │ ├── China │ │ ├── Colombia │ │ ├── Comoros │ │ ├── Congo_Brazzaville │ │ ├── Congo_Kinshasa │ │ ├── Costa_Rica │ │ ├── Croatia │ │ ├── Cuba │ │ ├── Cyprus │ │ ├── Czech_Republic │ │ ├── Denmark │ │ ├── Dominica │ │ ├── Dominican_Republic │ │ ├── East_Timor │ │ ├── Ecuador │ │ ├── Egypt │ │ ├── El_Salvador │ │ ├── England │ │ ├── Equatorial_Guinea │ │ ├── Eritrea │ │ ├── Estonia │ │ ├── Ethiopia │ │ ├── Faroe_Islands │ │ ├── Fiji │ │ ├── Finland │ │ ├── France │ │ ├── Gabon │ │ ├── Gambia │ │ ├── Georgia │ │ ├── Germany │ │ ├── Ghana │ │ ├── Gibraltar │ │ ├── Greece │ │ ├── Greenland │ │ ├── Grenada │ │ ├── Guam │ │ ├── Guatemala │ │ ├── Guernsey │ │ ├── Guinea │ │ ├── Guinea_Bissau │ │ ├── Guyana │ │ ├── Haiti │ │ ├── Honduras │ │ ├── Hong_Kong │ │ ├── Hungary │ │ ├── Iceland │ │ ├── India │ │ ├── Indonesia │ │ ├── Iran │ │ ├── Iraq │ │ ├── Ireland │ │ ├── Isle_of_Man │ │ ├── Israel │ │ ├── Italy │ │ ├── Ivory_Coast │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Jersey │ │ ├── Jordan │ │ ├── Kazakhstan │ │ ├── Kenya │ │ ├── Kiribati │ │ ├── Kuwait │ │ ├── Kyrgyzstan │ │ ├── Laos │ │ ├── Latvia │ │ ├── Lebanon │ │ ├── Lesotho │ │ ├── Liberia │ │ ├── Libya │ │ ├── Liechtenstein │ │ ├── Lithuania │ │ ├── Luxembourg │ │ ├── Macedonia │ │ ├── Madagascar │ │ ├── Malawi │ │ ├── Malaysia │ │ ├── Maldives │ │ ├── Mali │ │ ├── Malta │ │ ├── Marshall_Islands │ │ ├── Mauritania │ │ ├── Mauritius │ │ ├── Mexico │ │ ├── Micronesia │ │ ├── Moldova │ │ ├── Monaco │ │ ├── Mongolia │ │ ├── Montenegro │ │ ├── Morocco │ │ ├── Mozambique │ │ ├── Myanmar │ │ ├── Namibia │ │ ├── Nauru │ │ ├── Nepal │ │ ├── Netherlands │ │ ├── Netherlands_Antilles │ │ ├── New_Zealand │ │ ├── Nicaragua │ │ ├── Niger │ │ ├── Nigeria │ │ ├── North_Korea │ │ ├── Northern_Ireland │ │ ├── Norway │ │ ├── Oman │ │ ├── Pakistan │ │ ├── Palau │ │ ├── Palestine │ │ ├── Panama │ │ ├── Papua_New_Guinea │ │ ├── Paraguay │ │ ├── Peru │ │ ├── Philippines │ │ ├── Poland │ │ ├── Portugal │ │ ├── Puertorico │ │ ├── Qatar │ │ ├── Quebec │ │ ├── Romania │ │ ├── Russia │ │ ├── Rwanda │ │ ├── Saint_Lucia │ │ ├── Samoa │ │ ├── San_Marino │ │ ├── Saotome_Principe │ │ ├── Saudi_Arabia │ │ ├── Scotland │ │ ├── Senegal │ │ ├── Seychelles │ │ ├── Sierra_Leone │ │ ├── Singapore │ │ ├── Slovakia │ │ ├── Slovenia │ │ ├── Solomon_Islands │ │ ├── Somalia │ │ ├── South_Africa │ │ ├── South_Korea │ │ ├── South_Vietnam │ │ ├── Spain │ │ ├── Sri_Lanka │ │ ├── Sudan │ │ ├── Suriname │ │ ├── Swaziland │ │ ├── Sweden │ │ ├── Switzerland │ │ ├── Syria │ │ ├── Taiwan │ │ ├── Tajikistan │ │ ├── Tanzania │ │ ├── Thailand │ │ ├── Togo │ │ ├── Tonga │ │ ├── Trinidad_Tobago │ │ ├── Tunisia │ │ ├── Turkey │ │ ├── Turkmenistan │ │ ├── Tuvalu │ │ ├── Uganda │ │ ├── Ukraine │ │ ├── United_Kingdom │ │ ├── United_States │ │ ├── Uruguay │ │ ├── Uzbekistan │ │ ├── Vanuatu │ │ ├── Vatican_City │ │ ├── Venezuela │ │ ├── Vietnam │ │ ├── Virgin_Islands │ │ ├── Wales │ │ ├── Yemen │ │ ├── Zambia │ │ ├── Zimbabwe │ │ ├── stkitts_nevis │ │ └── stvincent_grenadines │ ├── misc │ │ ├── Pirate │ │ └── Unknown │ └── mmakefile.src ├── help │ ├── English │ │ ├── Sys │ │ │ └── amigaguide.guide │ │ ├── faq.txt │ │ ├── installation.txt │ │ ├── mmakefile.src │ │ ├── options.txt │ │ └── using.txt │ ├── Russian │ │ └── Sys │ │ │ └── amigaguide.guide │ ├── gendoc.py │ ├── genindex.py │ └── mmakefile.src └── languages │ ├── albanian.c │ ├── basque.c │ ├── catalan.c │ ├── croatian.c │ ├── czech.c │ ├── danish.c │ ├── dutch.c │ ├── esperanto.c │ ├── finnish.c │ ├── french.c │ ├── german.c │ ├── greek.c │ ├── hungarian.c │ ├── icelandic.c │ ├── italian.c │ ├── lang_getlangstring.inc │ ├── lang_openclose.inc │ ├── maltese.c │ ├── mmakefile.src │ ├── norwegian.c │ ├── piglatin.c │ ├── polish.c │ ├── portuguese-brazil.c │ ├── portuguese.c │ ├── romanian.c │ ├── russian.c │ ├── serbian.c │ ├── slovak.c │ ├── slovene.c │ ├── spanish.c │ ├── swedish.c │ ├── templates │ └── english.c │ ├── thai.c │ └── turkish.c ├── mmakefile.src ├── network ├── WirelessManager │ ├── .gitignore │ ├── COPYING │ ├── README │ ├── mmakefile.src │ ├── patches │ │ ├── openssl-0.9.8-tls-extensions.patch │ │ ├── openssl-0.9.8d-tls-extensions.patch │ │ ├── openssl-0.9.8e-tls-extensions.patch │ │ ├── openssl-0.9.8g-tls-extensions.patch │ │ ├── openssl-0.9.8h-tls-extensions.patch │ │ ├── openssl-0.9.8i-tls-extensions.patch │ │ └── openssl-0.9.9-session-ticket.patch │ ├── src │ │ ├── Makefile │ │ ├── ap │ │ │ ├── Makefile │ │ │ ├── accounting.c │ │ │ ├── accounting.h │ │ │ ├── ap_config.c │ │ │ ├── ap_config.h │ │ │ ├── ap_drv_ops.c │ │ │ ├── ap_drv_ops.h │ │ │ ├── ap_list.c │ │ │ ├── ap_list.h │ │ │ ├── ap_mlme.c │ │ │ ├── ap_mlme.h │ │ │ ├── authsrv.c │ │ │ ├── authsrv.h │ │ │ ├── beacon.c │ │ │ ├── beacon.h │ │ │ ├── ctrl_iface_ap.c │ │ │ ├── ctrl_iface_ap.h │ │ │ ├── drv_callbacks.c │ │ │ ├── hostapd.c │ │ │ ├── hostapd.h │ │ │ ├── hw_features.c │ │ │ ├── hw_features.h │ │ │ ├── iapp.c │ │ │ ├── iapp.h │ │ │ ├── ieee802_11.c │ │ │ ├── ieee802_11.h │ │ │ ├── ieee802_11_auth.c │ │ │ ├── ieee802_11_auth.h │ │ │ ├── ieee802_11_ht.c │ │ │ ├── ieee802_1x.c │ │ │ ├── ieee802_1x.h │ │ │ ├── peerkey_auth.c │ │ │ ├── pmksa_cache_auth.c │ │ │ ├── pmksa_cache_auth.h │ │ │ ├── preauth_auth.c │ │ │ ├── preauth_auth.h │ │ │ ├── sta_info.c │ │ │ ├── sta_info.h │ │ │ ├── tkip_countermeasures.c │ │ │ ├── tkip_countermeasures.h │ │ │ ├── utils.c │ │ │ ├── vlan_init.c │ │ │ ├── vlan_init.h │ │ │ ├── wmm.c │ │ │ ├── wmm.h │ │ │ ├── wpa_auth.c │ │ │ ├── wpa_auth.h │ │ │ ├── wpa_auth_ft.c │ │ │ ├── wpa_auth_glue.c │ │ │ ├── wpa_auth_glue.h │ │ │ ├── wpa_auth_i.h │ │ │ ├── wpa_auth_ie.c │ │ │ ├── wpa_auth_ie.h │ │ │ ├── wps_hostapd.c │ │ │ └── wps_hostapd.h │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── defs.h │ │ │ ├── eapol_common.h │ │ │ ├── ieee802_11_common.c │ │ │ ├── ieee802_11_common.h │ │ │ ├── ieee802_11_defs.h │ │ │ ├── privsep_commands.h │ │ │ ├── version.h │ │ │ ├── wpa_common.c │ │ │ ├── wpa_common.h │ │ │ ├── wpa_ctrl.c │ │ │ └── wpa_ctrl.h │ │ ├── crypto │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── aes-cbc.c │ │ │ ├── aes-ctr.c │ │ │ ├── aes-eax.c │ │ │ ├── aes-encblock.c │ │ │ ├── aes-internal-dec.c │ │ │ ├── aes-internal-enc.c │ │ │ ├── aes-internal.c │ │ │ ├── aes-omac1.c │ │ │ ├── aes-unwrap.c │ │ │ ├── aes-wrap.c │ │ │ ├── aes.h │ │ │ ├── aes_i.h │ │ │ ├── aes_wrap.h │ │ │ ├── crypto.h │ │ │ ├── crypto_cryptoapi.c │ │ │ ├── crypto_gnutls.c │ │ │ ├── crypto_internal-cipher.c │ │ │ ├── crypto_internal-modexp.c │ │ │ ├── crypto_internal-rsa.c │ │ │ ├── crypto_internal.c │ │ │ ├── crypto_libtomcrypt.c │ │ │ ├── crypto_none.c │ │ │ ├── crypto_nss.c │ │ │ ├── crypto_openssl.c │ │ │ ├── des-internal.c │ │ │ ├── des_i.h │ │ │ ├── dh_group5.c │ │ │ ├── dh_group5.h │ │ │ ├── dh_groups.c │ │ │ ├── dh_groups.h │ │ │ ├── fips_prf_cryptoapi.c │ │ │ ├── fips_prf_gnutls.c │ │ │ ├── fips_prf_internal.c │ │ │ ├── fips_prf_nss.c │ │ │ ├── fips_prf_openssl.c │ │ │ ├── md4-internal.c │ │ │ ├── md5-internal.c │ │ │ ├── md5-non-fips.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── md5_i.h │ │ │ ├── milenage.c │ │ │ ├── milenage.h │ │ │ ├── ms_funcs.c │ │ │ ├── ms_funcs.h │ │ │ ├── rc4.c │ │ │ ├── sha1-internal.c │ │ │ ├── sha1-pbkdf2.c │ │ │ ├── sha1-tlsprf.c │ │ │ ├── sha1-tprf.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── sha1_i.h │ │ │ ├── sha256-internal.c │ │ │ ├── sha256.c │ │ │ ├── sha256.h │ │ │ ├── tls.h │ │ │ ├── tls_gnutls.c │ │ │ ├── tls_internal.c │ │ │ ├── tls_none.c │ │ │ ├── tls_nss.c │ │ │ ├── tls_openssl.c │ │ │ └── tls_schannel.c │ │ ├── drivers │ │ │ ├── .gitignore │ │ │ ├── Apple80211.h │ │ │ ├── Makefile │ │ │ ├── MobileApple80211.c │ │ │ ├── MobileApple80211.h │ │ │ ├── driver.h │ │ │ ├── driver_atheros.c │ │ │ ├── driver_atmel.c │ │ │ ├── driver_broadcom.c │ │ │ ├── driver_bsd.c │ │ │ ├── driver_hostap.c │ │ │ ├── driver_hostap.h │ │ │ ├── driver_iphone.m │ │ │ ├── driver_ipw.c │ │ │ ├── driver_madwifi.c │ │ │ ├── driver_ndis.c │ │ │ ├── driver_ndis.h │ │ │ ├── driver_ndis_.c │ │ │ ├── driver_ndiswrapper.c │ │ │ ├── driver_nl80211.c │ │ │ ├── driver_none.c │ │ │ ├── driver_osx.m │ │ │ ├── driver_privsep.c │ │ │ ├── driver_ralink.c │ │ │ ├── driver_ralink.h │ │ │ ├── driver_roboswitch.c │ │ │ ├── driver_sana2.c │ │ │ ├── driver_test.c │ │ │ ├── driver_wext.c │ │ │ ├── driver_wext.h │ │ │ ├── driver_wired.c │ │ │ ├── drivers.c │ │ │ ├── drivers.mak │ │ │ ├── linux_ioctl.c │ │ │ ├── linux_ioctl.h │ │ │ ├── ndis_events.c │ │ │ ├── netlink.c │ │ │ ├── netlink.h │ │ │ ├── nl80211_copy.h │ │ │ ├── priv_netlink.h │ │ │ └── wireless_copy.h │ │ ├── eap_common │ │ │ ├── Makefile │ │ │ ├── chap.c │ │ │ ├── chap.h │ │ │ ├── eap_common.c │ │ │ ├── eap_common.h │ │ │ ├── eap_defs.h │ │ │ ├── eap_fast_common.c │ │ │ ├── eap_fast_common.h │ │ │ ├── eap_gpsk_common.c │ │ │ ├── eap_gpsk_common.h │ │ │ ├── eap_ikev2_common.c │ │ │ ├── eap_ikev2_common.h │ │ │ ├── eap_pax_common.c │ │ │ ├── eap_pax_common.h │ │ │ ├── eap_peap_common.c │ │ │ ├── eap_peap_common.h │ │ │ ├── eap_psk_common.c │ │ │ ├── eap_psk_common.h │ │ │ ├── eap_sake_common.c │ │ │ ├── eap_sake_common.h │ │ │ ├── eap_sim_common.c │ │ │ ├── eap_sim_common.h │ │ │ ├── eap_tlv_common.h │ │ │ ├── eap_ttls.h │ │ │ ├── eap_wsc_common.c │ │ │ ├── eap_wsc_common.h │ │ │ ├── ikev2_common.c │ │ │ └── ikev2_common.h │ │ ├── eap_peer │ │ │ ├── Makefile │ │ │ ├── eap.c │ │ │ ├── eap.h │ │ │ ├── eap_aka.c │ │ │ ├── eap_config.h │ │ │ ├── eap_fast.c │ │ │ ├── eap_fast_pac.c │ │ │ ├── eap_fast_pac.h │ │ │ ├── eap_gpsk.c │ │ │ ├── eap_gtc.c │ │ │ ├── eap_i.h │ │ │ ├── eap_ikev2.c │ │ │ ├── eap_leap.c │ │ │ ├── eap_md5.c │ │ │ ├── eap_methods.c │ │ │ ├── eap_methods.h │ │ │ ├── eap_mschapv2.c │ │ │ ├── eap_otp.c │ │ │ ├── eap_pax.c │ │ │ ├── eap_peap.c │ │ │ ├── eap_psk.c │ │ │ ├── eap_sake.c │ │ │ ├── eap_sim.c │ │ │ ├── eap_tls.c │ │ │ ├── eap_tls_common.c │ │ │ ├── eap_tls_common.h │ │ │ ├── eap_tnc.c │ │ │ ├── eap_ttls.c │ │ │ ├── eap_vendor_test.c │ │ │ ├── eap_wsc.c │ │ │ ├── ikev2.c │ │ │ ├── ikev2.h │ │ │ ├── mschapv2.c │ │ │ ├── mschapv2.h │ │ │ ├── tncc.c │ │ │ └── tncc.h │ │ ├── eap_server │ │ │ ├── Makefile │ │ │ ├── eap.h │ │ │ ├── eap_i.h │ │ │ ├── eap_methods.h │ │ │ ├── eap_server.c │ │ │ ├── eap_server_aka.c │ │ │ ├── eap_server_fast.c │ │ │ ├── eap_server_gpsk.c │ │ │ ├── eap_server_gtc.c │ │ │ ├── eap_server_identity.c │ │ │ ├── eap_server_ikev2.c │ │ │ ├── eap_server_md5.c │ │ │ ├── eap_server_methods.c │ │ │ ├── eap_server_mschapv2.c │ │ │ ├── eap_server_pax.c │ │ │ ├── eap_server_peap.c │ │ │ ├── eap_server_psk.c │ │ │ ├── eap_server_sake.c │ │ │ ├── eap_server_sim.c │ │ │ ├── eap_server_tls.c │ │ │ ├── eap_server_tls_common.c │ │ │ ├── eap_server_tnc.c │ │ │ ├── eap_server_ttls.c │ │ │ ├── eap_server_vendor_test.c │ │ │ ├── eap_server_wsc.c │ │ │ ├── eap_sim_db.c │ │ │ ├── eap_sim_db.h │ │ │ ├── eap_tls_common.h │ │ │ ├── ikev2.c │ │ │ ├── ikev2.h │ │ │ ├── tncs.c │ │ │ └── tncs.h │ │ ├── eapol_auth │ │ │ ├── Makefile │ │ │ ├── eapol_auth_dump.c │ │ │ ├── eapol_auth_sm.c │ │ │ ├── eapol_auth_sm.h │ │ │ └── eapol_auth_sm_i.h │ │ ├── eapol_supp │ │ │ ├── Makefile │ │ │ ├── eapol_supp_sm.c │ │ │ └── eapol_supp_sm.h │ │ ├── l2_packet │ │ │ ├── Makefile │ │ │ ├── l2_packet.h │ │ │ ├── l2_packet_freebsd.c │ │ │ ├── l2_packet_linux.c │ │ │ ├── l2_packet_ndis.c │ │ │ ├── l2_packet_none.c │ │ │ ├── l2_packet_pcap.c │ │ │ ├── l2_packet_privsep.c │ │ │ └── l2_packet_winpcap.c │ │ ├── lib.rules │ │ ├── radius │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── radius.c │ │ │ ├── radius.h │ │ │ ├── radius_client.c │ │ │ ├── radius_client.h │ │ │ ├── radius_server.c │ │ │ └── radius_server.h │ │ ├── rsn_supp │ │ │ ├── Makefile │ │ │ ├── peerkey.c │ │ │ ├── peerkey.h │ │ │ ├── pmksa_cache.c │ │ │ ├── pmksa_cache.h │ │ │ ├── preauth.c │ │ │ ├── preauth.h │ │ │ ├── wpa.c │ │ │ ├── wpa.h │ │ │ ├── wpa_ft.c │ │ │ ├── wpa_i.h │ │ │ ├── wpa_ie.c │ │ │ └── wpa_ie.h │ │ ├── tls │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── asn1.c │ │ │ ├── asn1.h │ │ │ ├── bignum.c │ │ │ ├── bignum.h │ │ │ ├── libtommath.c │ │ │ ├── pkcs1.c │ │ │ ├── pkcs1.h │ │ │ ├── pkcs5.c │ │ │ ├── pkcs5.h │ │ │ ├── pkcs8.c │ │ │ ├── pkcs8.h │ │ │ ├── rsa.c │ │ │ ├── rsa.h │ │ │ ├── tlsv1_client.c │ │ │ ├── tlsv1_client.h │ │ │ ├── tlsv1_client_i.h │ │ │ ├── tlsv1_client_read.c │ │ │ ├── tlsv1_client_write.c │ │ │ ├── tlsv1_common.c │ │ │ ├── tlsv1_common.h │ │ │ ├── tlsv1_cred.c │ │ │ ├── tlsv1_cred.h │ │ │ ├── tlsv1_record.c │ │ │ ├── tlsv1_record.h │ │ │ ├── tlsv1_server.c │ │ │ ├── tlsv1_server.h │ │ │ ├── tlsv1_server_i.h │ │ │ ├── tlsv1_server_read.c │ │ │ ├── tlsv1_server_write.c │ │ │ ├── x509v3.c │ │ │ └── x509v3.h │ │ ├── utils │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── base64.c │ │ │ ├── base64.h │ │ │ ├── build_config.h │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── eloop.c │ │ │ ├── eloop.h │ │ │ ├── eloop_amiga.c │ │ │ ├── eloop_none.c │ │ │ ├── eloop_win.c │ │ │ ├── includes.h │ │ │ ├── ip_addr.c │ │ │ ├── ip_addr.h │ │ │ ├── list.h │ │ │ ├── os.h │ │ │ ├── os_amiga.c │ │ │ ├── os_internal.c │ │ │ ├── os_none.c │ │ │ ├── os_unix.c │ │ │ ├── os_win32.c │ │ │ ├── pcsc_funcs.c │ │ │ ├── pcsc_funcs.h │ │ │ ├── radiotap.c │ │ │ ├── radiotap.h │ │ │ ├── radiotap_iter.h │ │ │ ├── state_machine.h │ │ │ ├── trace.c │ │ │ ├── trace.h │ │ │ ├── uuid.c │ │ │ ├── uuid.h │ │ │ ├── wpa_debug.c │ │ │ ├── wpa_debug.h │ │ │ ├── wpabuf.c │ │ │ └── wpabuf.h │ │ └── wps │ │ │ ├── Makefile │ │ │ ├── http.h │ │ │ ├── http_client.c │ │ │ ├── http_client.h │ │ │ ├── http_server.c │ │ │ ├── http_server.h │ │ │ ├── httpread.c │ │ │ ├── httpread.h │ │ │ ├── ndef.c │ │ │ ├── upnp_xml.c │ │ │ ├── upnp_xml.h │ │ │ ├── wps.c │ │ │ ├── wps.h │ │ │ ├── wps_attr_build.c │ │ │ ├── wps_attr_parse.c │ │ │ ├── wps_attr_process.c │ │ │ ├── wps_common.c │ │ │ ├── wps_defs.h │ │ │ ├── wps_dev_attr.c │ │ │ ├── wps_dev_attr.h │ │ │ ├── wps_enrollee.c │ │ │ ├── wps_er.c │ │ │ ├── wps_er.h │ │ │ ├── wps_er_ssdp.c │ │ │ ├── wps_i.h │ │ │ ├── wps_nfc.c │ │ │ ├── wps_nfc_pn531.c │ │ │ ├── wps_registrar.c │ │ │ ├── wps_ufd.c │ │ │ ├── wps_upnp.c │ │ │ ├── wps_upnp.h │ │ │ ├── wps_upnp_ap.c │ │ │ ├── wps_upnp_event.c │ │ │ ├── wps_upnp_i.h │ │ │ ├── wps_upnp_ssdp.c │ │ │ └── wps_upnp_web.c │ └── wpa_supplicant │ │ ├── .config │ │ ├── .gitignore │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── README │ │ ├── README-WPS │ │ ├── README-Windows.txt │ │ ├── ap.c │ │ ├── ap.h │ │ ├── bgscan.c │ │ ├── bgscan.h │ │ ├── bgscan_simple.c │ │ ├── blacklist.c │ │ ├── blacklist.h │ │ ├── bss.c │ │ ├── bss.h │ │ ├── config.c │ │ ├── config.h │ │ ├── config_file.c │ │ ├── config_none.c │ │ ├── config_ssid.h │ │ ├── config_winreg.c │ │ ├── configure │ │ ├── ctrl_iface.c │ │ ├── ctrl_iface.h │ │ ├── ctrl_iface_named_pipe.c │ │ ├── ctrl_iface_udp.c │ │ ├── ctrl_iface_unix.c │ │ ├── dbus │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── dbus-wpa_supplicant.conf │ │ ├── dbus_common.c │ │ ├── dbus_common.h │ │ ├── dbus_common_i.h │ │ ├── dbus_dict_helpers.c │ │ ├── dbus_dict_helpers.h │ │ ├── dbus_new.c │ │ ├── dbus_new.h │ │ ├── dbus_new_handlers.c │ │ ├── dbus_new_handlers.h │ │ ├── dbus_new_handlers_wps.c │ │ ├── dbus_new_helpers.c │ │ ├── dbus_new_helpers.h │ │ ├── dbus_new_introspect.c │ │ ├── dbus_old.c │ │ ├── dbus_old.h │ │ ├── dbus_old_handlers.c │ │ ├── dbus_old_handlers.h │ │ ├── dbus_old_handlers_wps.c │ │ ├── fi.epitest.hostap.WPASupplicant.service │ │ └── fi.w1.wpa_supplicant1.service │ │ ├── defconfig │ │ ├── doc │ │ └── docbook │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── manpage.links │ │ │ ├── manpage.refs │ │ │ ├── wpa_background.8 │ │ │ ├── wpa_background.sgml │ │ │ ├── wpa_cli.8 │ │ │ ├── wpa_cli.sgml │ │ │ ├── wpa_gui.8 │ │ │ ├── wpa_gui.sgml │ │ │ ├── wpa_passphrase.8 │ │ │ ├── wpa_passphrase.sgml │ │ │ ├── wpa_priv.8 │ │ │ ├── wpa_priv.sgml │ │ │ ├── wpa_supplicant.8 │ │ │ ├── wpa_supplicant.conf.5 │ │ │ ├── wpa_supplicant.conf.sgml │ │ │ └── wpa_supplicant.sgml │ │ ├── driver_i.h │ │ ├── eap_register.c │ │ ├── eap_testing.txt │ │ ├── eapol_test.c │ │ ├── events.c │ │ ├── examples │ │ ├── 60_wpa_supplicant │ │ ├── ieee8021x.conf │ │ ├── openCryptoki.conf │ │ ├── plaintext.conf │ │ ├── wep.conf │ │ ├── wpa-psk-tkip.conf │ │ ├── wpa2-eap-ccmp.conf │ │ ├── wpas-dbus-new-getall.py │ │ ├── wpas-dbus-new-signals.py │ │ ├── wpas-dbus-new-wps.py │ │ ├── wpas-dbus-new.py │ │ └── wpas-test.py │ │ ├── ibss_rsn.c │ │ ├── ibss_rsn.h │ │ ├── main.c │ │ ├── main_amiga.c │ │ ├── main_none.c │ │ ├── main_symbian.cpp │ │ ├── main_winmain.c │ │ ├── main_winsvc.c │ │ ├── mlme.c │ │ ├── mlme.h │ │ ├── mmakefile.src │ │ ├── nmake.mak │ │ ├── notify.c │ │ ├── notify.h │ │ ├── preauth_test.c │ │ ├── scan.c │ │ ├── scan.h │ │ ├── sme.c │ │ ├── sme.h │ │ ├── symbian │ │ ├── README.symbian │ │ ├── bld.inf │ │ └── wpa_supplicant.mmp │ │ ├── tests │ │ ├── link_test.c │ │ ├── test_eap_sim_common.c │ │ └── test_wpa.c │ │ ├── todo.txt │ │ ├── vs2005 │ │ ├── eapol_test │ │ │ └── eapol_test.vcproj │ │ ├── win_if_list │ │ │ └── win_if_list.vcproj │ │ ├── wpa_cli │ │ │ └── wpa_cli.vcproj │ │ ├── wpa_passphrase │ │ │ └── wpa_passphrase.vcproj │ │ ├── wpa_supplicant.sln │ │ ├── wpa_supplicant │ │ │ └── wpa_supplicant.vcproj │ │ └── wpasvc │ │ │ └── wpasvc.vcproj │ │ ├── win_example.reg │ │ ├── win_if_list.c │ │ ├── wpa_cli.c │ │ ├── wpa_gui-qt4 │ │ ├── .gitignore │ │ ├── addinterface.cpp │ │ ├── addinterface.h │ │ ├── eventhistory.cpp │ │ ├── eventhistory.h │ │ ├── eventhistory.ui │ │ ├── icons.qrc │ │ ├── icons │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ap.svg │ │ │ ├── laptop.svg │ │ │ └── wpa_gui.svg │ │ ├── icons_png.qrc │ │ ├── main.cpp │ │ ├── networkconfig.cpp │ │ ├── networkconfig.h │ │ ├── networkconfig.ui │ │ ├── peers.cpp │ │ ├── peers.h │ │ ├── peers.ui │ │ ├── scanresults.cpp │ │ ├── scanresults.h │ │ ├── scanresults.ui │ │ ├── stringquery.cpp │ │ ├── stringquery.h │ │ ├── userdatarequest.cpp │ │ ├── userdatarequest.h │ │ ├── userdatarequest.ui │ │ ├── wpa_gui.desktop │ │ ├── wpa_gui.pro │ │ ├── wpagui.cpp │ │ ├── wpagui.h │ │ ├── wpagui.ui │ │ └── wpamsg.h │ │ ├── wpa_gui │ │ ├── .gitignore │ │ ├── eventhistory.ui │ │ ├── eventhistory.ui.h │ │ ├── main.cpp │ │ ├── networkconfig.ui │ │ ├── networkconfig.ui.h │ │ ├── scanresults.ui │ │ ├── scanresults.ui.h │ │ ├── setup-mingw-cross-compiling │ │ ├── userdatarequest.ui │ │ ├── userdatarequest.ui.h │ │ ├── wpa_gui.pro │ │ ├── wpagui.ui │ │ ├── wpagui.ui.h │ │ └── wpamsg.h │ │ ├── wpa_gui_amiga.c │ │ ├── wpa_passphrase.c │ │ ├── wpa_priv.c │ │ ├── wpa_supplicant.c │ │ ├── wpa_supplicant.conf │ │ ├── wpa_supplicant.nsi │ │ ├── wpa_supplicant_i.h │ │ ├── wpas_glue.c │ │ ├── wpas_glue.h │ │ ├── wps_supplicant.c │ │ └── wps_supplicant.h ├── common │ ├── .gitignore │ ├── C │ │ ├── .gitignore │ │ ├── arp.c │ │ ├── hostname.c │ │ ├── ifconfig.c │ │ ├── keywords.h │ │ ├── logger.c │ │ ├── mmakefile.src │ │ ├── netstat │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── if.c │ │ │ ├── inet.c │ │ │ ├── iso.c │ │ │ ├── main.c │ │ │ ├── mbuf.c │ │ │ ├── mmakefile.src │ │ │ ├── mroute.c │ │ │ ├── netstat.1 │ │ │ ├── netstat.h │ │ │ ├── ns.c │ │ │ ├── route.c │ │ │ └── unix.c │ │ ├── ping.c │ │ ├── resolve.c │ │ ├── route.c │ │ ├── traceroute │ │ │ ├── as.c │ │ │ ├── as.h │ │ │ ├── findsaddr-socket.c │ │ │ ├── findsaddr-udp.c │ │ │ ├── findsaddr.h │ │ │ ├── ifaddrlist.c │ │ │ ├── ifaddrlist.h │ │ │ ├── mmakefile.src │ │ │ ├── traceroute.c │ │ │ └── traceroute.h │ │ └── whoami.c │ ├── README.txt │ ├── dhcp │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.conf │ │ ├── Makefile.dist │ │ ├── README │ │ ├── RELNOTES │ │ ├── client │ │ │ ├── Makefile.dist │ │ │ ├── clparse.c │ │ │ ├── dhcglobals.c │ │ │ ├── dhclient-script.8 │ │ │ ├── dhclient.8 │ │ │ ├── dhclient.c │ │ │ ├── dhclient.conf │ │ │ ├── dhclient.conf.5 │ │ │ ├── dhclient.leases.5 │ │ │ ├── mmakefile.src │ │ │ └── scripts │ │ │ │ ├── bsdos │ │ │ │ ├── freebsd │ │ │ │ ├── linux │ │ │ │ ├── netbsd │ │ │ │ ├── nextstep │ │ │ │ ├── openbsd │ │ │ │ └── solaris │ │ ├── common │ │ │ ├── Makefile.dist │ │ │ ├── alloc.c │ │ │ ├── bpf.c │ │ │ ├── comapi.c │ │ │ ├── conflex.c │ │ │ ├── ctrace.c │ │ │ ├── dhcp-eval.5 │ │ │ ├── dhcp-options.5 │ │ │ ├── discover.c │ │ │ ├── dispatch.c │ │ │ ├── dlpi.c │ │ │ ├── dns.c │ │ │ ├── ethernet.c │ │ │ ├── execute.c │ │ │ ├── fddi.c │ │ │ ├── icmp.c │ │ │ ├── inet.c │ │ │ ├── lpf.c │ │ │ ├── memory.c │ │ │ ├── mmakefile.src │ │ │ ├── nit.c │ │ │ ├── options.c │ │ │ ├── packet.c │ │ │ ├── parse.c │ │ │ ├── print.c │ │ │ ├── raw.c │ │ │ ├── resolv.c │ │ │ ├── socket.c │ │ │ ├── tables.c │ │ │ ├── tr.c │ │ │ ├── tree.c │ │ │ └── upf.c │ │ ├── configure │ │ ├── contrib │ │ │ ├── 3.0b1-lease-convert │ │ │ ├── dhcp.spec │ │ │ ├── ms2isc │ │ │ │ ├── Registry.pm │ │ │ │ ├── ms2isc.pl │ │ │ │ └── readme.txt │ │ │ ├── sethostname.sh │ │ │ └── solaris.init │ │ ├── dhcpctl │ │ │ ├── Makefile.dist │ │ │ ├── callback.c │ │ │ ├── cltest.c │ │ │ ├── dhcpctl.3 │ │ │ ├── dhcpctl.c │ │ │ ├── dhcpctl.h │ │ │ ├── omshell.1 │ │ │ ├── omshell.c │ │ │ └── remote.c │ │ ├── doc │ │ │ ├── IANA-arp-parameters │ │ │ ├── api+protocol │ │ │ ├── draft-ietf-dhc-authentication-14.txt │ │ │ ├── draft-ietf-dhc-dhcp-dns-12.txt │ │ │ ├── draft-ietf-dhc-failover-07.txt │ │ │ ├── ja_JP.eucJP │ │ │ │ ├── dhclient-script.8 │ │ │ │ ├── dhclient.8 │ │ │ │ ├── dhclient.conf.5 │ │ │ │ ├── dhclient.leases.5 │ │ │ │ ├── dhcp-eval.5 │ │ │ │ └── dhcp-options.5 │ │ │ ├── rfc1542.txt │ │ │ ├── rfc2131.txt │ │ │ ├── rfc2132.txt │ │ │ ├── rfc2485.txt │ │ │ ├── rfc2489.txt │ │ │ └── rfc951.txt │ │ ├── dst │ │ │ ├── Makefile.dist │ │ │ ├── base64.c │ │ │ ├── dst_api.c │ │ │ ├── dst_internal.h │ │ │ ├── dst_support.c │ │ │ ├── hmac_link.c │ │ │ ├── md5.h │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ ├── mmakefile.src │ │ │ └── prandom.c │ │ ├── includes │ │ │ ├── arpa │ │ │ │ ├── nameser.h │ │ │ │ └── nameser_compat.h │ │ │ ├── cdefs.h │ │ │ ├── cf │ │ │ │ ├── aix.h │ │ │ │ ├── alphaosf.h │ │ │ │ ├── aros.h │ │ │ │ ├── bsdos.h │ │ │ │ ├── cygwin32.h │ │ │ │ ├── freebsd.h │ │ │ │ ├── hpux.h │ │ │ │ ├── irix.h │ │ │ │ ├── linux.h │ │ │ │ ├── morphos.h │ │ │ │ ├── netbsd.h │ │ │ │ ├── nextstep.h │ │ │ │ ├── openbsd.h │ │ │ │ ├── qnx.h │ │ │ │ ├── rhapsody.h │ │ │ │ ├── sample.h │ │ │ │ ├── sco.h │ │ │ │ ├── sunos4.h │ │ │ │ ├── sunos5-5.h │ │ │ │ └── ultrix.h │ │ │ ├── ctrace.h │ │ │ ├── dhcp.h │ │ │ ├── dhcp_osdep.h │ │ │ ├── dhcpd.h │ │ │ ├── dhctoken.h │ │ │ ├── failover.h │ │ │ ├── inet.h │ │ │ ├── isc-dhcp │ │ │ │ ├── boolean.h │ │ │ │ ├── dst.h │ │ │ │ ├── int.h │ │ │ │ ├── lang.h │ │ │ │ ├── list.h │ │ │ │ ├── result.h │ │ │ │ └── types.h │ │ │ ├── minires │ │ │ │ ├── minires.h │ │ │ │ ├── res_update.h │ │ │ │ └── resolv.h │ │ │ ├── netinet │ │ │ │ ├── if_ether.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip_icmp.h │ │ │ │ └── udp.h │ │ │ ├── omapip │ │ │ │ ├── alloc.h │ │ │ │ ├── buffer.h │ │ │ │ ├── convert.h │ │ │ │ ├── hash.h │ │ │ │ ├── omapip.h │ │ │ │ ├── omapip_p.h │ │ │ │ └── trace.h │ │ │ ├── site.h │ │ │ ├── statement.h │ │ │ ├── tree.h │ │ │ └── version.h │ │ ├── minires │ │ │ ├── Makefile.dist │ │ │ ├── mmakefile.src │ │ │ ├── ns_date.c │ │ │ ├── ns_name.c │ │ │ ├── ns_parse.c │ │ │ ├── ns_samedomain.c │ │ │ ├── ns_sign.c │ │ │ ├── ns_verify.c │ │ │ ├── res_comp.c │ │ │ ├── res_findzonecut.c │ │ │ ├── res_init.c │ │ │ ├── res_mkquery.c │ │ │ ├── res_mkupdate.c │ │ │ ├── res_query.c │ │ │ ├── res_send.c │ │ │ ├── res_sendsigned.c │ │ │ └── res_update.c │ │ ├── omapip │ │ │ ├── Makefile.dist │ │ │ ├── alloc.c │ │ │ ├── array.c │ │ │ ├── auth.c │ │ │ ├── buffer.c │ │ │ ├── connection.c │ │ │ ├── convert.c │ │ │ ├── dispatch.c │ │ │ ├── errwarn.c │ │ │ ├── generic.c │ │ │ ├── handle.c │ │ │ ├── hash.c │ │ │ ├── inet_addr.c │ │ │ ├── iscprint.c │ │ │ ├── listener.c │ │ │ ├── message.c │ │ │ ├── mmakefile.src │ │ │ ├── mrtrace.c │ │ │ ├── omapi.3 │ │ │ ├── protocol.c │ │ │ ├── result.c │ │ │ ├── support.c │ │ │ ├── test.c │ │ │ ├── toisc.c │ │ │ └── trace.c │ │ ├── relay │ │ │ ├── Makefile.dist │ │ │ ├── dhcrelay.8 │ │ │ └── dhcrelay.c │ │ ├── server │ │ │ ├── Makefile.dist │ │ │ ├── bootp.c │ │ │ ├── class.c │ │ │ ├── confpars.c │ │ │ ├── db.c │ │ │ ├── ddns.c │ │ │ ├── dhcp.c │ │ │ ├── dhcpd.8 │ │ │ ├── dhcpd.c │ │ │ ├── dhcpd.conf │ │ │ ├── dhcpd.conf.5 │ │ │ ├── dhcpd.leases.5 │ │ │ ├── failover.c │ │ │ ├── mdb.c │ │ │ ├── omapi.c │ │ │ ├── salloc.c │ │ │ └── stables.c │ │ ├── site.conf │ │ └── tests │ │ │ └── failover │ │ │ ├── dhcp-1.cf │ │ │ ├── dhcp-2.cf │ │ │ └── new-failover │ ├── include │ │ ├── .gitignore │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── bsdsocket │ │ │ ├── socketbasetags.h │ │ │ └── types.h │ │ ├── clib │ │ │ ├── bsdsocket_protos.h │ │ │ ├── miami_protos.h │ │ │ ├── miamipanel_protos.h │ │ │ ├── netlib_protos.h │ │ │ └── socket_protos.h │ │ ├── defines │ │ │ ├── bsdsocket.h │ │ │ ├── miami.h │ │ │ ├── miamipanel.h │ │ │ ├── pthreadsocket.h │ │ │ └── socket.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── inetd.h │ │ ├── kvm.h │ │ ├── libraries │ │ │ ├── bsdsocket.h │ │ │ ├── miami.h │ │ │ └── miamipanel.h │ │ ├── mmakefile.src │ │ ├── net │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ ├── if_dl.h │ │ │ ├── if_llc.h │ │ │ ├── if_slvar.h │ │ │ ├── if_types.h │ │ │ ├── radix.h │ │ │ ├── route.h │ │ │ ├── sana2errno.h │ │ │ └── sana2tags.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── icmp6.h │ │ │ ├── icmp_var.h │ │ │ ├── in.h │ │ │ ├── in_pcb.h │ │ │ ├── in_systm.h │ │ │ ├── in_var.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── ip_var.h │ │ │ ├── sctp.h │ │ │ ├── sctp_constants.h │ │ │ ├── sctp_header.h │ │ │ ├── sctp_uio.h │ │ │ ├── tcp.h │ │ │ ├── tcp_debug.h │ │ │ ├── tcp_fsm.h │ │ │ ├── tcp_seq.h │ │ │ ├── tcp_timer.h │ │ │ ├── tcp_var.h │ │ │ ├── tcpip.h │ │ │ ├── udp.h │ │ │ └── udp_var.h │ │ ├── nlist.h │ │ ├── proto │ │ │ ├── bsdsocket.h │ │ │ ├── miami.h │ │ │ ├── miamipanel.h │ │ │ └── socket.h │ │ ├── sys │ │ │ ├── _sockaddr_storage.h │ │ │ ├── cdefs.h │ │ │ ├── errno.h │ │ │ ├── file.h │ │ │ ├── ioctl.h │ │ │ ├── malloc.h │ │ │ ├── mbuf.h │ │ │ ├── net_types.h │ │ │ ├── protosw.h │ │ │ ├── queue.h │ │ │ ├── socket.h │ │ │ ├── socketvar.h │ │ │ ├── sockio.h │ │ │ ├── syslog.h │ │ │ └── un.h │ │ └── syslog.h │ └── mmakefile.src ├── smbfs │ ├── documentation │ │ ├── history.doc │ │ ├── smbfs.doc │ │ └── smbfs.html │ ├── mmakefile.src │ └── source_code │ │ ├── .cvsignore │ │ ├── COPYING │ │ ├── GNUmakefile.68k │ │ ├── GNUmakefile.os4 │ │ ├── assert.c │ │ ├── assert.h │ │ ├── crypt.c │ │ ├── dump_smb.c │ │ ├── dump_smb.h │ │ ├── errno.c │ │ ├── include │ │ └── smb │ │ │ ├── smb.h │ │ │ ├── smb_fs.h │ │ │ ├── smb_fs_sb.h │ │ │ ├── smb_mount.h │ │ │ └── smbno.h │ │ ├── main.c │ │ ├── mmakefile.src │ │ ├── proc.c │ │ ├── quad_math.c │ │ ├── quad_math.h │ │ ├── smakefile │ │ ├── smb.conf │ │ ├── smb_abstraction.c │ │ ├── smb_abstraction.h │ │ ├── smbfs.h │ │ ├── smbfs_rev.h │ │ ├── smbfs_rev.rev │ │ ├── sock.c │ │ ├── swap_stack_and_call.asm │ │ ├── system_headers.c │ │ ├── system_headers.h │ │ ├── utf-8-iso-8859-1-conversion.c │ │ └── utf-8-iso-8859-1-conversion.h └── stacks │ └── AROSTCP │ ├── LEGAL │ ├── MUI.MiamiPanel │ ├── Classes │ │ ├── muimiamipanel_class_about.c │ │ ├── muimiamipanel_class_app.c │ │ ├── muimiamipanel_class_if.c │ │ ├── muimiamipanel_class_ifgroup.c │ │ ├── muimiamipanel_class_lbutton.c │ │ ├── muimiamipanel_class_mgroup.c │ │ ├── muimiamipanel_class_prefs.c │ │ ├── muimiamipanel_class_rate.c │ │ ├── muimiamipanel_class_timetext.c │ │ ├── muimiamipanel_class_traffic.c │ │ └── muimiamipanel_classes.h │ ├── MUI.MiamiPanel.conf │ ├── include │ │ ├── clib │ │ │ └── MUI_protos.h │ │ ├── defines │ │ │ └── MUI.h │ │ └── proto │ │ │ └── MUI.h │ ├── mmakefile.src │ ├── muimiamipanel.h │ ├── muimiamipanel_commands.c │ ├── muimiamipanel_commands.h │ ├── muimiamipanel_funcs.c │ ├── muimiamipanel_iffprefs.c │ ├── muimiamipanel_iffprefs.h │ ├── muimiamipanel_init.c │ ├── muimiamipanel_intern.h │ ├── muimiamipanel_locale.c │ ├── muimiamipanel_locale.h │ ├── muimiamipanel_message.c │ ├── muimiamipanel_message.h │ ├── muimiamipanel_misc.c │ ├── muimiamipanel_misc.h │ └── muimiamipanel_proccess.c │ ├── README │ ├── S │ ├── Package-Startup │ ├── mmakefile.src │ ├── startnet │ └── stopnet │ ├── bsdsocket │ ├── api │ │ ├── allocdatabuffer.c │ │ ├── allocdatabuffer.h │ │ ├── amiga_api.c │ │ ├── amiga_api.h │ │ ├── amiga_errlists.c │ │ ├── amiga_generic.c │ │ ├── amiga_generic2.c │ │ ├── amiga_kernvars.c │ │ ├── amiga_kernvars.h │ │ ├── amiga_libcallentry.h │ │ ├── amiga_libcalls.c │ │ ├── amiga_libtables.c │ │ ├── amiga_ndbent.c │ │ ├── amiga_netstat.c │ │ ├── amiga_raf.h │ │ ├── amiga_roadshow.c │ │ ├── amiga_sendrecv.c │ │ ├── amiga_syscalls.c │ │ ├── apicalls.h │ │ ├── auto_extras.c │ │ ├── auto_inetaddr.c │ │ ├── auto_netdb.c │ │ ├── auto_nonsocket.c │ │ ├── auto_protocols.c │ │ ├── auto_socket.c │ │ ├── getaddrinfo.c │ │ ├── gethostnamadr.c │ │ ├── gethtbynamadr.h │ │ ├── getifaddrs.c │ │ ├── getxbyy.c │ │ ├── if_indextoname.c │ │ ├── if_nameindex.c │ │ ├── if_nametoindex.c │ │ ├── ifaddrs.h │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── miami_api.c │ │ ├── miami_api.h │ │ ├── miami_functable.c │ │ ├── res_comp.c │ │ ├── res_debug.c │ │ ├── res_init.c │ │ ├── res_mkquery.c │ │ ├── res_query.c │ │ ├── res_send.c │ │ ├── resolv.h │ │ ├── sockargs.h │ │ └── strtoul.c │ ├── conf.h │ ├── conf │ │ ├── conf.h │ │ └── rcs.h │ ├── kern │ │ ├── accesscontrol.c │ │ ├── accesscontrol.h │ │ ├── amiga_config.c │ │ ├── amiga_config.h │ │ ├── amiga_cstat.c │ │ ├── amiga_cx.c │ │ ├── amiga_cx.h │ │ ├── amiga_dhcp.c │ │ ├── amiga_dhcp.h │ │ ├── amiga_gui.c │ │ ├── amiga_gui.h │ │ ├── amiga_includes.h │ │ ├── amiga_log.c │ │ ├── amiga_log.h │ │ ├── amiga_main.c │ │ ├── amiga_netdb.c │ │ ├── amiga_netdb.h │ │ ├── amiga_netdb_resolver.h │ │ ├── amiga_rc.c │ │ ├── amiga_rc.h │ │ ├── amiga_rexx.c │ │ ├── amiga_rexx.h │ │ ├── amiga_subr.h │ │ ├── amiga_time.c │ │ ├── amiga_time.h │ │ ├── config_var.awk │ │ ├── config_var.c │ │ ├── kern_malloc.c │ │ ├── kern_subr.c │ │ ├── kern_synch.c │ │ ├── subr_prf.c │ │ ├── uio.h │ │ ├── uipc_domain.c │ │ ├── uipc_mbuf.c │ │ ├── uipc_socket.c │ │ ├── uipc_socket2.c │ │ └── variables.src │ ├── mmakefile.src │ ├── net │ │ ├── a_if.h │ │ ├── if.c │ │ ├── if_loop.c │ │ ├── if_sana.c │ │ ├── if_sana.h │ │ ├── netdbpaths.h │ │ ├── netisr.c │ │ ├── netisr.h │ │ ├── pfil.c │ │ ├── pfil.h │ │ ├── radix.c │ │ ├── raw_cb.c │ │ ├── raw_cb.h │ │ ├── raw_usrreq.c │ │ ├── route.c │ │ ├── rtsock.c │ │ ├── sana2arp.c │ │ ├── sana2arp.h │ │ ├── sana2config.c │ │ ├── sana2config.h │ │ ├── sana2copybuff.c │ │ ├── sana2perror.c │ │ └── sana2request.h │ ├── netinet │ │ ├── in.c │ │ ├── in_cksum.c │ │ ├── in_pcb.c │ │ ├── in_proto.c │ │ ├── in_var.h │ │ ├── ip_compat.h │ │ ├── ip_icmp.c │ │ ├── ip_input.c │ │ ├── ip_output.c │ │ ├── raw_ip.c │ │ ├── tcp_compat.h │ │ ├── tcp_debug.c │ │ ├── tcp_input.c │ │ ├── tcp_output.c │ │ ├── tcp_subr.c │ │ ├── tcp_timer.c │ │ ├── tcp_usrreq.c │ │ └── udp_usrreq.c │ ├── protos │ │ ├── kern │ │ │ ├── amiga_api_protos.h │ │ │ ├── amiga_main_protos.h │ │ │ ├── amiga_select_protos.h │ │ │ ├── amiga_time_protos.h │ │ │ ├── amiga_userlib_protos.h │ │ │ ├── kern_malloc_protos.h │ │ │ ├── kern_subr_protos.h │ │ │ ├── kern_synch_protos.h │ │ │ ├── subr_prf_protos.h │ │ │ ├── uipc_domain_protos.h │ │ │ ├── uipc_socket2_protos.h │ │ │ └── uipc_socket_protos.h │ │ ├── net │ │ │ ├── if_loop_protos.h │ │ │ ├── if_protos.h │ │ │ ├── radix_protos.h │ │ │ ├── raw_cb_protos.h │ │ │ ├── raw_usrreq_protos.h │ │ │ ├── route_protos.h │ │ │ └── rtsock_protos.h │ │ └── netinet │ │ │ ├── in_cksum_protos.h │ │ │ ├── in_pcb_protos.h │ │ │ ├── in_proto_protos.h │ │ │ ├── in_protos.h │ │ │ ├── ip_icmp_protos.h │ │ │ ├── ip_input_protos.h │ │ │ ├── ip_output_protos.h │ │ │ ├── raw_ip_protos.h │ │ │ ├── tcp_debug_protos.h │ │ │ ├── tcp_input_protos.h │ │ │ ├── tcp_output_protos.h │ │ │ ├── tcp_subr_protos.h │ │ │ ├── tcp_timer_protos.h │ │ │ ├── tcp_usrreq_protos.h │ │ │ └── udp_usrreq_protos.h │ ├── sys │ │ ├── a_ioctl.h │ │ ├── domain.h │ │ ├── kernel.h │ │ ├── queue2.h │ │ ├── synch.h │ │ └── systm.h │ └── version.h │ ├── db │ ├── general.config │ ├── group │ ├── hosts │ ├── inet.access │ ├── inetd.conf │ ├── interfaces │ ├── mmakefile.src │ ├── netdb │ ├── netdb-myhost │ ├── netdb-myhost.example │ ├── networks │ ├── passwd │ ├── protocols │ ├── services │ └── static-routes │ ├── libkvm │ ├── Makefile │ ├── kvm.c │ ├── kvm_errors.h │ ├── kvm_geterr.c │ ├── kvm_open.c │ ├── kvm_read.c │ └── mmakefile.src │ ├── mmakefile.src │ ├── netlib │ ├── Makefile │ ├── Smakefile │ ├── _allocufb.c │ ├── _chkufb.c │ ├── _close.c │ ├── _dup.c │ ├── _dup2.c │ ├── _fstat.c │ ├── _lseek.c │ ├── _open.c │ ├── _read.c │ ├── _write.c │ ├── access.c │ ├── asprintf.c │ ├── autoinit.c │ ├── chmod.c │ ├── chown.c │ ├── conf.h │ ├── dosio_init.c │ ├── dosio_sprintf.c │ ├── dostat.c │ ├── dummy.c │ ├── err.c │ ├── execve.c │ ├── fcntl.c │ ├── fhopen.c │ ├── fib.c │ ├── fibex.h │ ├── getopt.c │ ├── getpid.c │ ├── getppid.c │ ├── gettimeofday.c │ ├── herror.c │ ├── init_inet_daemon.c │ ├── init_usergroup.c │ ├── ioctl.c │ ├── iomode.c │ ├── isatty.c │ ├── kill.c │ ├── lineread.c │ ├── lineread.h │ ├── linkaddr.c │ ├── linkntoa.c │ ├── miami_autoinit.c │ ├── mmakefile.src │ ├── netlib.doc │ ├── netlib.h │ ├── perror.c │ ├── pkts.c │ ├── popen.c │ ├── printfault.c │ ├── printuserfault.c │ ├── random.c │ ├── rcmd.c │ ├── sana2errlist.c │ ├── sana2perror.c │ ├── sana2printfault.c │ ├── serveraccept.c │ ├── set_socket_stdio.c │ ├── setegid.c │ ├── seteuid.c │ ├── sleep.c │ ├── stat.c │ ├── strerror.c │ ├── stubs.c │ ├── syslog.c │ ├── timerinit.c │ ├── usleep.c │ ├── utime.c │ ├── vasprintf.c │ └── writev.c │ └── syslog │ ├── colorlist.c │ ├── colorlist.h │ ├── hooks.c │ ├── hooks.h │ ├── main.c │ ├── main.h │ ├── makefile │ ├── mmakefile.src │ ├── str.c │ └── str.h ├── prefs ├── Editor │ ├── JanoPrefs.c │ ├── JanoPrefs.h │ ├── LEGAL │ ├── Makefile │ ├── Makefile.SASC │ ├── PrefsPort.c │ ├── Prefs_Strings.c │ ├── Prefs_Strings.h │ ├── Sample.h │ ├── SampleEd.c │ ├── Utils.c │ ├── Utils.h │ ├── mkpref │ └── mmakefile.src ├── MonEd │ ├── compiler.h │ ├── mmakefile.src │ ├── moned.c │ ├── moned_globals.h │ └── moned_rev.h ├── PSI │ ├── LEGAL │ ├── coloredit_class.h │ ├── displayidinfo_class.c │ ├── displayidinfo_class.h │ ├── displayidlist_class.c │ ├── displayidlist_class.h │ ├── editpanel_class.c │ ├── editpanel_class.h │ ├── editwindow_class.c │ ├── editwindow_class.h │ ├── mainwindow_class.c │ ├── mainwindow_class.h │ ├── mmakefile.src │ ├── psi.c │ ├── psi.h │ ├── psi_colors.bh │ ├── psi_freqs.bh │ ├── psi_screencf.bh │ ├── psi_screencn.bh │ ├── psi_screenof.bh │ ├── psi_screenon.bh │ ├── psi_sizes.bh │ ├── screenlist_class.c │ ├── screenlist_class.h │ ├── screenpanel_class.c │ ├── screenpanel_class.h │ ├── syspenfield_class.c │ └── syspenfield_class.h ├── Presets │ ├── .gitignore │ ├── Colortables │ │ └── ICC │ │ │ ├── CineLogCurve.icc │ │ │ ├── CineonLog_M.icc │ │ │ ├── CineonLog_M_Knee_10.icc │ │ │ ├── CineonLog_M_Knee_20.icc │ │ │ ├── CineonLog_M_Knee_30.icc │ │ │ ├── CineonLog_M_Knee_60.icc │ │ │ ├── FOGRA28L.ti3 │ │ │ ├── FOGRA29L.ti3 │ │ │ ├── FOGRA30L.ti3 │ │ │ ├── FOGRA39L.ti3 │ │ │ ├── FOGRA40L.ti3 │ │ │ ├── Gray-CIE_L.icc │ │ │ ├── Gray.icc │ │ │ ├── ITULab.icc │ │ │ ├── LCMSLABI.ICM │ │ │ ├── LCMSXYZI.ICM │ │ │ ├── LEGAL │ │ │ ├── LStar-RGB.icc │ │ │ ├── TR002.ti3 │ │ │ ├── TR003.ti3 │ │ │ ├── TR005.ti3 │ │ │ ├── TR006.ti3 │ │ │ ├── colord │ │ │ ├── crayons.icc │ │ │ └── x11-colors.icc │ │ │ ├── compatibleWithAdobeRGB1998.icc │ │ │ └── sRGB.icc │ ├── Locales │ │ ├── english.prefs │ │ └── german.prefs │ └── mmakefile.src ├── Zune │ ├── buttonsp.c │ ├── buttonsp.h │ ├── cyclesp.c │ ├── cyclesp.h │ ├── framesp.c │ ├── framesp.h │ ├── groupsp.c │ ├── groupsp.h │ ├── listview.c │ ├── listviewsp.c │ ├── listviewsp.h │ ├── locale.c │ ├── locale.h │ ├── makefile.aos4 │ ├── mmakefile.src │ ├── navigationp.c │ ├── navigationp.h │ ├── prefsio.c │ ├── prefsio.h │ ├── scrollbarsp.c │ ├── scrollbarsp.h │ ├── slidersp.c │ ├── slidersp.h │ ├── specialp.c │ ├── specialp.h │ ├── stringsp.c │ ├── stringsp.h │ ├── systemp.c │ ├── systemp.h │ ├── windowp.c │ ├── windowp.h │ ├── zune.c │ ├── zunestuff.c │ └── zunestuff.h ├── appearance │ ├── .gitignore │ ├── appearanceeditor.c │ ├── appearanceeditor.h │ ├── args.c │ ├── args.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── themepreview.c │ └── themepreview.h ├── asl │ ├── args.c │ ├── args.h │ ├── asleditor.c │ ├── asleditor.h │ ├── aslstringify.c │ ├── aslstringify.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ └── prefs.h ├── boingiconbar │ ├── .gitignore │ ├── args.c │ ├── args.h │ ├── bibeditor.c │ ├── bibeditor.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ └── prefs.h ├── boot │ ├── .gitignore │ ├── args.c │ ├── args.h │ ├── booteditor.c │ ├── booteditor.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ └── mmakefile.src ├── env-archive │ ├── DiskImage │ │ ├── unit_4.xml │ │ └── unit_5.xml │ ├── README.txt │ ├── SYS │ │ ├── Certificates │ │ │ └── ca-bundle.crt │ │ ├── Packages │ │ │ └── Developer │ │ ├── compositor.prefs │ │ ├── nv_location │ │ └── pointer.prefs │ ├── classic │ │ ├── SYS │ │ │ └── font.prefs │ │ └── Zune │ │ │ └── global.prefs │ ├── default │ │ ├── SYS │ │ │ └── font.prefs │ │ └── Zune │ │ │ └── global.prefs │ ├── mmakefile.src │ └── showcase │ │ ├── SYS │ │ └── font.prefs │ │ └── Zune │ │ └── global.prefs ├── font │ ├── args.c │ ├── args.h │ ├── fpeditor.c │ ├── fpeditor.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ └── prefs.h ├── icontrol │ ├── args.c │ ├── args.h │ ├── icontroleditor.c │ ├── icontroleditor.h │ ├── images │ │ ├── menupopup3d.ilbm │ │ ├── menupopupclassic.ilbm │ │ ├── menupulldown3d.ilbm │ │ └── menupulldownclassic.ilbm │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ └── prefs.h ├── input │ ├── args.c │ ├── args.h │ ├── ipeditor.c │ ├── ipeditor.h │ ├── keymap.c │ ├── keymap.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ ├── prefs.h │ ├── stringify.c │ └── stringify.h ├── locale │ ├── args.c │ ├── args.h │ ├── cities.h │ ├── languagelist.c │ ├── languagelist.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── page_language.c │ ├── page_language.h │ ├── page_region.c │ ├── page_region.h │ ├── page_timezone.c │ ├── page_timezone.h │ ├── pics │ │ ├── README │ │ ├── earthmap_big.png │ │ ├── earthmap_small.ilbm │ │ ├── timezones_big.png │ │ └── timezones_small.ilbm │ ├── prefs.c │ ├── prefs.h │ ├── registertab.c │ └── registertab.h ├── network │ ├── args.c │ ├── args.h │ ├── host │ ├── interface │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── netpeditor.c │ ├── netpeditor.h │ ├── prefsdata.c │ ├── prefsdata.h │ └── wireless ├── palette │ ├── args.c │ ├── args.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── paleditor.c │ ├── paleditor.h │ ├── palette.c │ ├── palette.h │ ├── prefs.c │ └── prefs.h ├── pointer │ ├── args.c │ ├── args.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── ppreview.c │ ├── ppreview.h │ ├── prefs.c │ ├── prefs.h │ ├── pteditor.c │ └── pteditor.h ├── printer │ ├── .gitignore │ ├── args.c │ ├── args.h │ ├── editor.c │ ├── editor.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ └── prefs.h ├── reqtools │ ├── HISTORY │ ├── args.c │ ├── args.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ ├── prefs.h │ ├── reqtoolseditor.c │ ├── reqtoolseditor.h │ ├── reqtoolsstringify.c │ └── reqtoolsstringify.h ├── screenmode │ ├── args.c │ ├── args.h │ ├── display-landscape.png │ ├── display-portrait.png │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ ├── prefs.h │ ├── smattributes.c │ ├── smattributes.h │ ├── smeditor.c │ ├── smeditor.h │ ├── smprefsbases.h │ ├── smproperties.c │ ├── smproperties.h │ ├── smselector.c │ └── smselector.h ├── serial │ ├── args.c │ ├── args.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── misc.c │ ├── misc.h │ ├── mmakefile.src │ ├── prefs.c │ ├── prefs.h │ ├── sereditor.c │ └── sereditor.h ├── time │ ├── global.h │ ├── locale.c │ ├── main.c │ ├── misc.c │ ├── mmakefile.src │ ├── prefs.c │ ├── vars.c │ ├── vars.h │ └── version.h ├── trackdisk │ ├── locale.c │ ├── locale.h │ ├── makefile │ ├── mmakefile.src │ ├── trackdisk_prefs.c │ └── trackdisk_prefs.h └── wanderer │ ├── entryelements.c │ ├── entryelements.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── mmakefile.src │ ├── wpeditor.c │ └── wpeditor.h ├── printers ├── postscript │ ├── mmakefile.src │ └── postscript.c └── skeleton │ ├── mmakefile.src │ └── skeleton.c ├── rexxc ├── RX.c ├── RXLIB.c └── mmakefile.src ├── s ├── DPat ├── PCD ├── SPat ├── Shell-Startup ├── Startup-Sequence ├── Startup-Sequence.DEMOFLOPPY └── mmakefile ├── storage ├── DOSDrivers │ ├── ICD0 │ ├── ICD1 │ ├── IDF0 │ ├── IDF1 │ ├── ISO0 │ └── PC0 └── mmakefile ├── system ├── AboutAROS │ ├── aboutaros.c │ ├── aboutaros.h │ ├── db │ │ ├── credits │ │ └── sponsors │ ├── locale.c │ ├── locale.h │ ├── logotype.h │ ├── main.c │ ├── mmakefile.src │ └── scripts │ │ ├── acknowledgements2header.py │ │ ├── authors2header.py │ │ └── sponsors2header.py ├── BHFormat │ ├── BHFormat.doc │ ├── BHFormat.readme │ ├── COPYING │ ├── Format.info │ ├── Makefile │ ├── cli.c │ ├── design.txt │ ├── format.h │ ├── gui.c │ ├── locale.c │ ├── locale.h │ ├── main.c │ └── mmakefile.src ├── CLI.c ├── FixFonts.c ├── LogView │ ├── logclass.c │ ├── logview.c │ ├── logview.h │ └── mmakefile.src ├── Snoopy │ ├── README │ ├── gui.c │ ├── gui.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── main.h │ ├── mmakefile.src │ ├── patches.c │ ├── patches.h │ ├── setup.c │ └── setup.h ├── SysMon │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── memory.c │ ├── mmakefile.src │ ├── processor.c │ ├── processor.h │ ├── processor_gauge.c │ ├── processor_graph.c │ ├── sysmon_intern.h │ ├── tasks.c │ ├── tasks.h │ ├── timer.c │ └── video.c ├── Wanderer │ ├── Classes │ │ ├── icon.c │ │ ├── icon.conf │ │ ├── icon.h │ │ ├── icon_attributes.h │ │ ├── icon_private.h │ │ ├── icondrawerlist.c │ │ ├── icondrawerlist.conf │ │ ├── icondrawerlist_private.h │ │ ├── iconlist.c │ │ ├── iconlist.conf │ │ ├── iconlist.h │ │ ├── iconlist_attributes.h │ │ ├── iconlist_private.h │ │ ├── iconlistview.c │ │ ├── iconlistview.conf │ │ ├── iconlistview.h │ │ ├── iconlistview_private.h │ │ ├── iconvolumelist.c │ │ ├── iconvolumelist.conf │ │ ├── iconvolumelist_private.h │ │ └── mmakefile.src │ ├── Env │ │ ├── classic │ │ │ ├── global.prefs │ │ │ ├── statusbar.prefs │ │ │ └── toolbar.prefs │ │ ├── default │ │ │ ├── backdrop.prefs │ │ │ ├── global.prefs │ │ │ ├── statusbar.prefs │ │ │ └── toolbar.prefs │ │ └── mmakefile.src │ ├── Icons │ │ ├── Wanderer.info.src │ │ ├── Wanderer.png │ │ ├── drawer.info.src │ │ ├── drawer.png │ │ ├── file.info.src │ │ ├── file.png │ │ └── mmakefile.src │ ├── Tools │ │ ├── DiskInfo │ │ │ ├── Icons │ │ │ │ ├── DiskInfo.info.src │ │ │ │ ├── DiskInfo.png │ │ │ │ └── mmakefile.src │ │ │ ├── diskinfo.c │ │ │ ├── diskinfo.doc │ │ │ ├── diskinfo.h │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ ├── mmakefile.src │ │ │ ├── support.c │ │ │ └── support.h │ │ ├── ExecuteCommand │ │ │ ├── executecommand.c │ │ │ ├── executecommand.h │ │ │ ├── icons │ │ │ │ ├── ExecuteCommand.info.src │ │ │ │ ├── ExecuteCommand.png │ │ │ │ └── mmakefile.src │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ ├── mmakefile.src │ │ │ ├── support.c │ │ │ └── support.h │ │ ├── ExecuteStartup │ │ │ ├── icons │ │ │ │ ├── ExecuteStartup.info.src │ │ │ │ ├── ExecuteStartup.png │ │ │ │ └── mmakefile.src │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ └── mmakefile.src │ │ ├── Info │ │ │ ├── icons │ │ │ │ ├── Info.info.src │ │ │ │ ├── Info.png │ │ │ │ └── mmakefile.src │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ └── mmakefile.src │ │ ├── WBNewDrawer │ │ │ ├── icons │ │ │ │ ├── WBNewDrawer.info.src │ │ │ │ ├── WBNewDrawer.png │ │ │ │ └── mmakefile.src │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ └── mmakefile.src │ │ └── WBRename │ │ │ ├── icons │ │ │ ├── WBRename.info.src │ │ │ ├── WBRename.png │ │ │ ├── WBRename_Gorilla.png │ │ │ └── mmakefile.src │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ ├── main.c │ │ │ └── mmakefile.src │ ├── appobjects.c │ ├── appobjects.h │ ├── filesystems.c │ ├── filesystems.h │ ├── filesystems_utilities.c │ ├── filesystems_utilities.h │ ├── iconwindow.c │ ├── iconwindow.h │ ├── iconwindow_attributes.h │ ├── iconwindow_drawerlist.c │ ├── iconwindow_iconlist.h │ ├── iconwindow_networkbrowserlist.c │ ├── iconwindow_volumelist.c │ ├── iconwindowbackfill.c │ ├── iconwindowbackfill.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── mmakefile.src │ ├── panel_statusbar.c │ ├── panel_toolbar.c │ ├── portable_utils.c │ ├── support.c │ ├── support.h │ ├── version.h │ ├── wanderer.c │ ├── wanderer.h │ ├── wandererprefs.c │ ├── wandererprefs.h │ ├── wandererprefsfont.c │ └── wandererprefsfont.h ├── Workbook │ ├── classes.h │ ├── main.c │ ├── mmakefile.src │ ├── wbapp.c │ ├── wbicon.c │ ├── wbset.c │ ├── wbvirtual.c │ ├── wbwindow.c │ ├── workbook.c │ ├── workbook.conf │ ├── workbook_init.c │ ├── workbook_intern.c │ ├── workbook_intern.h │ └── workbook_menu.h ├── find │ ├── .gitignore │ ├── TODO │ ├── findgroup_class.c │ ├── findgroup_class.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ └── mmakefile.src ├── ftmanager │ ├── cli.c │ ├── fontbitmap_class.c │ ├── fontbitmap_class.h │ ├── fontinfo_class.c │ ├── fontinfo_class.h │ ├── fontlist_class.c │ ├── fontlist_class.h │ ├── fontwindow_class.c │ ├── fontwindow_class.h │ ├── ftmanager.c │ ├── globals.h │ ├── locale.c │ ├── locale.h │ └── mmakefile.src └── mmakefile.src ├── tools ├── BoingIconBar │ ├── .gitignore │ ├── BiB_Eng.guide │ ├── ENV │ │ └── Iconbar.prefs │ ├── bibgfx │ │ ├── left │ │ ├── middle │ │ └── right │ ├── iconbar.c │ ├── iconbar.h │ ├── locale.c │ ├── locale.h │ └── mmakefile.src ├── Calculator.c ├── Edit │ ├── ClipLoc.c │ ├── ClipLoc.h │ ├── Cursor.c │ ├── Cursor.h │ ├── Debug.h │ ├── DiskIO.c │ ├── DiskIO.h │ ├── Edit.c │ ├── Edit.h │ ├── Events.c │ ├── Events.h │ ├── Gui.c │ ├── Gui.h │ ├── IPC_Prefs.h │ ├── Jed.c │ ├── Jed.h │ ├── Jed.lnk │ ├── LEGAL │ ├── Macros.c │ ├── Macros.h │ ├── Makefile │ ├── Makefile.SASC │ ├── Memory.c │ ├── Memory.h │ ├── MkEd │ ├── Prefs.c │ ├── Prefs.h │ ├── Print.c │ ├── Print.h │ ├── Project.c │ ├── Project.h │ ├── ProtoTypes.h │ ├── Rawkey.h │ ├── Search.c │ ├── Search.h │ ├── Sorrow │ ├── UndoRedo.c │ ├── UndoRedo.h │ ├── Utility.c │ ├── Utility.h │ ├── Version.h │ ├── build │ └── mmakefile.src ├── GraphicDump.c ├── HDToolBox │ ├── BUGS │ ├── Env-Archive │ │ └── hdtoolbox.prefs │ ├── Makefile.gcc │ ├── README │ ├── arosmacros.h │ ├── compilerspecific.h │ ├── debug.c │ ├── debug.h │ ├── devices.c │ ├── devices.h │ ├── error.h │ ├── gui.c │ ├── gui.h │ ├── harddisks.c │ ├── harddisks.h │ ├── hdtoolbox_support.c │ ├── hdtoolbox_support.h │ ├── icons │ │ ├── .gitignore │ │ ├── def_Mountlist.info.src │ │ ├── def_Mountlist.png │ │ └── mmakefile.src │ ├── locale.c │ ├── locale.h │ ├── main.c │ ├── mmakefile.src │ ├── partitions.c │ ├── partitions.h │ ├── partitiontables.c │ ├── partitiontables.h │ ├── platform.h │ ├── prefs.c │ ├── prefs.h │ ├── ptclass.c │ └── ptclass.h ├── IconInject │ ├── main.c │ └── mmakefile.src ├── InitPrinter.c ├── InstallAROS │ ├── .gitignore │ ├── ia_bootloader.c │ ├── ia_bootloader.h │ ├── ia_config.h │ ├── ia_diskio.c │ ├── ia_diskio.h │ ├── ia_driveselect.h │ ├── ia_driveselect_intern.h │ ├── ia_driveselectclass.c │ ├── ia_env.c │ ├── ia_install.h │ ├── ia_install_intern.h │ ├── ia_installclass.c │ ├── ia_installoption_intern.h │ ├── ia_locale.c │ ├── ia_locale.h │ ├── ia_main.c │ ├── ia_option.h │ ├── ia_option_intern.h │ ├── ia_optionclass.c │ ├── ia_packages.c │ ├── ia_packages.h │ ├── ia_stage.h │ ├── ia_stage_intern.h │ ├── ia_stageclass.c │ ├── ia_volume.h │ ├── ia_volume_intern.h │ ├── ia_volumeclass.c │ ├── icons │ │ ├── Harddisk.info.src │ │ ├── Harddisk.png │ │ ├── USBdisk.info.src │ │ ├── USBdisk.png │ │ └── mmakefile.src │ └── mmakefile.src ├── KeyShow │ ├── keyboardgroup_class.c │ ├── keyboardgroup_class.h │ ├── locale.c │ ├── locale.h │ ├── main.c │ └── mmakefile.src ├── PrintFiles.c ├── QuickPart │ ├── QP_FindDisks.c │ ├── QP_Gui.c │ ├── QP_Intern.h │ ├── QP_Main.c │ ├── QP_PartionColors.h │ ├── QP_PartitionColors.c │ ├── QP_ccApp.c │ ├── QP_ccApp.h │ ├── QP_ccDisk.c │ ├── QP_ccDisk.h │ ├── QP_ccFree.c │ ├── QP_ccFree.h │ ├── QP_ccOpGrp.c │ ├── QP_ccOpGrp.h │ ├── QP_ccOperation.c │ ├── QP_ccOperation.h │ ├── QP_ccPartition.c │ ├── QP_ccPartition.h │ ├── QP_ccPartitionContainer.c │ ├── QP_ccPartitionContainer.h │ ├── QP_ccTxt.c │ ├── QP_ccTxt.h │ ├── QP_globals.c │ ├── QP_globals.h │ ├── QP_locale.c │ ├── QP_locale.h │ ├── images │ │ ├── harddisk │ │ ├── mmakefile.src │ │ └── quickpart.logo │ └── mmakefile.src ├── ScreenGrabber │ ├── locale.c │ ├── locale.h │ ├── main.c │ └── mmakefile.src ├── ShowConfig │ ├── ShowConfig.c │ ├── cpu_arm.c │ ├── cpu_i386.c │ ├── cpu_m68k.c │ ├── cpuspecific.h │ └── mmakefile.src ├── SysExplorer │ ├── .gitignore │ ├── Modules │ │ ├── AHCI │ │ │ ├── ahci.conf │ │ │ ├── ahci_classes.h │ │ │ ├── ahci_enum.c │ │ │ ├── ahci_init.c │ │ │ ├── ahci_intern.h │ │ │ ├── ahcibus_window_cl.c │ │ │ └── ahciunit_window_cl.c │ │ ├── ATA │ │ │ ├── ata.conf │ │ │ ├── ata_classes.h │ │ │ ├── ata_enum.c │ │ │ ├── ata_init.c │ │ │ ├── ata_intern.h │ │ │ ├── ata_window_cl.c │ │ │ ├── atabus_window_cl.c │ │ │ └── ataunit_window_cl.c │ │ ├── Gfx │ │ │ ├── gfx_classes.h │ │ │ ├── gfx_enum.c │ │ │ ├── gfx_window_cl.c │ │ │ └── gfxmonitor_window_cl.c │ │ ├── PCI │ │ │ ├── pci.conf │ │ │ ├── pci_classes.h │ │ │ ├── pci_enum.c │ │ │ ├── pci_init.c │ │ │ ├── pci_intern.h │ │ │ ├── pci_window_cl.c │ │ │ └── pcidevice_window_cl.c │ │ ├── Power │ │ │ ├── power.conf │ │ │ ├── power.h │ │ │ ├── power_classes.h │ │ │ ├── power_enum.c │ │ │ ├── power_init.c │ │ │ ├── power_intern.h │ │ │ └── power_window_cl.c │ │ └── Storage │ │ │ ├── storage.conf │ │ │ ├── storage.h │ │ │ ├── storage_classes.h │ │ │ ├── storage_enum.c │ │ │ ├── storage_init.c │ │ │ ├── storage_intern.h │ │ │ ├── storagebus_window_cl.c │ │ │ └── storageunit_window_cl.c │ ├── classes.h │ ├── computer_page_cl.c │ ├── cpu_arm.c │ ├── cpu_i386.c │ ├── cpuspecific.h │ ├── device_page_cl.c │ ├── enums.h │ ├── generic_window_cl.c │ ├── locale.h │ ├── mmakefile.src │ ├── sysexp.conf │ ├── sysexp_intern.h │ ├── sysexp_library.c │ ├── sysexp_locale.c │ ├── sysexp_main.c │ └── sysexp_module.h ├── WiMP │ ├── .gitignore │ ├── WiMP.c │ ├── locale.c │ ├── locale.h │ └── mmakefile.src ├── commodities │ ├── ASCIITable.c │ ├── AltKeyQ.c │ ├── AutoPoint.c │ ├── Blanker.c │ ├── ClickToFront.c │ ├── DepthMenu.c │ ├── Exchange.c │ ├── FKey.c │ ├── NoCapsLock.c │ ├── Opaque.c │ └── mmakefile.src └── mmakefile.src └── utilities ├── Clock ├── locale.c ├── locale.h ├── main.c ├── mmakefile.src └── version.h ├── Help ├── .gitignore ├── main.c └── mmakefile.src ├── Installer ├── BUGS ├── ChangeLog ├── Documentation ├── Installer.h ├── cleanup.c ├── cleanup.h ├── cmdlist.h ├── execute.c ├── execute.h ├── gui.h ├── gui_zune.c ├── locale.c ├── locale.h ├── main.c ├── main.h ├── misc.c ├── misc.h ├── mmakefile.src ├── parse.c ├── parse.h ├── procedure.c ├── procedure.h ├── test.script ├── test.script.info.src ├── test.script.png ├── test.script_simple ├── texts.h ├── variables.c ├── variables.h └── version.h ├── More ├── global.h ├── locale.c ├── misc.c ├── mmakefile.src ├── more.c ├── req.c ├── req.h └── version.h └── MultiView ├── ARexx ├── MultiView.c ├── MultiView.h ├── MultiView_rxcl.c └── MultiView_rxif.c ├── aboutclass.c ├── arossupport.c ├── arossupport.h ├── compilerspecific.h ├── debug.h ├── global.h ├── locale.c ├── main.c ├── misc.c ├── mmakefile.src ├── smakefile ├── vars.c ├── vars.h └── version.h /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/.gitmodules -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/LEGAL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.Author: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/LICENSE.Author -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/README.md -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/.unmaintained/m68k-emul/dist.src: -------------------------------------------------------------------------------- 1 | *.[chs] 2 | makefile.src 3 | -------------------------------------------------------------------------------- /arch/.unmaintained/m68k-pp-native/boot/execRsc.h: -------------------------------------------------------------------------------- 1 | #define MainForm 1000 2 | -------------------------------------------------------------------------------- /arch/.unmaintained/m68k-pp-native/mlib/dummy.c: -------------------------------------------------------------------------------- 1 | void dummy(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /arch/.unmaintained/morphos/Include/dos/bptr.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /arch/.unmaintained/morphos/Include/proto/arossupport.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /arch/aarch64-all/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-darwin/boot/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-darwin/exec/make.opts: -------------------------------------------------------------------------------- 1 | USER_CPPFLAGS += -D_FORTIFY_SOURCE=0 2 | 3 | -------------------------------------------------------------------------------- /arch/all-hosted/bootstrap/log.h: -------------------------------------------------------------------------------- 1 | int SetLog(const char *c); 2 | -------------------------------------------------------------------------------- /arch/all-hosted/libs/hostgl/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-ios/bootstrap/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /arch/all-linux/boot/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-linux/hidd/linuxinput/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-linux/processor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-mingw32/processor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-native/acpica/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-native/acpitool/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-native/acpitool/icons/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-native/boot/iso/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-native/econsole/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-native/hidd/vgagfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/boot/grub-tools/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/boot/grub2_def: -------------------------------------------------------------------------------- 1 | 2.12 -------------------------------------------------------------------------------- /arch/all-pc/debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/debug/hyperv/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/drivers/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/hidds/hidd/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/hidds/hidd/make.opts: -------------------------------------------------------------------------------- 1 | USER_LDFLAGS += -lacpica 2 | -------------------------------------------------------------------------------- /arch/all-pc/hidds/i8042/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/kernel/make.opts: -------------------------------------------------------------------------------- 1 | USER_LDFLAGS := -L$(GENDIR)/lib -lbootconsole -lacpica 2 | -------------------------------------------------------------------------------- /arch/all-pc/processor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-pc/udis86/xcode/udcli/sample_input: -------------------------------------------------------------------------------- 1 | C4 E2 7D 18 C0 -------------------------------------------------------------------------------- /arch/all-pc/utility/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/all-unix/boot/mkbootconf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sed "s%@arch@%$2%" "${1}" 4 | -------------------------------------------------------------------------------- /arch/all-unix/bootstrap/make.opts: -------------------------------------------------------------------------------- 1 | USER_LDFLAGS += -ldl 2 | -------------------------------------------------------------------------------- /arch/all-unix/devs/networks/eth/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-all/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-all/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-efika/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/exec/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/kernel/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/processor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/gpio/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/hidd/i2c/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/hidd/vc4gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/mbox/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/sdcard/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/usb/poseidon/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-native/soc/broadcom/2708/usb/usb2otg/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-raspi/boot/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/arm-raspi/timer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/armeb-all/exec/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/armeb-all/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/armeb-all/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/i386-all/debug/make.opts: -------------------------------------------------------------------------------- 1 | USER_LDFLAGS += -ludis86 2 | -------------------------------------------------------------------------------- /arch/i386-all/hidd/gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/i386-all/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/i386-all/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/i386-all/utility/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-all/mathieeedoubbas/ieeedpbas_fpu.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/m68k-all/mathieeedoubtrans/ieeedptrans_fpu.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/m68k-all/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-all/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-all/test/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/boot/floppy/AROSBoot.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | DRAWERDATA = TRUE 3 | -------------------------------------------------------------------------------- /arch/m68k-amiga/boot/iso/Sources.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/devs/ata/bus_pci.c: -------------------------------------------------------------------------------- 1 | /* Dummy file */ 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/devs/cd/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/freeanim/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/amigavideo/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/gayle_ata/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/p96gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/parallel/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/pci-mediator/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/pci-prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/pci-prometheus/pci-prometheus.hidd.info.src: -------------------------------------------------------------------------------- 1 | TOOLTYPE PRODUCT=44359/1 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/hidd/sagagfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/lowlevel/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/setpatch/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/m68k-amiga/timer/common_init.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/m68k-amiga/timer/ticks.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/mmakefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/arch/mmakefile.src -------------------------------------------------------------------------------- /arch/ppc-all/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-all/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-chrp/efika/ata/make.opts: -------------------------------------------------------------------------------- 1 | # Do not include default bus drivers 2 | BUS_DRIVERS := 3 | -------------------------------------------------------------------------------- /arch/ppc-chrp/pegasos/kernel/make.opts: -------------------------------------------------------------------------------- 1 | USER_LDFLAGS := -L$(GENDIR)/lib -lbootconsole 2 | 3 | -------------------------------------------------------------------------------- /arch/ppc-native/processor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/ata/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/boot/parthenope/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/ppc-sam440/boot/parthenope/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/ppc-sam440/boot/parthenope/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=src tools 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/boot/parthenope/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/ppc-sam440/boot/parthenope/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/ppc-sam440/debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/parthenogenesis/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/pci460/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/processor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/ppc-sam440/serial.hidd/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/riscv-all/crt/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/riscv-all/crt/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/riscv-native/exec/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/x86_64-all/debug/make.opts: -------------------------------------------------------------------------------- 1 | USER_LDFLAGS += -ludis86 2 | -------------------------------------------------------------------------------- /arch/x86_64-all/gcc_def: -------------------------------------------------------------------------------- 1 | 10.5.0 -------------------------------------------------------------------------------- /arch/x86_64-all/hidd/gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/x86_64-all/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/x86_64-all/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/x86_64-all/utility/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /arch/x86_64-all/utility/make.opts: -------------------------------------------------------------------------------- 1 | USER_CPPFLAGS := -DUSE_SSE_COPYMEM 2 | -------------------------------------------------------------------------------- /arch/x86_64-pc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /boot/mmakefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/boot/mmakefile.src -------------------------------------------------------------------------------- /compiler/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/crt/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | openat.c 3 | -------------------------------------------------------------------------------- /compiler/crt/posixc/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/crt/posixc/sigsetjmp.c: -------------------------------------------------------------------------------- 1 | #error sigsetjmp has to be implemented for each cpu 2 | -------------------------------------------------------------------------------- /compiler/crt/posixc/vfork.c: -------------------------------------------------------------------------------- 1 | #error vfork() has to be implemented for each cpu 2 | 3 | -------------------------------------------------------------------------------- /compiler/crt/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/crt/stdc/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/crt/stdc/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/crt/stdc/longjmp.c: -------------------------------------------------------------------------------- 1 | #error longjmp has to be implemented for each cpu 2 | -------------------------------------------------------------------------------- /compiler/crt/stdc/setjmp.c: -------------------------------------------------------------------------------- 1 | #error setjmp has to be implemented for each cpu 2 | -------------------------------------------------------------------------------- /compiler/cunit/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/include/.gitignore: -------------------------------------------------------------------------------- 1 | geninc.cfg 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/amigaguide_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/asl_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/battclock_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/battmem_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/bullet_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/cardres_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/cia_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/colorwheel_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/commodities_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/console_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/datatypes_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/disk_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/diskfont_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/dos_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/dtclass_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/exec_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/exec_sysbase_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/execlock_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/expansion_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/gadtools_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/graphics_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/icon_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/iffparse_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/input_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/intuition_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/keymap_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/layers_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/locale_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/lowlevel_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/misc_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/nonvolatile_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/potgo_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/ramdrive_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/realtime_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/reqtools_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/rexxsyslib_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/timer_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/translator_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/include/pragmas/utility_pragmas.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compiler/instrfunc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/libhiddstubs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/pthread/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /compiler/purify/test3.sh: -------------------------------------------------------------------------------- 1 | test3 xxx yyy zzz 2 | -------------------------------------------------------------------------------- /compiler/purify/test7.sh: -------------------------------------------------------------------------------- 1 | test7 5 2 | -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | config.log 2 | features.status 3 | -------------------------------------------------------------------------------- /config/aros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/aros.cfg -------------------------------------------------------------------------------- /config/binutils_def: -------------------------------------------------------------------------------- 1 | 2.32 -------------------------------------------------------------------------------- /config/binutils_exp: -------------------------------------------------------------------------------- 1 | 2.40 -------------------------------------------------------------------------------- /config/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/config.h.in -------------------------------------------------------------------------------- /config/features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/features -------------------------------------------------------------------------------- /config/features.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/features.in -------------------------------------------------------------------------------- /config/gcc_def: -------------------------------------------------------------------------------- 1 | 6.5.0 -------------------------------------------------------------------------------- /config/gcc_exp: -------------------------------------------------------------------------------- 1 | 15.1.0 -------------------------------------------------------------------------------- /config/host.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/host.cfg.in -------------------------------------------------------------------------------- /config/llvm_def: -------------------------------------------------------------------------------- 1 | 11.0.0 2 | -------------------------------------------------------------------------------- /config/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/machine.c -------------------------------------------------------------------------------- /config/make.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/make.cfg.in -------------------------------------------------------------------------------- /config/make.tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/make.tail -------------------------------------------------------------------------------- /config/make.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/make.tmpl -------------------------------------------------------------------------------- /config/specs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/config/specs.in -------------------------------------------------------------------------------- /config/toolchain_def: -------------------------------------------------------------------------------- 1 | gnu -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/configure.in -------------------------------------------------------------------------------- /developer/debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/bifteck/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/kecho/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/sashimi/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/Zune/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/benchmarks/boopsi/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/benchmarks/clib/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/benchmarks/exec/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/benchmarks/graphics/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/boot/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/bz2/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/cplusplus/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/cpu/x86/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/crt/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/crt/posixc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/crt/stdc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/crt/stdc/math/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/desktop/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/diskfont/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/dos/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/exec/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/freetype/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/gl/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/graphics/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/hidds/gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/hidds/gfx/obsolete/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/icon/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/intuition/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/kernel/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/keymap/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/layers/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/library/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/locale/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/lowlevel/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/misc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/net/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/objc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/pipe/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/png/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/printer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/rexx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/rexx/simplerexx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/sdi/LEGAL: -------------------------------------------------------------------------------- 1 | This software has been placed in the public domain. 2 | -------------------------------------------------------------------------------- /developer/debug/test/sdi/examples/hooks/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/sdi/examples/libraries/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/sdi/examples/misc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/sdi/examples/varargs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/serial/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/smp/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/smp/smp-smallpt/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/smp/smp-test/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/timer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/utility/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/test/z/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/debug/windebug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/demos/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/demos/2View/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/demos/Zune/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/s/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /developer/s/Package-Shutdown: -------------------------------------------------------------------------------- 1 | Assign LIBS: Classes REMOVE 2 | -------------------------------------------------------------------------------- /external/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/external/README -------------------------------------------------------------------------------- /external/bz2/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf 2 | -------------------------------------------------------------------------------- /external/openurl/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/LEGAL: -------------------------------------------------------------------------------- 1 | openurl is released as "Public Domain" -------------------------------------------------------------------------------- /external/openurl/cmd/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/developer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/libopenurl/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/library/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/locale/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /external/openurl/prefs/.gitignore: -------------------------------------------------------------------------------- 1 | locale.h 2 | mmakefile 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/C.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Demos.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Development.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Development/Include.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Development/Lib.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Devs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Devs/DOSDrivers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Devs/DataTypes.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Devs/Drivers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Devs/Keymaps.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Devs/Midi.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Extras.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Extras/MultiMedia.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Extras/MultiMedia/AMP2.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Fonts.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Libs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Locale/Catalogs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Locale/Countries.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Locale/Flags.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Locale/Help.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Locale/Languages.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Prefs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Prefs/AHI.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Prefs/Presets.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Prefs/Presets/Patterns.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Rexxc.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/S.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Storage.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/System.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/System/Themes.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/T.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Tests.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Tools.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Tools/Commodities.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Tools/Debug.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/Utilities.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/WBStartup.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla-old/Icons/Medium/AROS/boot.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Debug.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Debug/Hardware.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Debug/Hardware/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Debug/Tests.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Debug/Tests/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Include.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Developer/Lib.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/DOSDrivers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/DOSDrivers/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/DataTypes.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/Drivers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/Keymaps.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/Midi.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/Monitors.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Devs/Printers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Fonts.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Libs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Locale/Catalogs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Locale/Countries.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Locale/Flags.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Locale/Help.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Locale/Languages.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/AHI.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Asl.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Boot.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Editor.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_CDROM.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_DVD.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_Disk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_FATDisk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_Home.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_RAD.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Env-Archive/SYS/def_USB.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Font.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Input.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Network.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/OpenURL.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/PSI.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Palette.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Pointer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Presets/Themes.info.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Printer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Serial.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Theme.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Time.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Prefs/Zune.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Rexxc.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/System/About.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/System/Format.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/System/SysMon.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Tools/Editor.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Tools/QuickPart.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/AROS/Tools/WiMP.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Disks/AROSHarddisk_Linux.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Disks/AROSHarddisk_MacOS.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Disks/AROSHarddisk_Windows.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Disks/CDROM_Amiga.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Disks/Harddisk_Linux.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Disks/Harddisk_MacOS.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Drawers/Amiga.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Drawers/Downloads-2.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Drawers/Downloads.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Drawers/Linux.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Drawers/Windows.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Other/Mouse.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Medium/Other/Pointer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Debug.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Debug/Hardware.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Debug/Hardware/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Debug/Tests.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Debug/Tests/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Include.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Developer/Lib.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/DOSDrivers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/DOSDrivers/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/DataTypes.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/Drivers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/Keymaps.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/Midi.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/Monitors.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/Monitors/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Devs/Printers.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Fonts.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Libs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale/Catalogs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale/Countries.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale/Flags.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale/Help.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Locale/Languages.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/AHI.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Boot.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Editor.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_CDROM.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_DVD.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_Disk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_FAT.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_Home.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_PFS.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_RAD.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_SFS.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Env-Archive/SYS/def_USB.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Font.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/IControl.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Input.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Network.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/OpenURL.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/PSI.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Palette.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Pointer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Presets/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Presets/Themes.info.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Printer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/ReqTools.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Serial.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Theme.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Time.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Trident.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 57344 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Wanderer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Prefs/Zune.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Rexxc.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/System/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/System/About.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/System/Format.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/System/Snoopy.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 40960 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/System/SysMon.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/System/WorkBook.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 4096 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Tools/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Tools/Commodities/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Tools/Editor.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Tools/WiMP.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Utilities/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Utilities/Help.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/AROS/Utilities/More.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Computers/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/AROSHarddisk_Linux.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/AROSHarddisk_MacOS.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/AROSHarddisk_Windows.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/CDROM_Amiga.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/Harddisk_Amiga.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/Harddisk_Linux.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/Harddisk_MacOS.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Disks/Harddisk_Windows.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Drawers/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Drawers/Amiga.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Drawers/Downloads-2.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Drawers/Downloads.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Drawers/Linux.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Drawers/Windows.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Other/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Other/Mouse.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Gorilla/Icons/Small/Other/Pointer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Mason/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Demos.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Developer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Developer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Developer/Debug.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Developer/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Developer/Debug/Sashimi.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Devs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Fonts.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Locale/Help.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_CDROM.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_DOSDriver.info.src: -------------------------------------------------------------------------------- 1 | TYPE = PROJECT 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_Disk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_Drawer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_HTML.info.src: -------------------------------------------------------------------------------- 1 | TYPE = PROJECT 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_Harddisk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Env-Archive/def_RAM.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Font.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Input.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Locale.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Palette.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Pointer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Printer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/ReqTools.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/ScreenMode.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Serial.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Time.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Wanderer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Prefs/Zune.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Storage.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/System.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/T.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Tools.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Tools/Calculator.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Tools/Commodities.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Tools/WiMP.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Utilities.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Utilities/Installer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Utilities/More.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/Utilities/MultiView.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/devs-and-storage/Keymaps.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DRAWER 2 | -------------------------------------------------------------------------------- /images/IconSets/Mason/workbench/system/FixFonts.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | -------------------------------------------------------------------------------- /images/Patterns/Misc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /images/kalamatee/mmakefile: -------------------------------------------------------------------------------- 1 | #MM- workbench-complete : themes-kalamatee-images 2 | -------------------------------------------------------------------------------- /images/mason/gadgets/mmakefile: -------------------------------------------------------------------------------- 1 | #MM- workbench-complete: themes-mason-images-gadgets 2 | -------------------------------------------------------------------------------- /license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/license.html -------------------------------------------------------------------------------- /mmake.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/mmake.config.in -------------------------------------------------------------------------------- /mmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/mmakefile -------------------------------------------------------------------------------- /rom/aros/aros.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/aros/aros.conf -------------------------------------------------------------------------------- /rom/card/card.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/card/card.conf -------------------------------------------------------------------------------- /rom/cgxbootpic/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/dbus/dbus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dbus/dbus.conf -------------------------------------------------------------------------------- /rom/debug/kdofmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/debug/kdofmt.c -------------------------------------------------------------------------------- /rom/devs/ahci/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/devs/ata/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/devs/ata/ata.c -------------------------------------------------------------------------------- /rom/devs/ata/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/devs/ata/ata.h -------------------------------------------------------------------------------- /rom/devs/nvme/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/devs/scsi/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/devs/sdcard/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/devs/trackdisk/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/disk/disk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/disk/disk.conf -------------------------------------------------------------------------------- /rom/disk/getunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/disk/getunit.c -------------------------------------------------------------------------------- /rom/dos/abortpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/abortpkt.c -------------------------------------------------------------------------------- /rom/dos/addpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/addpart.c -------------------------------------------------------------------------------- /rom/dos/banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/banner.c -------------------------------------------------------------------------------- /rom/dos/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/boot.c -------------------------------------------------------------------------------- /rom/dos/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/cli.c -------------------------------------------------------------------------------- /rom/dos/cliinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/cliinit.c -------------------------------------------------------------------------------- /rom/dos/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/close.c -------------------------------------------------------------------------------- /rom/dos/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/date.h -------------------------------------------------------------------------------- /rom/dos/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/delay.c -------------------------------------------------------------------------------- /rom/dos/dopkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/dopkt.c -------------------------------------------------------------------------------- /rom/dos/dos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/dos.conf -------------------------------------------------------------------------------- /rom/dos/dos_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/dos_init.c -------------------------------------------------------------------------------- /rom/dos/duplock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/duplock.c -------------------------------------------------------------------------------- /rom/dos/exall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/exall.c -------------------------------------------------------------------------------- /rom/dos/exallend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/exallend.c -------------------------------------------------------------------------------- /rom/dos/examine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/examine.c -------------------------------------------------------------------------------- /rom/dos/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/execute.c -------------------------------------------------------------------------------- /rom/dos/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/exit.c -------------------------------------------------------------------------------- /rom/dos/exnext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/exnext.c -------------------------------------------------------------------------------- /rom/dos/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fault.c -------------------------------------------------------------------------------- /rom/dos/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fgetc.c -------------------------------------------------------------------------------- /rom/dos/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fgets.c -------------------------------------------------------------------------------- /rom/dos/filepart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/filepart.c -------------------------------------------------------------------------------- /rom/dos/findarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/findarg.c -------------------------------------------------------------------------------- /rom/dos/findvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/findvar.c -------------------------------------------------------------------------------- /rom/dos/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/flush.c -------------------------------------------------------------------------------- /rom/dos/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/format.c -------------------------------------------------------------------------------- /rom/dos/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fputc.c -------------------------------------------------------------------------------- /rom/dos/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fputs.c -------------------------------------------------------------------------------- /rom/dos/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fread.c -------------------------------------------------------------------------------- /rom/dos/freeargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/freeargs.c -------------------------------------------------------------------------------- /rom/dos/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/fwrite.c -------------------------------------------------------------------------------- /rom/dos/getvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/getvar.c -------------------------------------------------------------------------------- /rom/dos/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/info.c -------------------------------------------------------------------------------- /rom/dos/inhibit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/inhibit.c -------------------------------------------------------------------------------- /rom/dos/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/input.c -------------------------------------------------------------------------------- /rom/dos/ioerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/ioerr.c -------------------------------------------------------------------------------- /rom/dos/loadseg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/loadseg.c -------------------------------------------------------------------------------- /rom/dos/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/lock.c -------------------------------------------------------------------------------- /rom/dos/makelink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/makelink.c -------------------------------------------------------------------------------- /rom/dos/matchend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/matchend.c -------------------------------------------------------------------------------- /rom/dos/maxcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/maxcli.c -------------------------------------------------------------------------------- /rom/dos/namefrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/namefrom.c -------------------------------------------------------------------------------- /rom/dos/nil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/nil.c -------------------------------------------------------------------------------- /rom/dos/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/open.c -------------------------------------------------------------------------------- /rom/dos/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/output.c -------------------------------------------------------------------------------- /rom/dos/pathpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/pathpart.c -------------------------------------------------------------------------------- /rom/dos/putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/putstr.c -------------------------------------------------------------------------------- /rom/dos/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/read.c -------------------------------------------------------------------------------- /rom/dos/readargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/readargs.c -------------------------------------------------------------------------------- /rom/dos/readitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/readitem.c -------------------------------------------------------------------------------- /rom/dos/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/readlink.c -------------------------------------------------------------------------------- /rom/dos/relabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/relabel.c -------------------------------------------------------------------------------- /rom/dos/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/rename.c -------------------------------------------------------------------------------- /rom/dos/replypkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/replypkt.c -------------------------------------------------------------------------------- /rom/dos/rootnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/rootnode.c -------------------------------------------------------------------------------- /rom/dos/samelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/samelock.c -------------------------------------------------------------------------------- /rom/dos/scanvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/scanvars.c -------------------------------------------------------------------------------- /rom/dos/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/seek.c -------------------------------------------------------------------------------- /rom/dos/sendpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/sendpkt.c -------------------------------------------------------------------------------- /rom/dos/setioerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/setioerr.c -------------------------------------------------------------------------------- /rom/dos/setmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/setmode.c -------------------------------------------------------------------------------- /rom/dos/setowner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/setowner.c -------------------------------------------------------------------------------- /rom/dos/setvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/setvar.c -------------------------------------------------------------------------------- /rom/dos/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/setvbuf.c -------------------------------------------------------------------------------- /rom/dos/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/ungetc.c -------------------------------------------------------------------------------- /rom/dos/unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/unlock.c -------------------------------------------------------------------------------- /rom/dos/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/vfprintf.c -------------------------------------------------------------------------------- /rom/dos/vfwritef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/vfwritef.c -------------------------------------------------------------------------------- /rom/dos/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/vprintf.c -------------------------------------------------------------------------------- /rom/dos/waitpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/waitpkt.c -------------------------------------------------------------------------------- /rom/dos/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dos/write.c -------------------------------------------------------------------------------- /rom/dosboot/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dosboot/menu.c -------------------------------------------------------------------------------- /rom/dosboot/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/dosboot/menu.h -------------------------------------------------------------------------------- /rom/exec/abortio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/abortio.c -------------------------------------------------------------------------------- /rom/exec/addhead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/addhead.c -------------------------------------------------------------------------------- /rom/exec/addport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/addport.c -------------------------------------------------------------------------------- /rom/exec/addtail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/addtail.c -------------------------------------------------------------------------------- /rom/exec/addtask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/addtask.c -------------------------------------------------------------------------------- /rom/exec/alert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/alert.c -------------------------------------------------------------------------------- /rom/exec/avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/avl.c -------------------------------------------------------------------------------- /rom/exec/cause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/cause.c -------------------------------------------------------------------------------- /rom/exec/checkio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/checkio.c -------------------------------------------------------------------------------- /rom/exec/chipset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/chipset.h -------------------------------------------------------------------------------- /rom/exec/copymem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/copymem.c -------------------------------------------------------------------------------- /rom/exec/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/debug.c -------------------------------------------------------------------------------- /rom/exec/disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/disable.c -------------------------------------------------------------------------------- /rom/exec/doio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/doio.c -------------------------------------------------------------------------------- /rom/exec/enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/enable.c -------------------------------------------------------------------------------- /rom/exec/enqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/enqueue.c -------------------------------------------------------------------------------- /rom/exec/etask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/etask.h -------------------------------------------------------------------------------- /rom/exec/exec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/exec.conf -------------------------------------------------------------------------------- /rom/exec/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/exec/wait.c -------------------------------------------------------------------------------- /rom/filesys/.gitignore: -------------------------------------------------------------------------------- 1 | zfs 2 | -------------------------------------------------------------------------------- /rom/filesys/SFS/SFScheck/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/filesys/SFS/SFSdefrag/Icons/SFSDefrag.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 16384 3 | 4 | -------------------------------------------------------------------------------- /rom/filesys/cdfs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/filesys/fat/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/filesys/pfs3/fs/dos.h: -------------------------------------------------------------------------------- 1 | /* Dummy file */ -------------------------------------------------------------------------------- /rom/filesys/pfs3/pfsdoctor/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/filesys/ram/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/acpi/acad/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/acpi/battery/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/acpi/button/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/ata_pci/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/base/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/base/bus/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/base/power/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/base/storage/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/base/system/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/gfx/headless/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/pci/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/pci/pcitool/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /rom/hidds/scsi/wd33c93/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/serialmouse/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/hidds/vesagfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/intuition/intuition_extend.h: -------------------------------------------------------------------------------- 1 | //FIXME: this file should be deleted 2 | -------------------------------------------------------------------------------- /rom/intuition/intuition_rev.rev: -------------------------------------------------------------------------------- 1 | 46 2 | -------------------------------------------------------------------------------- /rom/intuition/intuition_rev.trev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rom/intuition/transplayers.h: -------------------------------------------------------------------------------- 1 | //FIXME: this file should go away -------------------------------------------------------------------------------- /rom/isapnp/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/isapnp/BUGS -------------------------------------------------------------------------------- /rom/isapnp/end.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const char __used LIBEND = 1; 4 | -------------------------------------------------------------------------------- /rom/isapnp/version.date: -------------------------------------------------------------------------------- 1 | 07.08.01 2 | -------------------------------------------------------------------------------- /rom/isapnp/version.rev: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /rom/isapnp/version.ver: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /rom/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/log/log.c -------------------------------------------------------------------------------- /rom/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/log/log.h -------------------------------------------------------------------------------- /rom/oop/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/oop/hash.c -------------------------------------------------------------------------------- /rom/oop/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/oop/hash.h -------------------------------------------------------------------------------- /rom/oop/oop.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/oop/oop.doc -------------------------------------------------------------------------------- /rom/security/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/security/secCheckPasswdTags.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rom/security/secGetRelationship.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rom/security/secLogin.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rom/security/secSetDefProtection.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rom/task/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/task/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/task/task.h -------------------------------------------------------------------------------- /rom/timer/timervblank.h: -------------------------------------------------------------------------------- 1 | int vblank_Init(struct TimerBase *LIBBASE); 2 | -------------------------------------------------------------------------------- /rom/usb/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/rom/usb/LEGAL -------------------------------------------------------------------------------- /rom/usb/classes/arosx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/classes/arosx/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/classes/camdmidi/camd/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/classes/felsunxi/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/classes/hubss/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/guiapps/ps3eye/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/pciusbhc/ohci/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/pciusbhc/xhci/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/presets/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /rom/usb/trident/icons/def_PSD.info.src: -------------------------------------------------------------------------------- 1 | TYPE = PROJECT 2 | -------------------------------------------------------------------------------- /rom/usb/vusbhc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /scripts/mkdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/scripts/mkdep -------------------------------------------------------------------------------- /scripts/nightly/cfg/developer: -------------------------------------------------------------------------------- 1 | CFG_PACKAGES=(developer) 2 | CFG_MAIL_ENABLE=yes 3 | -------------------------------------------------------------------------------- /scripts/nightly/cleanup: -------------------------------------------------------------------------------- 1 | printi "Cleaning up..." 2 | execute rm -rf $BUILD_BASE 3 | -------------------------------------------------------------------------------- /scripts/relpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/scripts/relpath -------------------------------------------------------------------------------- /tools/ADFlib/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ADFlib/examples/.gitignore: -------------------------------------------------------------------------------- 1 | unadf 2 | -------------------------------------------------------------------------------- /tools/MetaMake/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /tools/crosstools/gnu/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/crosstools/llvm/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/cxref/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/tools/cxref/FAQ -------------------------------------------------------------------------------- /tools/cxref/LSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/tools/cxref/LSM -------------------------------------------------------------------------------- /tools/cxref/cpp/version.c: -------------------------------------------------------------------------------- 1 | char *version_string = "2.7.2-cxref"; 2 | -------------------------------------------------------------------------------- /tools/fd2pragma/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/flexcat/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/flexcat/src/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/icu4c/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/mkamikeymap/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/setrev/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /tools/setrev/LEGAL: -------------------------------------------------------------------------------- 1 | This software is in the public domain. 2 | -------------------------------------------------------------------------------- /tools/tpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/tools/tpl.c -------------------------------------------------------------------------------- /workbench/.backdrop: -------------------------------------------------------------------------------- 1 | :Tools/InstallAROS 2 | -------------------------------------------------------------------------------- /workbench/c/Load.c: -------------------------------------------------------------------------------- 1 | #include "Eject.c" 2 | -------------------------------------------------------------------------------- /workbench/c/R/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/c/WBRun/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/c/shellcommands/NewCLI.c: -------------------------------------------------------------------------------- 1 | #include "NewShell.c" 2 | -------------------------------------------------------------------------------- /workbench/classes/datatypes/animation/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/datatypes/html/main.h: -------------------------------------------------------------------------------- 1 | /* There is empty space all around us */ 2 | -------------------------------------------------------------------------------- /workbench/classes/datatypes/wav/wave.datatype_rev.rev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /workbench/classes/datatypes/webp/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/gadgets/tapedeck/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/calltips/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/graph/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/demo/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/nbalance_mcc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/nbitmap_mcc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/nfloattext_mcc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/nlist_mcc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/nlisttree_mcc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/classes/zune/nlist/nlistview_mcc/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AHI-Handler/aros/resident_end.c: -------------------------------------------------------------------------------- 1 | int End(void) {return 0;} 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AHI-Handler/version.date: -------------------------------------------------------------------------------- 1 | 14.04.2023 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AHI-Handler/version.rev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AHI/version.date: -------------------------------------------------------------------------------- 1 | 23.12.2024 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AHI/version.rev: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AddAudioModes/version.date: -------------------------------------------------------------------------------- 1 | 18.03.2017 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/AddAudioModes/version.rev: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Device/version.date: -------------------------------------------------------------------------------- 1 | 23.12.2024 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Device/version.rev: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Alsa/alsa-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Alsa/version.date: -------------------------------------------------------------------------------- 1 | 8.11.2024 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Alsa/version.rev: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Alsa/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/CMI8738/version.date: -------------------------------------------------------------------------------- 1 | 20.7.2012 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/CMI8738/version.rev: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/CMI8738/version.ver: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Device/version.date: -------------------------------------------------------------------------------- 1 | 28.09.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Device/version.rev: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Device/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/EMU10kx/version.date: -------------------------------------------------------------------------------- 1 | 28.09.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/EMU10kx/version.rev: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/EMU10kx/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Envy24/version.date: -------------------------------------------------------------------------------- 1 | 10.1.2014 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Envy24/version.rev: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Envy24/version.ver: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Envy24HT/version.date: -------------------------------------------------------------------------------- 1 | 12.3.2013 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Envy24HT/version.rev: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Envy24HT/version.ver: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Filesave/version.date: -------------------------------------------------------------------------------- 1 | 28.09.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Filesave/version.rev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Filesave/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/HDAudio/version.date: -------------------------------------------------------------------------------- 1 | 29.12.2024 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/HDAudio/version.rev: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/HDAudio/version.ver: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/OSS/version.date: -------------------------------------------------------------------------------- 1 | 28.03.22 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/OSS/version.rev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/OSS/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/PulseAudio/pulseaudio-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/PulseAudio/version.date: -------------------------------------------------------------------------------- 1 | 8.11.2024 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/PulseAudio/version.rev: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/PulseAudio/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/SB128/version.date: -------------------------------------------------------------------------------- 1 | 20.7.2012 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/SB128/version.rev: -------------------------------------------------------------------------------- 1 | 27 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/SB128/version.ver: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/VIA-AC97/version.date: -------------------------------------------------------------------------------- 1 | 25.2.2013 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/VIA-AC97/version.rev: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/VIA-AC97/version.ver: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Void/version.date: -------------------------------------------------------------------------------- 1 | 28.09.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Void/version.rev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/Void/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/WASAPI/WASAPI-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/WASAPI/version.date: -------------------------------------------------------------------------------- 1 | 28.03.2022 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/WASAPI/version.rev: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/WASAPI/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/ac97/version.date: -------------------------------------------------------------------------------- 1 | 22.03.2017 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/ac97/version.rev: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Drivers/ac97/version.ver: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Device/PlayTest/version.date: -------------------------------------------------------------------------------- 1 | 02.02.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Device/PlayTest/version.rev: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Extras/CloneAudioModes/version.date: -------------------------------------------------------------------------------- 1 | 02.02.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Extras/CloneAudioModes/version.rev: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/PTdatatype/ProtrackerDT/Classes/Datatypes/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/PTdatatype/ProtrackerDT/ENV/DataTypes/Protracker: -------------------------------------------------------------------------------- 1 | 0 0 -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/PTdatatype/protracker_rev.rev: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 7.10.1996 4 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/PlaySineEverywhere/version.date: -------------------------------------------------------------------------------- 1 | 02.02.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/PlaySineEverywhere/version.rev: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/ScanAudioModes/version.date: -------------------------------------------------------------------------------- 1 | 02.02.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/ScanAudioModes/version.rev: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/Test-7.1/version.date: -------------------------------------------------------------------------------- 1 | 02.02.05 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/Examples/Low-level/Test-7.1/version.rev: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/PackageFiles/Packages/AHI: -------------------------------------------------------------------------------- 1 | SYS:Extras/AHI -------------------------------------------------------------------------------- /workbench/devs/AHI/version.date: -------------------------------------------------------------------------------- 1 | 14.04.2023 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/version.rev: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /workbench/devs/AHI/version.ver: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/bz2_library/bz2.library_rev.rev: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /workbench/devs/diskimage/bz2_library/stub_m68k.s: -------------------------------------------------------------------------------- 1 | _start: 2 | moveq #-1,d0 3 | rts 4 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/bz2_library/stub_ppc.s: -------------------------------------------------------------------------------- 1 | .text 2 | _start: 3 | li 3,-1 4 | blr 5 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/cmd/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/device/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/device/stub_m68k.s: -------------------------------------------------------------------------------- 1 | _start: 2 | moveq #-1,d0 3 | rts 4 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/device/stub_ppc.s: -------------------------------------------------------------------------------- 1 | .text 2 | _start: 3 | li 3,-1 4 | blr 5 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/device/stub_x86.s: -------------------------------------------------------------------------------- 1 | .text 2 | _start: 3 | movl -1, %eax 4 | ret 5 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/expat_library/expat.library_rev.rev: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /workbench/devs/diskimage/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/include/rev/DiskImageGUI_rev.rev: -------------------------------------------------------------------------------- 1 | 33 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/include/rev/MountDiskImage_rev.rev: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/include/rev/MountHDF_rev.rev: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/include/rev/diskimage.device_rev.rev: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/png_image/png.image_rev.rev: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /workbench/devs/diskimage/png_image/stub_m68k.s: -------------------------------------------------------------------------------- 1 | _start: 2 | moveq #-1,d0 3 | rts 4 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/prefs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/bitmap_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _BitMapBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/chooser_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _ChooserBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/label_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _LabelBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/layout_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _LayoutBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/slider_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _SliderBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/space_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _SpaceBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/string_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _StringBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/raauto/window_autoopenver.c: -------------------------------------------------------------------------------- 1 | unsigned long _WindowBaseVer = 0; 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/support/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/z_library/stub_m68k.s: -------------------------------------------------------------------------------- 1 | _start: 2 | moveq #-1,d0 3 | rts 4 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/z_library/stub_ppc.s: -------------------------------------------------------------------------------- 1 | .text 2 | _start: 3 | li 3,-1 4 | blr 5 | -------------------------------------------------------------------------------- /workbench/devs/diskimage/z_library/z.library_rev.rev: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /workbench/devs/diskimage/zune_gui/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/devs/monitors/IntelGMA/i915/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/networks/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/networks/prism2/firmware/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/printer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/printtofile/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/devs/printtotool/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/expansion/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/AmigaPL/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/architext/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/architext/Architext Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/artilla-script/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/artilla-script/Artilla Script Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Black Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Black.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow ExtraBold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow ExtraBold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow ExtraLight Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow ExtraLight.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Light Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Light.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Medium Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Medium.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow SemiBold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow SemiBold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Thin Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/barlow/Barlow Thin.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bellefair/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/bellefair/Bellefair Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Mono Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Mono Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Mono Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Mono.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Sans Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Sans Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Sans Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Sans.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Serif Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/bitstream/Vera Serif.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/carbon/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/carbon/Carbon Black.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/carbon/Carbon Phyber.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/cellestial/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/cellestial/Cellestial Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/dustismo-roman/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/dustismo-roman/Dustismo Roman Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/dustismo-roman/Dustismo Roman Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/dustismo-roman/Dustismo Roman Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/dustismo-roman/Dustismo Roman Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/elronetmono/ElroNet Monospace Normal.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/good-times/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/good-times/Good Times Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/magnificent/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/magnificent/Magnificent Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Extrabold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Extrabold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Light Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Light.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Semibold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/opensans/Open Sans Semibold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/pakenham-free/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/pakenham-free/Pakenham Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral ExtraBold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral ExtraBold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral ExtraLight Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral ExtraLight.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Light Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Light.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Medium Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Medium.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral SemiBold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/spectral/Spectral SemiBold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/tooneynoodle/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/tooneynoodle/Tooney Noodle NF Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/videophreak/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/videophreak/Videophreak Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Black Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Black.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Bold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Bold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans ExtraBold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans ExtraBold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans ExtraLight Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans ExtraLight.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Light Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Light.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Medium Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Medium.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Regular.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans SemiBold Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans SemiBold.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Thin Italic.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fonts/truetype/work-sans/Work Sans Thin.font: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /workbench/fs/debug/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fs/ntfs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/fs/port/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/agp/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/gallium/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/i2c/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/i2c/stubs/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/nouveau/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/nouveau/pci-device-mock/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/nvidia/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/radeon/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/sm502gfx/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/softpipe/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/hidds/vmwaresvga/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/dxtn/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/egl/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/freetype2/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/gl/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/glu/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/jpeg/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/libcompiler/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/libgalliumaux/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/libgalliumvm/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/libglapi/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/libmesa/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/mesa/libmesautil/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/muimaster/.gitignore: -------------------------------------------------------------------------------- 1 | muimaster_strings.h 2 | -------------------------------------------------------------------------------- /workbench/libs/png/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/libs/reqtools/reqtools_rev.rev: -------------------------------------------------------------------------------- 1 | 1436 2 | -------------------------------------------------------------------------------- /workbench/libs/z/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/src/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | libcrypto.a 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/src/radius/.gitignore: -------------------------------------------------------------------------------- 1 | libradius.a 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/src/tls/.gitignore: -------------------------------------------------------------------------------- 1 | libtls.a 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/src/utils/.gitignore: -------------------------------------------------------------------------------- 1 | libutils.a 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/wpa_supplicant/dbus/.gitignore: -------------------------------------------------------------------------------- 1 | libwpadbus.a 2 | -------------------------------------------------------------------------------- /workbench/network/WirelessManager/wpa_supplicant/doc/docbook/manpage.links: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/network/common/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/network/common/C/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/network/common/C/netstat/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/network/common/include/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/network/common/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /workbench/network/smbfs/source_code/smbfs_rev.rev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /workbench/network/stacks/AROSTCP/db/networks: -------------------------------------------------------------------------------- 1 | loop 127 loopback 2 | 3 | -------------------------------------------------------------------------------- /workbench/network/stacks/AROSTCP/db/static-routes: -------------------------------------------------------------------------------- 1 | DEFAULT GATEWAY 192.168.0.1 2 | 3 | -------------------------------------------------------------------------------- /workbench/prefs/Presets/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/prefs/appearance/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/prefs/boingiconbar/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/prefs/boot/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/prefs/env-archive/SYS/Packages/Developer: -------------------------------------------------------------------------------- 1 | SYS:Developer 2 | -------------------------------------------------------------------------------- /workbench/prefs/env-archive/SYS/compositor.prefs: -------------------------------------------------------------------------------- 1 | ABOVE -------------------------------------------------------------------------------- /workbench/prefs/env-archive/SYS/nv_location: -------------------------------------------------------------------------------- 1 | S: 2 | -------------------------------------------------------------------------------- /workbench/prefs/printer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/s/PCD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aros-development-team/AROS/HEAD/workbench/s/PCD -------------------------------------------------------------------------------- /workbench/system/Wanderer/Env/classic/statusbar.prefs: -------------------------------------------------------------------------------- 1 | FALSE 2 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Env/classic/toolbar.prefs: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /workbench/system/Wanderer/Env/default/backdrop.prefs: -------------------------------------------------------------------------------- 1 | TRUE 2 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Env/default/statusbar.prefs: -------------------------------------------------------------------------------- 1 | TRUE 2 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Env/default/toolbar.prefs: -------------------------------------------------------------------------------- 1 | TRUE 2 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Icons/Wanderer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 16384 3 | 4 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Icons/drawer.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | 3 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Icons/file.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | 3 | 4 | -------------------------------------------------------------------------------- /workbench/system/Wanderer/Tools/Info/icons/Info.info.src: -------------------------------------------------------------------------------- 1 | TYPE = TOOL 2 | STACK = 8192 3 | -------------------------------------------------------------------------------- /workbench/system/find/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/system/find/TODO: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | 4 | - finish localization 5 | -------------------------------------------------------------------------------- /workbench/tools/BoingIconBar/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/tools/HDToolBox/icons/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | -------------------------------------------------------------------------------- /workbench/tools/InstallAROS/.gitignore: -------------------------------------------------------------------------------- 1 | strings.h 2 | -------------------------------------------------------------------------------- /workbench/tools/InstallAROS/ia_installoption_intern.h: -------------------------------------------------------------------------------- 1 | #include "ia_option.h" 2 | -------------------------------------------------------------------------------- /workbench/tools/InstallAROS/icons/Harddisk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /workbench/tools/InstallAROS/icons/USBdisk.info.src: -------------------------------------------------------------------------------- 1 | TYPE = DISK 2 | -------------------------------------------------------------------------------- /workbench/tools/SysExplorer/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/tools/SysExplorer/Modules/Power/power.h: -------------------------------------------------------------------------------- 1 | 2 | #include "enums.h" 3 | -------------------------------------------------------------------------------- /workbench/tools/SysExplorer/Modules/Storage/storage.h: -------------------------------------------------------------------------------- 1 | 2 | #include "enums.h" 3 | -------------------------------------------------------------------------------- /workbench/tools/WiMP/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | strings.h 3 | -------------------------------------------------------------------------------- /workbench/utilities/Help/.gitignore: -------------------------------------------------------------------------------- 1 | mmakefile 2 | --------------------------------------------------------------------------------