├── .gitignore ├── .gitmodules ├── .travis.yml ├── AcessNative ├── .gitignore ├── Makefile ├── RunNative ├── RunRootApp ├── RunTest ├── acesskernel_src │ ├── Details.txt │ ├── Makefile │ ├── helpers.c │ ├── include │ │ ├── arch.h │ │ ├── heap.h │ │ ├── mouse_int.h │ │ ├── proc.h │ │ ├── threads_glue.h │ │ └── threads_int.h │ ├── keyboard.c │ ├── main.c │ ├── mouse.c │ ├── nativefs.c │ ├── net.c │ ├── net_wrap.c │ ├── net_wrap.h │ ├── server.c │ ├── syscall_getpath.c │ ├── syscalls.c │ ├── threads.c │ ├── threads_glue.c │ ├── time.c │ ├── ui.h │ ├── ui_sdl.c │ ├── vfs_handle.c │ └── video.c ├── ld-acess_src │ ├── Makefile │ ├── binary.c │ ├── common.h │ ├── elf.c │ ├── elf32.h │ ├── elf64.h │ ├── elf_load.c │ ├── exports.c │ ├── exports.h │ ├── main.c │ ├── memory.c │ ├── request.c │ ├── request.h │ └── syscalls.c ├── libacess-native.so_src │ ├── Makefile │ ├── common.h │ ├── exports.c │ ├── heap.c │ ├── main.c │ ├── memory.c │ ├── request.c │ └── syscalls.c ├── symbol_renames.ld ├── syscalls.h └── syscalls_list.h ├── BuildAcessNative ├── BuildConf ├── armv6 │ ├── Makefile.cfg │ ├── default.mk │ └── raspberrypi.mk ├── armv7 │ ├── Makefile.cfg │ ├── default.mk │ ├── realview_pb.mk │ └── tegra2.mk ├── host │ ├── Makefile.cfg │ └── default.mk ├── m68k │ ├── Makefile.cfg │ └── default.mk ├── native │ ├── Makefile.cfg │ └── default.mk ├── x86 │ ├── Makefile.cfg │ ├── default.mk │ └── smp.mk └── x86_64 │ ├── Makefile.cfg │ └── default.mk ├── COPYING ├── CleanAllArch ├── DoRelease ├── EditBoot ├── Externals ├── .gitignore ├── ACPICA │ ├── .gitignore │ ├── Makefile │ ├── Makefile.kinc │ └── acacess.h ├── bochs │ ├── Makefile │ └── patches │ │ ├── config.h.in.patch │ │ └── config.sub.patch ├── common_automake.mk ├── config.mk ├── core.mk ├── cross-compiler │ ├── .gitignore │ ├── Makefile │ ├── Makefile.common.mk │ ├── Makefile.cross │ ├── Makefile.rules.mk │ └── patches │ │ ├── binutils │ │ ├── bfd │ │ │ └── config.bfd.patch │ │ ├── config.sub.patch │ │ ├── gas │ │ │ └── configure.tgt.patch │ │ └── ld │ │ │ ├── Makefile.in.patch │ │ │ ├── configure.tgt.patch │ │ │ └── emulparams │ │ │ ├── acess2_amd64.sh │ │ │ ├── acess2_arm.sh │ │ │ └── acess2_i386.sh │ │ ├── config │ │ └── override.m4.patch │ │ └── gcc │ │ ├── config.sub.patch │ │ ├── gcc │ │ ├── config.gcc.patch │ │ └── config │ │ │ ├── acess2.h │ │ │ └── acess2.opt │ │ └── libgcc │ │ └── config.host.patch ├── curl │ ├── Makefile │ └── patches │ │ └── config.sub.patch ├── dropbear │ ├── Makefile │ └── patches │ │ ├── config.sub.patch │ │ └── options.h.patch ├── freetype │ ├── .gitignore │ ├── Makefile │ └── patches │ │ └── builds │ │ └── unix │ │ └── config.sub.patch ├── glib │ ├── Makefile │ └── patches │ │ └── config.sub.patch ├── libpng │ ├── .gitignore │ └── Makefile ├── libspiderscript │ └── Makefile ├── mesa │ ├── Makefile │ └── patches │ │ └── bin │ │ └── config.sub.patch ├── mplayer │ ├── .gitignore │ └── Makefile ├── netsurf │ ├── Makefile │ └── patches │ │ └── UNIFIED.patch ├── pkgconfig │ ├── Makefile │ └── patches │ │ ├── config.sub.patch │ │ └── glib │ │ └── config.sub.patch ├── sdl12 │ ├── .gitignore │ ├── Makefile │ └── patches │ │ ├── configure.patch │ │ └── src │ │ └── video │ │ ├── SDL_sysvideo.h.patch │ │ ├── SDL_video.c.patch │ │ └── acess │ │ └── ptyvideo.c ├── vttest │ └── Makefile └── zlib │ ├── .gitignore │ └── Makefile ├── KernelLand ├── Kernel │ ├── .gitignore │ ├── Doxyfile │ ├── Doxyfile.api │ ├── DoxygenLayout.xml │ ├── GenSyscalls.pl │ ├── Makefile │ ├── adt.c │ ├── arch │ │ ├── archdoc.h │ │ ├── armv6 │ │ │ ├── Makefile │ │ │ ├── debug.c │ │ │ ├── include │ │ │ │ ├── arch.h │ │ │ │ ├── assembly.h │ │ │ │ ├── lock.h │ │ │ │ ├── mm_virt.h │ │ │ │ ├── options.h │ │ │ │ └── proc.h │ │ │ ├── lib.S │ │ │ ├── lib.c │ │ │ ├── link.ld │ │ │ ├── main.c │ │ │ ├── mm_phys.c │ │ │ ├── mm_virt.c │ │ │ ├── pci.c │ │ │ ├── proc.S │ │ │ ├── proc.c │ │ │ ├── start.S │ │ │ └── time.c │ │ ├── armv7 │ │ │ ├── Makefile │ │ │ ├── debug.c │ │ │ ├── include │ │ │ │ ├── arch.h │ │ │ │ ├── assembly.h │ │ │ │ ├── lock.h │ │ │ │ ├── mm_virt.h │ │ │ │ ├── options.h │ │ │ │ └── proc.h │ │ │ ├── lib.S │ │ │ ├── lib.c │ │ │ ├── link.ld │ │ │ ├── main.c │ │ │ ├── mm_phys.c │ │ │ ├── mm_virt.c │ │ │ ├── pci.c │ │ │ ├── platform_realview_pb.c │ │ │ ├── platform_tegra2.c │ │ │ ├── platform_tegra2.h │ │ │ ├── proc.S │ │ │ ├── proc.c │ │ │ ├── start.S │ │ │ ├── time.c │ │ │ ├── vpci_realview_pb.c │ │ │ └── vpci_tegra2.c │ │ ├── helpers.h │ │ ├── m68k │ │ │ ├── Makefile │ │ │ ├── debug.c │ │ │ ├── include │ │ │ │ ├── arch.h │ │ │ │ ├── mm_virt.h │ │ │ │ └── proc.h │ │ │ ├── lib.c │ │ │ ├── link.ld │ │ │ ├── main.c │ │ │ ├── mm_phys.c │ │ │ ├── mm_virt.c │ │ │ ├── proc.c │ │ │ └── time.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── acpica.c │ │ │ ├── common.inc.asm │ │ │ ├── desctab.asm │ │ │ ├── errors.c │ │ │ ├── include │ │ │ │ ├── apic.h │ │ │ │ ├── arch.h │ │ │ │ ├── arch_int.h │ │ │ │ ├── desctab.h │ │ │ │ ├── mm_phys.h │ │ │ │ ├── mm_virt.h │ │ │ │ ├── mptable.h │ │ │ │ ├── multiboot2.h │ │ │ │ ├── proc.h │ │ │ │ ├── proc_int.h │ │ │ │ ├── vm8086.h │ │ │ │ └── vmem_layout.h │ │ │ ├── irq.c │ │ │ ├── kpanic.c │ │ │ ├── lib.c │ │ │ ├── link.ld │ │ │ ├── main.c │ │ │ ├── mboot.c │ │ │ ├── mm_phys.c │ │ │ ├── mm_virt.c │ │ │ ├── mptable.c │ │ │ ├── pci.c │ │ │ ├── proc.asm │ │ │ ├── proc.c │ │ │ ├── start.asm │ │ │ ├── time.c │ │ │ ├── validate_vmem.c │ │ │ ├── vm8086.c │ │ │ └── vpci.c │ │ └── x86_64 │ │ │ ├── Makefile │ │ │ ├── desctab.asm │ │ │ ├── errors.c │ │ │ ├── include │ │ │ ├── arch.h │ │ │ ├── arch_config.h │ │ │ ├── archinit.h │ │ │ ├── common.inc.asm │ │ │ ├── desctab.h │ │ │ ├── mm_virt.h │ │ │ ├── proc.h │ │ │ └── vm8086.h │ │ │ ├── kernelpanic.c │ │ │ ├── lib.c │ │ │ ├── link.ld │ │ │ ├── main.c │ │ │ ├── mm_phys.c │ │ │ ├── mm_virt.c │ │ │ ├── pci.c │ │ │ ├── proc.asm │ │ │ ├── proc.c │ │ │ ├── rme.c │ │ │ ├── rme.h │ │ │ ├── start32.asm │ │ │ ├── start64.asm │ │ │ ├── time.c │ │ │ ├── vm8086.c │ │ │ └── vpci.c │ ├── bin │ │ ├── README │ │ ├── elf.c │ │ ├── elf.h │ │ ├── pe.c │ │ └── pe.h │ ├── binary.c │ ├── debug.c │ ├── debug_hooks.c │ ├── drv │ │ ├── Makefile │ │ ├── dgram_pipe.c │ │ ├── fifo.c │ │ ├── iocache.c │ │ ├── meta_serial.c │ │ ├── pci.c │ │ ├── proc.c │ │ ├── pty.c │ │ ├── serial.c │ │ ├── shm.c │ │ ├── vpci.c │ │ ├── vterm.c │ │ ├── vterm.h │ │ ├── vterm_2d.c │ │ ├── vterm_font.c │ │ ├── vterm_font_8x16.h │ │ ├── vterm_font_8x8.h │ │ ├── vterm_input.c │ │ ├── vterm_output.c │ │ ├── vterm_termbuf.c │ │ ├── vterm_vt100.c │ │ └── zero-one.c │ ├── drvutil_disk.c │ ├── drvutil_video.c │ ├── emergency_console.c │ ├── events.c │ ├── heap.c │ ├── include │ │ ├── acess.h │ │ ├── acess_string.h │ │ ├── adt.h │ │ ├── api_drv_common.h │ │ ├── api_drv_disk.h │ │ ├── api_drv_joystick.h │ │ ├── api_drv_keyboard.h │ │ ├── api_drv_network.h │ │ ├── api_drv_terminal.h │ │ ├── api_drv_video.h │ │ ├── apidoc │ │ │ └── arch_x86.h │ │ ├── apidoc_mainpage.h │ │ ├── binary.h │ │ ├── binary_ext.h │ │ ├── bootmod.h │ │ ├── ctype.h │ │ ├── debug_hooks.h │ │ ├── drv_pci.h │ │ ├── drv_pci_int.h │ │ ├── drv_pty.h │ │ ├── drv_serial.h │ │ ├── errno.h │ │ ├── events.h │ │ ├── fs_devfs.h │ │ ├── fs_sysfs.h │ │ ├── hal_proc.h │ │ ├── heap.h │ │ ├── heap_int.h │ │ ├── init.h │ │ ├── iocache.h │ │ ├── keysyms.h │ │ ├── lib │ │ │ └── keyvalue.h │ │ ├── logdebug.h │ │ ├── mboot.h │ │ ├── memfs_helpers.h │ │ ├── meta_serial.h │ │ ├── modules.h │ │ ├── mutex.h │ │ ├── pmemmap.h │ │ ├── posix_signals.h │ │ ├── rwlock.h │ │ ├── semaphore.h │ │ ├── syscalls.h │ │ ├── syscalls.inc.asm │ │ ├── threads.h │ │ ├── threads_int.h │ │ ├── timers.h │ │ ├── timers_int.h │ │ ├── tpl_mm_phys_bitmap.h │ │ ├── tpl_mm_phys_stack.h │ │ ├── utf16.h │ │ ├── vfs.h │ │ ├── vfs_ext.h │ │ ├── vfs_int.h │ │ ├── vfs_ramfs.h │ │ ├── vfs_threads.h │ │ ├── virtual_pci.h │ │ └── workqueue.h │ ├── lib.c │ ├── libc.c │ ├── logging.c │ ├── memfs_helpers.c │ ├── messages.c │ ├── modules.c │ ├── mutex.c │ ├── pmemmap.c │ ├── rwlock.c │ ├── semaphore.c │ ├── syscalls.c │ ├── syscalls.lst │ ├── system.c │ ├── threads.c │ ├── time.c │ ├── utf16.c │ ├── vfs │ │ ├── acls.c │ │ ├── dir.c │ │ ├── fs │ │ │ ├── devfs.c │ │ │ └── root.c │ │ ├── handle.c │ │ ├── io.c │ │ ├── main.c │ │ ├── memfile.c │ │ ├── mmap.c │ │ ├── mount.c │ │ ├── nodecache.c │ │ ├── open.c │ │ └── select.c │ └── workqueue.c ├── Makefile.cfg └── Modules │ ├── Display │ ├── BochsGA │ │ ├── Makefile │ │ └── bochsvbe.c │ ├── Makefile.tpl │ ├── NVidia │ │ ├── main.c │ │ ├── regs.c │ │ └── regs.h │ ├── PL110 │ │ ├── Makefile │ │ └── main.c │ ├── RPi │ │ └── main.c │ ├── Tegra2Vid │ │ ├── Makefile │ │ ├── Registers.txt │ │ ├── main.c │ │ └── tegra2.h │ ├── VESA │ │ ├── Makefile │ │ ├── common.h │ │ ├── main.c │ │ └── vbe.h │ ├── VGA │ │ └── vgaregs.c │ └── VIAVideo │ │ ├── Makefile │ │ ├── common.h │ │ └── main.c │ ├── Filesystems │ ├── Ext2 │ │ ├── Makefile │ │ ├── dir.c │ │ ├── ext2.c │ │ ├── ext2_common.h │ │ ├── ext2fs.h │ │ ├── read.c │ │ └── write.c │ ├── FAT │ │ ├── Makefile │ │ ├── common.h │ │ ├── dir.c │ │ ├── fat.c │ │ ├── fatio.c │ │ ├── fs_fat.h │ │ └── nodecache.c │ ├── InitRD │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── files.lst │ │ ├── generate_initrd.c │ │ ├── initrd.h │ │ └── main.c │ ├── LEAN │ │ ├── common.h │ │ └── main.c │ ├── Makefile.tpl │ ├── NFS │ │ ├── Makefile │ │ ├── common.h │ │ └── main.c │ ├── NTFS │ │ ├── Makefile │ │ ├── attributes.h │ │ ├── common.h │ │ ├── dir.c │ │ ├── index.h │ │ ├── io.c │ │ ├── main.c │ │ └── ntfs.h │ └── RAMDisk │ │ ├── Makefile │ │ ├── ramdisk.c │ │ └── ramdisk.h │ ├── IPStack │ ├── Makefile │ ├── adapters.c │ ├── arp.c │ ├── arp.h │ ├── buffer.c │ ├── firewall.c │ ├── firewall.h │ ├── hwaddr_cache.c │ ├── hwaddr_cache.h │ ├── icmp.c │ ├── icmp.h │ ├── icmpv6.c │ ├── icmpv6.h │ ├── include │ │ ├── adapters.h │ │ ├── adapters_api.h │ │ ├── adapters_int.h │ │ └── buffer.h │ ├── init.h │ ├── interface.c │ ├── interface.h │ ├── ipstack.h │ ├── ipv4.c │ ├── ipv4.h │ ├── ipv6.c │ ├── ipv6.h │ ├── link.c │ ├── link.h │ ├── main.c │ ├── routing.c │ ├── sctp.c │ ├── tcp.c │ ├── tcp.h │ ├── udp.c │ └── udp.h │ ├── Input │ ├── Keyboard │ │ ├── Makefile │ │ ├── include │ │ │ └── keyboard.h │ │ ├── keymap_int.h │ │ ├── layout_kbdus.h │ │ └── main.c │ ├── Makefile.tpl │ ├── Mouse │ │ ├── Makefile │ │ ├── include │ │ │ ├── mouse.h │ │ │ └── mouse_int.h │ │ └── main.c │ └── PS2KbMouse │ │ ├── 8042.c │ │ ├── Makefile │ │ ├── common.h │ │ ├── kb.c │ │ ├── kb_transtab.h │ │ ├── main.c │ │ ├── pl050.c │ │ └── ps2mouse.c │ ├── Interfaces │ ├── Makefile.tpl │ └── UDI │ │ ├── Makefile │ │ ├── Notes.txt │ │ ├── channels.c │ │ ├── deferred_calls.c │ │ ├── include │ │ ├── trans_nsr.h │ │ ├── trans_pci.h │ │ ├── trans_uart.h │ │ ├── udi_internal.h │ │ └── udi_internal_ma.h │ │ ├── main.c │ │ ├── management_agent.c │ │ ├── trans │ │ ├── bus_pci.c │ │ ├── gfx.c │ │ ├── gfx.udic │ │ ├── gfx_plan.txt │ │ ├── gio_uart.c │ │ └── nsr.c │ │ └── udi_lib │ │ ├── core │ │ ├── attr.c │ │ ├── buf.c │ │ ├── cb.c │ │ ├── imc.c │ │ ├── layout.c │ │ ├── logging.c │ │ ├── mei.c │ │ ├── mem.c │ │ ├── meta_gio.c │ │ ├── meta_mgmt.c │ │ ├── queues.c │ │ ├── strmem.c │ │ └── time.c │ │ ├── physio.c │ │ ├── physio │ │ ├── dma.c │ │ ├── meta_bus.c │ │ └── pio.c │ │ ├── scsi.c │ │ └── udi_nic.c │ ├── Libraries │ ├── SunRPC │ │ └── proto.h │ └── VirtIO │ │ ├── Makefile │ │ ├── include │ │ ├── virtio.h │ │ └── virtio_hw.h │ │ └── virtio.c │ ├── Makefile.tpl │ ├── Network │ ├── E1000 │ │ ├── Makefile │ │ ├── e1000.c │ │ ├── e1000.h │ │ └── e1000_hw.h │ ├── Makefile.tpl │ ├── NE2000 │ │ ├── Makefile │ │ └── ne2000.c │ ├── PCnetFAST3 │ │ ├── Makefile │ │ ├── hw.h │ │ └── pcnet-fast3.c │ ├── PRO100 │ │ ├── Makefile │ │ ├── main.c │ │ ├── pro100.h │ │ └── pro100_hw.h │ ├── RTL8139 │ │ ├── Makefile │ │ └── rtl8139.c │ ├── RTL8169 │ │ ├── Makefile │ │ ├── rtl8169.c │ │ └── rtl8169.h │ ├── VIARhineII │ │ ├── Makefile │ │ ├── rhine2.c │ │ └── rhine2_hw.h │ └── VirtIONet │ │ ├── Makefile │ │ ├── virtio-net.c │ │ └── virtio-net.h │ ├── Sound │ └── SoundBlaster16 │ │ ├── Makefile │ │ ├── main.c │ │ └── sbdsp.txt │ ├── Storage │ ├── AHCI │ │ ├── Makefile │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── ahci_hw.h │ │ ├── ata.h │ │ └── sata.h │ ├── ATA │ │ ├── Makefile │ │ ├── common.h │ │ ├── io.c │ │ └── main.c │ ├── FDD │ │ ├── Makefile │ │ └── fdd.c │ ├── FDDv2 │ │ ├── Makefile │ │ ├── common.h │ │ ├── fdc.c │ │ └── main.c │ ├── LVM │ │ ├── Makefile │ │ ├── include │ │ │ └── lvm.h │ │ ├── lvm.h │ │ ├── lvm_int.h │ │ ├── main.c │ │ ├── mbr.c │ │ ├── mbr.h │ │ └── volumes.c │ └── Makefile.tpl │ ├── USB │ ├── Core │ │ ├── Makefile │ │ ├── hub.c │ │ ├── include │ │ │ ├── usb_core.h │ │ │ ├── usb_host.h │ │ │ └── usb_hub.h │ │ ├── main.c │ │ ├── portctl.c │ │ ├── usb.c │ │ ├── usb.h │ │ ├── usb_async.h │ │ ├── usb_devinit.c │ │ ├── usb_info.c │ │ ├── usb_io.c │ │ ├── usb_lowlevel.c │ │ ├── usb_lowlevel.h │ │ ├── usb_poll.c │ │ └── usb_proto.h │ ├── EHCI │ │ ├── Makefile │ │ ├── ehci.c │ │ ├── ehci.h │ │ └── ehci_hw.h │ ├── HID │ │ ├── Makefile │ │ ├── hid.h │ │ ├── hid_reports.h │ │ ├── keyboard.c │ │ ├── main.c │ │ └── mouse.c │ ├── MSC │ │ ├── Makefile │ │ ├── common.h │ │ ├── main.c │ │ ├── msc_proto.h │ │ ├── scsi.c │ │ └── scsi.h │ ├── Makefile.tpl │ ├── OHCI │ │ ├── Makefile │ │ ├── ohci.c │ │ └── ohci.h │ └── UHCI │ │ ├── Makefile │ │ ├── uhci.c │ │ └── uhci.h │ ├── armv7 │ ├── GIC │ │ ├── Makefile │ │ ├── gic.c │ │ └── gic.h │ └── Makefile.tpl │ ├── link.ld │ └── x86 │ ├── ISADMA │ ├── Makefile │ ├── dma.c │ └── include │ │ └── dma.h │ └── Makefile.tpl ├── MakeReleaseSet ├── Makefile ├── Makefile.Version.cfg ├── Makefile.cfg ├── Notes ├── 20120122-Events.txt ├── 20120204-RoutingNames.txt ├── 20130511-ptys.txt ├── 3D.txt ├── AcessFS.txt ├── AutoconfCrossCompiling.txt ├── SIF.txt ├── Spinlocks.txt ├── TODO ├── VBox_VGA.txt ├── VFS - Select.txt ├── VFS_MMap_Notes_20110711.txt ├── VTerm.txt └── VirtualPCI.txt ├── README ├── RunBochs ├── RunQemu ├── RunQemuArm ├── TODO.txt ├── Tools ├── BootFloppy │ ├── COPYING │ ├── MakeDiskImage │ ├── menu.lst │ ├── stage1 │ └── stage2 ├── DiskTool │ ├── Makefile │ ├── actions.c │ ├── helpers.c │ ├── include │ │ ├── acess.h │ │ ├── acess_logging.h │ │ ├── arch.h │ │ ├── disktool_common.h │ │ ├── modules.h │ │ ├── mutex.h │ │ └── rwlock.h │ ├── main.c │ ├── nativefs.c │ ├── script.c │ ├── testscript │ └── vfs_handles.c ├── GCCProxy │ ├── gccproxy.sh │ └── getconfig.mk ├── Makefile ├── NetTest │ ├── Makefile │ ├── cmdline_backend.c │ ├── helpers.c │ ├── include │ │ ├── cmdline.h │ │ ├── nettest.h │ │ └── tcpserver.h │ ├── logging.c │ ├── main.c │ ├── mode_cmdline.c │ ├── nic.c │ ├── tap.c │ ├── tcpclient.c │ ├── tcpserver.c │ └── vfs_shim.c ├── NetTest_Runner │ ├── Makefile │ ├── arp.c │ ├── include │ │ ├── arp.h │ │ ├── common.h │ │ ├── ip.h │ │ ├── link.h │ │ ├── net.h │ │ ├── stack.h │ │ ├── tcp.h │ │ ├── test.h │ │ └── tests.h │ ├── ip.c │ ├── link.c │ ├── main.c │ ├── net.c │ ├── stack.c │ ├── tcp.c │ ├── test_arp.c │ └── test_tcp.c ├── img2sif.c └── nativelib │ ├── Makefile │ ├── dummy_iocache.c │ ├── include │ ├── acess.h │ ├── acess_logging.h │ ├── arch.h │ ├── pthread_weak.h │ ├── shortlock.h │ └── threads_int.h │ ├── logging.c │ ├── misc.c │ ├── mutex.c │ ├── rwlock.c │ ├── semaphore.c │ ├── threads.c │ ├── threads_int.c │ └── time.c ├── UDI ├── Tools │ ├── udibuild.ini │ ├── udibuild_src │ │ ├── Makefile │ │ ├── build.c │ │ ├── include │ │ │ ├── build.h │ │ │ ├── common.h │ │ │ ├── inifile.h │ │ │ └── udiprops.h │ │ ├── inifile.c │ │ ├── main.c │ │ └── udiprops.c │ ├── udimkpkg │ ├── udisetup │ └── udisetup-ia32.ld ├── drivers │ ├── gfx_bochs │ │ ├── bochsga_common.h │ │ ├── bochsga_core.c │ │ ├── bochsga_engines.h │ │ ├── bochsga_pio.h │ │ └── udiprops.txt │ ├── helpers.h │ ├── helpers_gfx.h │ ├── net_ne2000 │ │ ├── ne2000_common.h │ │ ├── ne2000_core.c │ │ ├── ne2000_hw.h │ │ ├── ne2000_pio.h │ │ ├── ne2000_rx.c │ │ ├── ne2000_tx.c │ │ └── udiprops.txt │ └── uart_16c550 │ │ ├── uart16c550.c │ │ ├── uart16c550_common.h │ │ ├── uart16c550_pio.h │ │ └── udiprops.txt ├── gfx_spec_issues.txt └── include │ ├── physio │ ├── dma.h │ ├── dma_const.h │ ├── meta_bus.h │ ├── meta_intr.h │ ├── pci.h │ └── pio.h │ ├── udi.h │ ├── udi │ ├── arch │ │ ├── amd64.h │ │ └── ia32.h │ ├── attr.h │ ├── buf.h │ ├── cb.h │ ├── imc.h │ ├── init.h │ ├── log.h │ ├── mei.h │ ├── mem.h │ ├── meta_gio.h │ ├── meta_mgmt.h │ ├── queues.h │ ├── strmem.h │ └── time.h │ ├── udi_gfx.h │ ├── udi_gfx.h.ORIG │ ├── udi_nic.h │ ├── udi_pci.h │ ├── udi_physio.h │ └── udi_scsi.h ├── Usermode ├── Applications │ ├── CLIShell_src │ │ ├── Makefile │ │ ├── header.h │ │ ├── lib.c │ │ ├── main.c │ │ └── rules.mk │ ├── Makefile.cfg │ ├── Makefile.tpl │ ├── MultibootCheck_src │ │ ├── Makefile │ │ └── MultibootCheck.c │ ├── automounter_src │ │ ├── Makefile │ │ └── main.c │ ├── axwin3_src │ │ ├── AcessLogoSmall.sif │ │ ├── Interface │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── Makefile │ │ ├── Makefile.sdl │ │ ├── WM │ │ │ ├── Makefile │ │ │ ├── Makefile.sdl │ │ │ ├── common.mk │ │ │ ├── decorator.c │ │ │ ├── font_8x16.h │ │ │ ├── image.c │ │ │ ├── include │ │ │ │ ├── common.h │ │ │ │ ├── decorator.h │ │ │ │ ├── image.h │ │ │ │ ├── ipc_int.h │ │ │ │ ├── lowlevel.h │ │ │ │ ├── renderer_classful.h │ │ │ │ ├── renderer_widget.h │ │ │ │ ├── video.h │ │ │ │ ├── wm.h │ │ │ │ ├── wm_hotkeys.h │ │ │ │ ├── wm_input.h │ │ │ │ ├── wm_internals.h │ │ │ │ └── wm_renderer.h │ │ │ ├── input.c │ │ │ ├── input_SDL.c │ │ │ ├── ipc.c │ │ │ ├── ipc_acess.c │ │ │ ├── main.c │ │ │ ├── main_SDL.c │ │ │ ├── messageio.c │ │ │ ├── renderers │ │ │ │ ├── background.c │ │ │ │ ├── classes.c │ │ │ │ ├── framebuffer.c │ │ │ │ ├── menu.c │ │ │ │ ├── richtext.c │ │ │ │ ├── widget.c │ │ │ │ └── widget │ │ │ │ │ ├── button.c │ │ │ │ │ ├── colours.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── disptext.c │ │ │ │ │ ├── image.c │ │ │ │ │ ├── spacer.c │ │ │ │ │ ├── subwin.c │ │ │ │ │ └── textinput.c │ │ │ ├── resources │ │ │ │ ├── cursor.h │ │ │ │ ├── toolbar_new.png │ │ │ │ ├── toolbar_open.png │ │ │ │ └── toolbar_save.png │ │ │ ├── video.c │ │ │ ├── video_SDL.c │ │ │ ├── wm.c │ │ │ ├── wm_hotkeys.c │ │ │ ├── wm_input.c │ │ │ ├── wm_render.c │ │ │ └── wm_render_text.c │ │ ├── include │ │ │ ├── framebuffer_messages.h │ │ │ ├── ipcmessages.h │ │ │ ├── menu_messages.h │ │ │ ├── richtext_messages.h │ │ │ ├── widget_messages.h │ │ │ └── wm_messages.h │ │ ├── libaxwin3.so_src │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ ├── internal.h │ │ │ │ └── ipc.h │ │ │ ├── main.c │ │ │ ├── msg.c │ │ │ ├── r_menu.c │ │ │ ├── r_richtext.c │ │ │ ├── r_widget.c │ │ │ └── wm.c │ │ ├── notes.txt │ │ ├── notes │ │ │ └── menus.txt │ │ └── sdl.mk │ ├── axwin4_src │ │ ├── Common │ │ │ ├── include │ │ │ │ ├── ipc_proto.hpp │ │ │ │ └── serialisation.hpp │ │ │ └── serialisation.cpp │ │ ├── Makefile │ │ ├── Notes.txt │ │ ├── Server │ │ │ ├── CClient.cpp │ │ │ ├── CConfig.cpp │ │ │ ├── CIPCChannel_AcessIPCPipe.cpp │ │ │ ├── CRect.cpp │ │ │ ├── CSurface.cpp │ │ │ ├── CWindow.cpp │ │ │ ├── Makefile │ │ │ ├── compositor.cpp │ │ │ ├── draw_control.cpp │ │ │ ├── draw_text.cpp │ │ │ ├── include │ │ │ │ ├── CClient.hpp │ │ │ │ ├── CColour.hpp │ │ │ │ ├── CCompositor.hpp │ │ │ │ ├── CConfig.hpp │ │ │ │ ├── CConfigIPC.hpp │ │ │ │ ├── CConfigInput.hpp │ │ │ │ ├── CConfigVideo.hpp │ │ │ │ ├── CIPCChannel_AcessIPCPipe.hpp │ │ │ │ ├── CRect.hpp │ │ │ │ ├── CSurface.hpp │ │ │ │ ├── CWindow.hpp │ │ │ │ ├── IFontFace.hpp │ │ │ │ ├── IIPCChannel.hpp │ │ │ │ ├── IRegion.hpp │ │ │ │ ├── IVideo.hpp │ │ │ │ ├── IWindow.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── compositor.hpp │ │ │ │ ├── draw_control.hpp │ │ │ │ ├── draw_text.hpp │ │ │ │ ├── input.hpp │ │ │ │ ├── ipc.hpp │ │ │ │ ├── timing.hpp │ │ │ │ └── video.hpp │ │ │ ├── input.cpp │ │ │ ├── ipc.cpp │ │ │ ├── main.cpp │ │ │ ├── resources │ │ │ │ ├── cursor.h │ │ │ │ └── font_8x16.h │ │ │ ├── timing.cpp │ │ │ └── video.cpp │ │ └── UI │ │ │ ├── Makefile │ │ │ ├── include │ │ │ ├── common.h │ │ │ └── taskbar.h │ │ │ ├── main.c │ │ │ └── taskbar.c │ ├── bomb_src │ │ ├── Makefile │ │ └── main.c │ ├── cat_src │ │ ├── Makefile │ │ ├── main.c │ │ └── rules.mk │ ├── cpuid_src │ │ ├── Makefile │ │ └── main.c │ ├── dhcpclient_src │ │ ├── Makefile │ │ └── main.c │ ├── dnsresolve_src │ │ ├── Makefile │ │ └── main.c │ ├── edit_src │ │ ├── Makefile │ │ └── main.c │ ├── gui_ate_src │ │ ├── Makefile │ │ ├── edit.c │ │ ├── include │ │ │ ├── common.h │ │ │ ├── file.h │ │ │ └── syntax.h │ │ ├── main.c │ │ ├── strings.c │ │ ├── strings.h │ │ └── toolbar.c │ ├── gui_terminal_src │ │ ├── Makefile │ │ ├── UTEST │ │ │ ├── Makefile │ │ │ ├── TEST_vt100.c │ │ │ ├── test_common.c │ │ │ └── test_common.h │ │ ├── display.c │ │ ├── include │ │ │ ├── display.h │ │ │ └── vt100.h │ │ ├── main.c │ │ └── vt100.c │ ├── httpd_src │ │ ├── Makefile │ │ ├── cgi.c │ │ ├── http.c │ │ ├── include │ │ │ └── common.h │ │ ├── logging.c │ │ ├── main.c │ │ ├── net.c │ │ └── server.c │ ├── imageview_src │ │ ├── Makefile │ │ └── main.c │ ├── init_src │ │ ├── Makefile │ │ ├── common.h │ │ └── main.c │ ├── insmod_src │ │ ├── Makefile │ │ └── main.c │ ├── ip_src │ │ ├── Makefile │ │ ├── addr.c │ │ ├── common.h │ │ ├── main.c │ │ ├── routes.c │ │ └── rules.mk │ ├── irc_src │ │ ├── Makefile │ │ ├── common.h │ │ ├── input.c │ │ ├── input.h │ │ ├── main.c │ │ ├── message.h │ │ ├── pseudo_curses.c │ │ ├── pseudo_curses.h │ │ ├── server.c │ │ ├── server.h │ │ ├── window.c │ │ └── window.h │ ├── login_src │ │ ├── Makefile │ │ ├── database_tpl.c │ │ ├── header.h │ │ └── main.c │ ├── ls_src │ │ ├── Makefile │ │ ├── main.c │ │ └── rules.mk │ ├── lspci_src │ │ ├── Makefile │ │ └── main.c │ ├── mount_src │ │ ├── Makefile │ │ └── main.c │ ├── ping_src │ │ ├── Makefile │ │ └── main.c │ ├── rules.mk │ ├── telnet_src │ │ ├── Makefile │ │ └── main.c │ ├── telnetd_src │ │ ├── Makefile │ │ └── main.c │ ├── testclient_src │ │ ├── Makefile │ │ └── main.c │ ├── testserver_src │ │ ├── Makefile │ │ └── main.c │ ├── wget_src │ │ ├── Makefile │ │ └── main.c │ └── writetest_src │ │ ├── Makefile │ │ └── main.c ├── Filesystem │ ├── Conf │ │ ├── Auth │ │ │ ├── Groups │ │ │ ├── Passwords │ │ │ └── Users │ │ ├── BootConf.cfg │ │ └── inittab │ └── Makefile ├── Libraries │ ├── .gitignore │ ├── Makefile │ ├── Makefile.cfg │ ├── Makefile.tpl │ ├── _utest_include │ │ └── utest_common.h │ ├── crt0.o_src │ │ ├── Makefile │ │ ├── armv7-crti.S │ │ ├── armv7-crtn.S │ │ ├── crt0.c │ │ ├── crt0S.c │ │ ├── crtbegin.c │ │ ├── crtend.c │ │ ├── native-crti.S │ │ ├── native-crtn.S │ │ ├── rules.mk │ │ ├── x86-crti.S │ │ ├── x86-crtn.S │ │ ├── x86_64-crti.S │ │ └── x86_64-crtn.S │ ├── ld-acess.so_src │ │ ├── Makefile │ │ ├── _stublib.c │ │ ├── arch │ │ │ ├── .gitignore │ │ │ ├── armv6.S.h │ │ │ ├── armv6.ld │ │ │ ├── armv7.S.h │ │ │ ├── armv7.ld │ │ │ ├── syscalls.s.h │ │ │ ├── x86.asm.h │ │ │ ├── x86.ld │ │ │ ├── x86_64.asm.h │ │ │ └── x86_64.ld │ │ ├── common.h │ │ ├── elf.c │ │ ├── elf32.h │ │ ├── elf64.h │ │ ├── elf_impl.c │ │ ├── export.c │ │ ├── include_exp │ │ │ ├── acess │ │ │ │ ├── _native_syscallmod.h │ │ │ │ ├── devices.h │ │ │ │ ├── devices │ │ │ │ │ ├── joystick.h │ │ │ │ │ ├── pty.h │ │ │ │ │ ├── pty_cmds.h │ │ │ │ │ └── terminal.h │ │ │ │ ├── fd_set.h │ │ │ │ ├── sys.h │ │ │ │ └── syscall_types.h │ │ │ └── sys │ │ │ │ ├── basic_drivers.h │ │ │ │ └── param.h │ │ ├── lib.c │ │ ├── loadlib.c │ │ ├── main.c │ │ ├── pe.c │ │ ├── pe.h │ │ └── rules.mk │ ├── libacess-native.so_src │ │ └── Makefile │ ├── libaxwin3.so_src │ │ ├── Makefile │ │ └── include_exp │ │ │ └── axwin3 │ │ │ ├── axwin.h │ │ │ ├── keysyms.h │ │ │ ├── menu.h │ │ │ ├── richtext.h │ │ │ └── widget.h │ ├── libaxwin4.so_src │ │ ├── Makefile │ │ ├── include │ │ │ ├── CIPCChannel_AcessIPCPipe.hpp │ │ │ ├── IIPCChannel.hpp │ │ │ └── common.hpp │ │ ├── include_exp │ │ │ └── axwin4 │ │ │ │ ├── axwin.h │ │ │ │ └── definitions.h │ │ ├── ipc.cpp │ │ ├── ipc_acessipcpipe.cpp │ │ ├── main.c │ │ ├── window_drawing.cpp │ │ └── wm.cpp │ ├── libc++.so_src │ │ ├── Makefile │ │ ├── cxxabi.cc │ │ ├── exception_handling.cc │ │ ├── exception_handling_acxx.h │ │ ├── exception_handling_cxxabi.h │ │ ├── exceptions.cc │ │ ├── guard.cc │ │ ├── gxx_personality.cc │ │ ├── include_exp │ │ │ ├── _libcxx_helpers.h │ │ │ ├── algorithm │ │ │ ├── allocator │ │ │ ├── cassert │ │ │ ├── cerrno │ │ │ ├── cstddef │ │ │ ├── cstdint │ │ │ ├── cstdio │ │ │ ├── cstdlib │ │ │ ├── cstring │ │ │ ├── cxxabi.h │ │ │ ├── exception │ │ │ ├── functional │ │ │ ├── initializer_list │ │ │ ├── iterator │ │ │ ├── list │ │ │ ├── map │ │ │ ├── memory │ │ │ ├── mutex │ │ │ ├── new │ │ │ ├── stdexcept │ │ │ ├── string │ │ │ ├── system_error │ │ │ ├── type_traits │ │ │ ├── typeinfo │ │ │ ├── utility │ │ │ └── vector │ │ ├── misc.cc │ │ ├── mutex.cc │ │ ├── new.cc │ │ ├── string.cc │ │ ├── system_error.cc │ │ └── typeinfo.cc │ ├── libc++_extras.so_src │ │ ├── Makefile │ │ ├── TEST_cprintf.cpp │ │ └── include_exp │ │ │ └── cxxextras_printf │ ├── libc.so_src │ │ ├── .gitignore │ │ ├── EXP_strtoi.txt │ │ ├── Makefile │ │ ├── TEST_printf.c │ │ ├── TEST_string.c │ │ ├── TEST_strtoi.c │ │ ├── arch │ │ │ ├── armv6.S │ │ │ ├── armv7.S │ │ │ ├── native.S │ │ │ ├── native.asm │ │ │ ├── x86.asm │ │ │ └── x86_64.asm │ │ ├── config.h │ │ ├── crt0.asm │ │ ├── ctype.c │ │ ├── env.c │ │ ├── errno.c │ │ ├── heap.c │ │ ├── heap_native.c │ │ ├── include_exp │ │ │ ├── assert.h │ │ │ ├── ctype.h │ │ │ ├── errno.enum.h │ │ │ ├── errno.h │ │ │ ├── inttypes.h │ │ │ ├── locale.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── signal_list.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ └── time.h │ │ ├── lib.h │ │ ├── printf.c │ │ ├── rand.c │ │ ├── rules.mk │ │ ├── scanf.c │ │ ├── signals.c │ │ ├── sockets.c │ │ ├── stdio.c │ │ ├── stdio_files.c │ │ ├── stdio_int.h │ │ ├── stdlib.c │ │ ├── string.c │ │ ├── strtof.c │ │ ├── strtoi.c │ │ ├── stub.c │ │ ├── time.c │ │ ├── timeconv.c │ │ └── timeconv.h │ ├── libiconv.so_src │ │ ├── Makefile │ │ ├── iconv.c │ │ └── include_exp │ │ │ └── iconv.h │ ├── libimage.so_src │ │ └── include_exp │ │ │ └── image.h │ ├── libimage_sif.so_src │ │ ├── Makefile │ │ ├── main.c │ │ └── rules.mk │ ├── libintl.so_src │ │ ├── Makefile │ │ ├── gettext.c │ │ ├── include_exp │ │ │ └── libintl.h │ │ └── main.c │ ├── libm.so_src │ │ ├── Makefile │ │ ├── include_exp │ │ │ └── math.h │ │ ├── pow.c │ │ └── stub.c │ ├── libnet.so_src │ │ ├── Makefile │ │ ├── TEST_dns_proto.c │ │ ├── address.c │ │ ├── dns.c │ │ ├── dns_proto.c │ │ ├── hostnames.c │ │ ├── include │ │ │ ├── dns.h │ │ │ └── dns_int.h │ │ ├── include_exp │ │ │ └── net.h │ │ ├── main.c │ │ ├── rules.mk │ │ └── socket.c │ ├── libposix.so_src │ │ ├── Makefile │ │ ├── clocks.c │ │ ├── dirent.c │ │ ├── fcntl.c │ │ ├── getopt.c │ │ ├── grp.c │ │ ├── include_exp │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── grp.h │ │ │ ├── libposix_stdlib.h │ │ │ ├── libposix_time.h │ │ │ ├── pty.h │ │ │ ├── pwd.h │ │ │ ├── regex.h │ │ │ ├── strings.h │ │ │ ├── sys │ │ │ │ ├── ioctl.h │ │ │ │ ├── mman.h │ │ │ │ ├── resource.h │ │ │ │ ├── select.h │ │ │ │ ├── stat.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ └── wait.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ └── utmpx.h │ │ ├── main.c │ │ ├── mktemp.c │ │ ├── pty.c │ │ ├── pwd.c │ │ ├── stat.c │ │ ├── sys_ioctl.c │ │ ├── sys_resource.c │ │ ├── sys_time.c │ │ ├── sys_wait.c │ │ ├── syslog.c │ │ ├── termios.c │ │ ├── unistd.c │ │ ├── unistd_crypt.c │ │ ├── utime.c │ │ └── utmpx.c │ ├── libpsocket.so_src │ │ ├── Makefile │ │ ├── byteordering.c │ │ ├── common.h │ │ ├── getaddrinfo.c │ │ ├── include_exp │ │ │ ├── arpa │ │ │ │ └── inet.h │ │ │ ├── netdb.h │ │ │ ├── netinet │ │ │ │ ├── in.h │ │ │ │ ├── ip.h │ │ │ │ └── tcp.h │ │ │ └── sys │ │ │ │ ├── socket.h │ │ │ │ └── un.h │ │ ├── main.c │ │ ├── pton.c │ │ └── socket.c │ ├── libpthread.so_src │ │ ├── Makefile │ │ ├── include_exp │ │ │ ├── pthread.h │ │ │ └── sched.h │ │ ├── main.c │ │ └── thread.c │ ├── libreadline.so_src │ │ ├── Makefile │ │ ├── include_exp │ │ │ └── readline.h │ │ ├── main.c │ │ └── rules.mk │ ├── libresolv.so_src │ │ ├── Makefile │ │ ├── include_exp │ │ │ ├── arpa │ │ │ │ └── nameser.h │ │ │ └── resolv.h │ │ └── resolv.c │ ├── libunicode.so_src │ │ ├── Makefile │ │ ├── include_exp │ │ │ └── unicode.h │ │ ├── main.c │ │ └── utf-8.c │ ├── liburi.so_src │ │ ├── Makefile │ │ ├── include_exp │ │ │ └── uri.h │ │ ├── main.c │ │ └── rules.mk │ └── rules.mk ├── Makefile ├── Makefile.cfg ├── body.mk ├── common_settings.mk ├── footer.mk ├── header.mk └── rules.mk └── bochsrc.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/.travis.yml -------------------------------------------------------------------------------- /AcessNative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/.gitignore -------------------------------------------------------------------------------- /AcessNative/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/Makefile -------------------------------------------------------------------------------- /AcessNative/RunNative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/RunNative -------------------------------------------------------------------------------- /AcessNative/RunRootApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/RunRootApp -------------------------------------------------------------------------------- /AcessNative/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/RunTest -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/Details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/Details.txt -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/Makefile -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/helpers.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/include/arch.h -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/include/heap.h -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/include/proc.h -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/keyboard.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/main.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/mouse.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/nativefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/nativefs.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/net.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/net_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/net_wrap.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/net_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/net_wrap.h -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/server.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/syscalls.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/threads.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/threads_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/threads_glue.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/time.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/ui.h -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/ui_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/ui_sdl.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/vfs_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/vfs_handle.c -------------------------------------------------------------------------------- /AcessNative/acesskernel_src/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/acesskernel_src/video.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/Makefile -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/binary.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/common.h -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/elf.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/elf32.h: -------------------------------------------------------------------------------- 1 | #include "../../Usermode/Libraries/ld-acess.so_src/elf32.h" 2 | -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/elf64.h: -------------------------------------------------------------------------------- 1 | #include "../../Usermode/Libraries/ld-acess.so_src/elf64.h" 2 | -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/elf_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/elf_load.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/exports.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/exports.h -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/main.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/memory.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/request.c -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/request.h -------------------------------------------------------------------------------- /AcessNative/ld-acess_src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/ld-acess_src/syscalls.c -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/libacess-native.so_src/Makefile -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/libacess-native.so_src/common.h -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/libacess-native.so_src/heap.c -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/libacess-native.so_src/main.c -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/libacess-native.so_src/memory.c -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/request.c: -------------------------------------------------------------------------------- 1 | #include "../ld-acess_src/request.c" 2 | -------------------------------------------------------------------------------- /AcessNative/libacess-native.so_src/syscalls.c: -------------------------------------------------------------------------------- 1 | #include "../ld-acess_src/syscalls.c" 2 | -------------------------------------------------------------------------------- /AcessNative/symbol_renames.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/symbol_renames.ld -------------------------------------------------------------------------------- /AcessNative/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/syscalls.h -------------------------------------------------------------------------------- /AcessNative/syscalls_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/AcessNative/syscalls_list.h -------------------------------------------------------------------------------- /BuildAcessNative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildAcessNative -------------------------------------------------------------------------------- /BuildConf/armv6/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/armv6/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/armv6/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/armv6/default.mk -------------------------------------------------------------------------------- /BuildConf/armv6/raspberrypi.mk: -------------------------------------------------------------------------------- 1 | 2 | include $(ACESSDIR)/BuildConf/armv6/default.mk 3 | ARM_CPUNAME = arm1176jzf-s 4 | -------------------------------------------------------------------------------- /BuildConf/armv7/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/armv7/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/armv7/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/armv7/default.mk -------------------------------------------------------------------------------- /BuildConf/armv7/realview_pb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/armv7/realview_pb.mk -------------------------------------------------------------------------------- /BuildConf/armv7/tegra2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/armv7/tegra2.mk -------------------------------------------------------------------------------- /BuildConf/host/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/host/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/host/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/host/default.mk -------------------------------------------------------------------------------- /BuildConf/m68k/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/m68k/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/m68k/default.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BuildConf/native/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/native/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/native/default.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BuildConf/x86/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/x86/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/x86/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/x86/default.mk -------------------------------------------------------------------------------- /BuildConf/x86/smp.mk: -------------------------------------------------------------------------------- 1 | default.mk -------------------------------------------------------------------------------- /BuildConf/x86_64/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/x86_64/Makefile.cfg -------------------------------------------------------------------------------- /BuildConf/x86_64/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/BuildConf/x86_64/default.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/COPYING -------------------------------------------------------------------------------- /CleanAllArch: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for a in i386 x86_64 armv7 host; do echo $a; ARCH=$a make clean; done 3 | -------------------------------------------------------------------------------- /DoRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/DoRelease -------------------------------------------------------------------------------- /EditBoot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/EditBoot -------------------------------------------------------------------------------- /Externals/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/.gitignore -------------------------------------------------------------------------------- /Externals/ACPICA/.gitignore: -------------------------------------------------------------------------------- 1 | acpica-unix-* 2 | include 3 | -------------------------------------------------------------------------------- /Externals/ACPICA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/ACPICA/Makefile -------------------------------------------------------------------------------- /Externals/ACPICA/Makefile.kinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/ACPICA/Makefile.kinc -------------------------------------------------------------------------------- /Externals/ACPICA/acacess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/ACPICA/acacess.h -------------------------------------------------------------------------------- /Externals/bochs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/bochs/Makefile -------------------------------------------------------------------------------- /Externals/bochs/patches/config.h.in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/bochs/patches/config.h.in.patch -------------------------------------------------------------------------------- /Externals/bochs/patches/config.sub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/bochs/patches/config.sub.patch -------------------------------------------------------------------------------- /Externals/common_automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/common_automake.mk -------------------------------------------------------------------------------- /Externals/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/config.mk -------------------------------------------------------------------------------- /Externals/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/core.mk -------------------------------------------------------------------------------- /Externals/cross-compiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/cross-compiler/.gitignore -------------------------------------------------------------------------------- /Externals/cross-compiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/cross-compiler/Makefile -------------------------------------------------------------------------------- /Externals/cross-compiler/Makefile.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/cross-compiler/Makefile.common.mk -------------------------------------------------------------------------------- /Externals/cross-compiler/Makefile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/cross-compiler/Makefile.cross -------------------------------------------------------------------------------- /Externals/cross-compiler/Makefile.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/cross-compiler/Makefile.rules.mk -------------------------------------------------------------------------------- /Externals/cross-compiler/patches/gcc/gcc/config/acess2.opt: -------------------------------------------------------------------------------- 1 | ; Options for acess2 2 | 3 | pthread 4 | Driver 5 | 6 | ; 7 | -------------------------------------------------------------------------------- /Externals/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/curl/Makefile -------------------------------------------------------------------------------- /Externals/curl/patches/config.sub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/curl/patches/config.sub.patch -------------------------------------------------------------------------------- /Externals/dropbear/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/dropbear/Makefile -------------------------------------------------------------------------------- /Externals/dropbear/patches/config.sub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/dropbear/patches/config.sub.patch -------------------------------------------------------------------------------- /Externals/dropbear/patches/options.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/dropbear/patches/options.h.patch -------------------------------------------------------------------------------- /Externals/freetype/.gitignore: -------------------------------------------------------------------------------- 1 | freetype-* 2 | -------------------------------------------------------------------------------- /Externals/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/freetype/Makefile -------------------------------------------------------------------------------- /Externals/glib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/glib/Makefile -------------------------------------------------------------------------------- /Externals/glib/patches/config.sub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/glib/patches/config.sub.patch -------------------------------------------------------------------------------- /Externals/libpng/.gitignore: -------------------------------------------------------------------------------- 1 | libpng-* 2 | -------------------------------------------------------------------------------- /Externals/libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/libpng/Makefile -------------------------------------------------------------------------------- /Externals/libspiderscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/libspiderscript/Makefile -------------------------------------------------------------------------------- /Externals/mesa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/mesa/Makefile -------------------------------------------------------------------------------- /Externals/mesa/patches/bin/config.sub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/mesa/patches/bin/config.sub.patch -------------------------------------------------------------------------------- /Externals/mplayer/.gitignore: -------------------------------------------------------------------------------- 1 | MPlayer-* 2 | -------------------------------------------------------------------------------- /Externals/mplayer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/mplayer/Makefile -------------------------------------------------------------------------------- /Externals/netsurf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/netsurf/Makefile -------------------------------------------------------------------------------- /Externals/netsurf/patches/UNIFIED.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/netsurf/patches/UNIFIED.patch -------------------------------------------------------------------------------- /Externals/pkgconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/pkgconfig/Makefile -------------------------------------------------------------------------------- /Externals/sdl12/.gitignore: -------------------------------------------------------------------------------- 1 | SDL-* 2 | -------------------------------------------------------------------------------- /Externals/sdl12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/sdl12/Makefile -------------------------------------------------------------------------------- /Externals/sdl12/patches/configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/sdl12/patches/configure.patch -------------------------------------------------------------------------------- /Externals/vttest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/vttest/Makefile -------------------------------------------------------------------------------- /Externals/zlib/.gitignore: -------------------------------------------------------------------------------- 1 | zlib-* 2 | configure.log 3 | -------------------------------------------------------------------------------- /Externals/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Externals/zlib/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/.gitignore: -------------------------------------------------------------------------------- 1 | *.BuildNum.* 2 | -------------------------------------------------------------------------------- /KernelLand/Kernel/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/Doxyfile -------------------------------------------------------------------------------- /KernelLand/Kernel/Doxyfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/Doxyfile.api -------------------------------------------------------------------------------- /KernelLand/Kernel/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/DoxygenLayout.xml -------------------------------------------------------------------------------- /KernelLand/Kernel/GenSyscalls.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/GenSyscalls.pl -------------------------------------------------------------------------------- /KernelLand/Kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/adt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/adt.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/archdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/archdoc.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/debug.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/include/arch.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/include/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/include/lock.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/include/proc.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/lib.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/lib.S -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/lib.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/link.ld -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/main.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/mm_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/mm_phys.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/mm_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/mm_virt.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/pci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/proc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/proc.S -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/proc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/start.S -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv6/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv6/time.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/debug.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/include/arch.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/include/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/include/lock.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/include/proc.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/lib.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/lib.S -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/lib.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/link.ld -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/main.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/mm_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/mm_phys.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/mm_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/mm_virt.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/pci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/proc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/proc.S -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/proc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/start.S -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/time.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/armv7/vpci_tegra2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/armv7/vpci_tegra2.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/helpers.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/debug.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/include/arch.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/include/proc.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/lib.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/link.ld -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/main.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/mm_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/mm_phys.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/mm_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/mm_virt.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/proc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/m68k/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/m68k/time.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/acpica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/acpica.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/common.inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/common.inc.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/desctab.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/desctab.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/errors.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/include/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/include/apic.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/include/arch.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/include/proc.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/include/vm8086.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/include/vm8086.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/irq.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/kpanic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/kpanic.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/lib.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/link.ld -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/main.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/mboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/mboot.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/mm_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/mm_phys.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/mm_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/mm_virt.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/mptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/mptable.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/pci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/proc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/proc.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/proc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/start.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/time.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/validate_vmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/validate_vmem.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/vm8086.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/vm8086.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86/vpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86/vpci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/desctab.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/desctab.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/errors.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/kernelpanic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/kernelpanic.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/lib.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/link.ld -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/main.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/mm_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/mm_phys.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/mm_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/mm_virt.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/pci.c: -------------------------------------------------------------------------------- 1 | #include "../x86/pci.c" 2 | -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/proc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/proc.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/proc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/rme.c: -------------------------------------------------------------------------------- 1 | /home/tpg/Projects/RealmodeEmulator/src/rme.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/rme.h: -------------------------------------------------------------------------------- 1 | /home/tpg/Projects/RealmodeEmulator/src/rme.h -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/start32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/start32.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/start64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/start64.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/time.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/vm8086.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/vm8086.c -------------------------------------------------------------------------------- /KernelLand/Kernel/arch/x86_64/vpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/arch/x86_64/vpci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/bin/README -------------------------------------------------------------------------------- /KernelLand/Kernel/bin/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/bin/elf.c -------------------------------------------------------------------------------- /KernelLand/Kernel/bin/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/bin/elf.h -------------------------------------------------------------------------------- /KernelLand/Kernel/bin/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/bin/pe.c -------------------------------------------------------------------------------- /KernelLand/Kernel/bin/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/bin/pe.h -------------------------------------------------------------------------------- /KernelLand/Kernel/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/binary.c -------------------------------------------------------------------------------- /KernelLand/Kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/debug.c -------------------------------------------------------------------------------- /KernelLand/Kernel/debug_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/debug_hooks.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/Makefile -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/dgram_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/dgram_pipe.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/fifo.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/iocache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/iocache.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/meta_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/meta_serial.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/pci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/proc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/pty.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/serial.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/shm.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vpci.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm.h -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_2d.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_font.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_font_8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_font_8x16.h -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_font_8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_font_8x8.h -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_input.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_output.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_termbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_termbuf.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/vterm_vt100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/vterm_vt100.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drv/zero-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drv/zero-one.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drvutil_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drvutil_disk.c -------------------------------------------------------------------------------- /KernelLand/Kernel/drvutil_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/drvutil_video.c -------------------------------------------------------------------------------- /KernelLand/Kernel/emergency_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/emergency_console.c -------------------------------------------------------------------------------- /KernelLand/Kernel/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/events.c -------------------------------------------------------------------------------- /KernelLand/Kernel/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/heap.c -------------------------------------------------------------------------------- /KernelLand/Kernel/include/acess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/acess.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/acess_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/acess_string.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/adt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/adt.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/api_drv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/api_drv_common.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/api_drv_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/api_drv_disk.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/api_drv_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/api_drv_network.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/api_drv_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/api_drv_video.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/apidoc/arch_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/apidoc/arch_x86.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/apidoc_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/apidoc_mainpage.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/binary.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/binary_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/binary_ext.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/bootmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/bootmod.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/ctype.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/debug_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/debug_hooks.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/drv_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/drv_pci.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/drv_pci_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/drv_pci_int.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/drv_pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/drv_pty.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/drv_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/drv_serial.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/errno.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/events.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/fs_devfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/fs_devfs.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/fs_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/fs_sysfs.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/hal_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/hal_proc.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/heap.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/heap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/heap_int.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/init.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/iocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/iocache.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/keysyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/keysyms.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/lib/keyvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/lib/keyvalue.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/logdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/logdebug.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/mboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/mboot.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/memfs_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/memfs_helpers.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/meta_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/meta_serial.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/modules.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/mutex.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/pmemmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/pmemmap.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/posix_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/posix_signals.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/rwlock.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/semaphore.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/syscalls.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/syscalls.inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/syscalls.inc.asm -------------------------------------------------------------------------------- /KernelLand/Kernel/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/threads.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/threads_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/threads_int.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/timers.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/timers_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/timers_int.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/utf16.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/vfs.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/vfs_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/vfs_ext.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/vfs_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/vfs_int.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/vfs_ramfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/vfs_ramfs.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/vfs_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/vfs_threads.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/virtual_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/virtual_pci.h -------------------------------------------------------------------------------- /KernelLand/Kernel/include/workqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/include/workqueue.h -------------------------------------------------------------------------------- /KernelLand/Kernel/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/lib.c -------------------------------------------------------------------------------- /KernelLand/Kernel/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/libc.c -------------------------------------------------------------------------------- /KernelLand/Kernel/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/logging.c -------------------------------------------------------------------------------- /KernelLand/Kernel/memfs_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/memfs_helpers.c -------------------------------------------------------------------------------- /KernelLand/Kernel/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/messages.c -------------------------------------------------------------------------------- /KernelLand/Kernel/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/modules.c -------------------------------------------------------------------------------- /KernelLand/Kernel/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/mutex.c -------------------------------------------------------------------------------- /KernelLand/Kernel/pmemmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/pmemmap.c -------------------------------------------------------------------------------- /KernelLand/Kernel/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/rwlock.c -------------------------------------------------------------------------------- /KernelLand/Kernel/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/semaphore.c -------------------------------------------------------------------------------- /KernelLand/Kernel/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/syscalls.c -------------------------------------------------------------------------------- /KernelLand/Kernel/syscalls.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/syscalls.lst -------------------------------------------------------------------------------- /KernelLand/Kernel/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/system.c -------------------------------------------------------------------------------- /KernelLand/Kernel/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/threads.c -------------------------------------------------------------------------------- /KernelLand/Kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/time.c -------------------------------------------------------------------------------- /KernelLand/Kernel/utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/utf16.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/acls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/acls.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/dir.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/fs/devfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/fs/devfs.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/fs/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/fs/root.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/handle.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/io.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/main.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/memfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/memfile.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/mmap.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/mount.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/nodecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/nodecache.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/open.c -------------------------------------------------------------------------------- /KernelLand/Kernel/vfs/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/vfs/select.c -------------------------------------------------------------------------------- /KernelLand/Kernel/workqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Kernel/workqueue.c -------------------------------------------------------------------------------- /KernelLand/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Makefile.cfg -------------------------------------------------------------------------------- /KernelLand/Modules/Display/BochsGA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/BochsGA/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Display/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = Video 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /KernelLand/Modules/Display/NVidia/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/NVidia/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Display/NVidia/regs.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KernelLand/Modules/Display/NVidia/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/NVidia/regs.h -------------------------------------------------------------------------------- /KernelLand/Modules/Display/PL110/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = PL110 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Display/PL110/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/PL110/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Display/RPi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/RPi/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Display/Tegra2Vid/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = Tegra2Vid 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Display/Tegra2Vid/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/Tegra2Vid/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VESA/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = VESA 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VESA/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/VESA/common.h -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VESA/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/VESA/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VESA/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/VESA/vbe.h -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VGA/vgaregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/VGA/vgaregs.c -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VIAVideo/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = VIAVideo 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Display/VIAVideo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Display/VIAVideo/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/Ext2/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/Ext2/dir.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/Ext2/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/Ext2/ext2.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/Ext2/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/Ext2/read.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/Ext2/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/Ext2/write.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/FAT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/FAT/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/FAT/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/FAT/common.h -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/FAT/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/FAT/dir.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/FAT/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/FAT/fat.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/FAT/fatio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/FAT/fatio.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/FAT/fs_fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/FAT/fs_fat.h -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/InitRD/.gitignore: -------------------------------------------------------------------------------- 1 | files.*.c* 2 | generate_initrd 3 | -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/LEAN/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/LEAN/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = FS 2 | -include ../../Makefile.tpl 3 | -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NFS/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = NFS 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NFS/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NFS/common.h -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NFS/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NFS/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NTFS/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NTFS/dir.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NTFS/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NTFS/index.h -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NTFS/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NTFS/io.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NTFS/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NTFS/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Filesystems/NTFS/ntfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Filesystems/NTFS/ntfs.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/adapters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/adapters.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/arp.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/arp.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/buffer.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/firewall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/firewall.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/firewall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/firewall.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/hwaddr_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/hwaddr_cache.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/hwaddr_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/hwaddr_cache.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/icmp.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/icmp.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/icmpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/icmpv6.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/icmpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/icmpv6.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/include/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/include/buffer.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/init.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/interface.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/interface.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/ipstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/ipstack.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/ipv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/ipv4.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/ipv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/ipv4.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/ipv6.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/ipv6.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/link.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/link.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/routing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/routing.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/sctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/sctp.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/tcp.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/tcp.h -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/udp.c -------------------------------------------------------------------------------- /KernelLand/Modules/IPStack/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/IPStack/udp.h -------------------------------------------------------------------------------- /KernelLand/Modules/Input/Keyboard/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = Keyboard 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Input/Keyboard/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/Keyboard/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Input/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = Input 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /KernelLand/Modules/Input/Mouse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/Mouse/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Input/Mouse/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/Mouse/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Input/PS2KbMouse/8042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/PS2KbMouse/8042.c -------------------------------------------------------------------------------- /KernelLand/Modules/Input/PS2KbMouse/kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/PS2KbMouse/kb.c -------------------------------------------------------------------------------- /KernelLand/Modules/Input/PS2KbMouse/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/PS2KbMouse/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Input/PS2KbMouse/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Input/PS2KbMouse/pl050.c -------------------------------------------------------------------------------- /KernelLand/Modules/Interfaces/Makefile.tpl: -------------------------------------------------------------------------------- 1 | -include ../../Makefile.tpl 2 | -------------------------------------------------------------------------------- /KernelLand/Modules/Interfaces/UDI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Interfaces/UDI/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Interfaces/UDI/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Interfaces/UDI/Notes.txt -------------------------------------------------------------------------------- /KernelLand/Modules/Interfaces/UDI/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Interfaces/UDI/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Libraries/SunRPC/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Libraries/SunRPC/proto.h -------------------------------------------------------------------------------- /KernelLand/Modules/Makefile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Makefile.tpl -------------------------------------------------------------------------------- /KernelLand/Modules/Network/E1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/E1000/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Network/E1000/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/E1000/e1000.c -------------------------------------------------------------------------------- /KernelLand/Modules/Network/E1000/e1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/E1000/e1000.h -------------------------------------------------------------------------------- /KernelLand/Modules/Network/E1000/e1000_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/E1000/e1000_hw.h -------------------------------------------------------------------------------- /KernelLand/Modules/Network/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = Network 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /KernelLand/Modules/Network/NE2000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/NE2000/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Network/NE2000/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/NE2000/ne2000.c -------------------------------------------------------------------------------- /KernelLand/Modules/Network/PCnetFAST3/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/PCnetFAST3/hw.h -------------------------------------------------------------------------------- /KernelLand/Modules/Network/PRO100/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/PRO100/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Network/PRO100/pro100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/PRO100/pro100.h -------------------------------------------------------------------------------- /KernelLand/Modules/Network/RTL8139/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/RTL8139/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Network/RTL8169/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Network/RTL8169/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Sound/SoundBlaster16/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o 5 | NAME = SoundBlaster16 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/AHCI/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = ahci.o 5 | NAME = AHCI 6 | 7 | -include ../Makefile.tpl 8 | 9 | -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/AHCI/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/AHCI/ahci.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/AHCI/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/AHCI/ahci.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/AHCI/ahci_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/AHCI/ahci_hw.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/AHCI/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/AHCI/ata.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/AHCI/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/AHCI/sata.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/ATA/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = main.o io.o 5 | NAME = ATA 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/ATA/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/ATA/common.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/ATA/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/ATA/io.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/ATA/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/ATA/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/FDD/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | OBJ = fdd.o 5 | NAME = FDD 6 | 7 | -include ../Makefile.tpl 8 | -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/FDD/fdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/FDD/fdd.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/FDDv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/FDDv2/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/FDDv2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/FDDv2/common.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/FDDv2/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/FDDv2/fdc.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/FDDv2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/FDDv2/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/lvm.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/lvm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/lvm_int.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/mbr.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/mbr.h -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/LVM/volumes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/Storage/LVM/volumes.c -------------------------------------------------------------------------------- /KernelLand/Modules/Storage/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = Storage 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/hub.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/portctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/portctl.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_async.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_devinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_devinit.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_info.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_io.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_lowlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_lowlevel.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_lowlevel.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_poll.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Core/usb_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/Core/usb_proto.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/EHCI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/EHCI/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/USB/EHCI/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/EHCI/ehci.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/EHCI/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/EHCI/ehci.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/EHCI/ehci_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/EHCI/ehci_hw.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/HID/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/HID/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/USB/HID/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/HID/hid.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/HID/hid_reports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/HID/hid_reports.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/HID/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/HID/keyboard.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/HID/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/HID/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/HID/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/HID/mouse.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/MSC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/MSC/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/USB/MSC/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/MSC/common.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/MSC/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/MSC/main.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/MSC/msc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/MSC/msc_proto.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/MSC/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/MSC/scsi.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/MSC/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/MSC/scsi.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = USB 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /KernelLand/Modules/USB/OHCI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/OHCI/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/USB/OHCI/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/OHCI/ohci.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/OHCI/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/OHCI/ohci.h -------------------------------------------------------------------------------- /KernelLand/Modules/USB/UHCI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/UHCI/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/USB/UHCI/uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/UHCI/uhci.c -------------------------------------------------------------------------------- /KernelLand/Modules/USB/UHCI/uhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/USB/UHCI/uhci.h -------------------------------------------------------------------------------- /KernelLand/Modules/armv7/GIC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/armv7/GIC/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/armv7/GIC/gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/armv7/GIC/gic.c -------------------------------------------------------------------------------- /KernelLand/Modules/armv7/GIC/gic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/armv7/GIC/gic.h -------------------------------------------------------------------------------- /KernelLand/Modules/armv7/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = armv7 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /KernelLand/Modules/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/link.ld -------------------------------------------------------------------------------- /KernelLand/Modules/x86/ISADMA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/x86/ISADMA/Makefile -------------------------------------------------------------------------------- /KernelLand/Modules/x86/ISADMA/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/x86/ISADMA/dma.c -------------------------------------------------------------------------------- /KernelLand/Modules/x86/ISADMA/include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/KernelLand/Modules/x86/ISADMA/include/dma.h -------------------------------------------------------------------------------- /KernelLand/Modules/x86/Makefile.tpl: -------------------------------------------------------------------------------- 1 | CATEGORY = x86 2 | 3 | -include ../../Makefile.tpl 4 | -------------------------------------------------------------------------------- /MakeReleaseSet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/MakeReleaseSet -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.Version.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Makefile.Version.cfg -------------------------------------------------------------------------------- /Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Makefile.cfg -------------------------------------------------------------------------------- /Notes/20120122-Events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/20120122-Events.txt -------------------------------------------------------------------------------- /Notes/20120204-RoutingNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/20120204-RoutingNames.txt -------------------------------------------------------------------------------- /Notes/20130511-ptys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/20130511-ptys.txt -------------------------------------------------------------------------------- /Notes/3D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/3D.txt -------------------------------------------------------------------------------- /Notes/AcessFS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/AcessFS.txt -------------------------------------------------------------------------------- /Notes/AutoconfCrossCompiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/AutoconfCrossCompiling.txt -------------------------------------------------------------------------------- /Notes/SIF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/SIF.txt -------------------------------------------------------------------------------- /Notes/Spinlocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/Spinlocks.txt -------------------------------------------------------------------------------- /Notes/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/TODO -------------------------------------------------------------------------------- /Notes/VBox_VGA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/VBox_VGA.txt -------------------------------------------------------------------------------- /Notes/VFS - Select.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/VFS - Select.txt -------------------------------------------------------------------------------- /Notes/VFS_MMap_Notes_20110711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/VFS_MMap_Notes_20110711.txt -------------------------------------------------------------------------------- /Notes/VTerm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/VTerm.txt -------------------------------------------------------------------------------- /Notes/VirtualPCI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Notes/VirtualPCI.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/README -------------------------------------------------------------------------------- /RunBochs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/RunBochs -------------------------------------------------------------------------------- /RunQemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/RunQemu -------------------------------------------------------------------------------- /RunQemuArm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/RunQemuArm -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/TODO.txt -------------------------------------------------------------------------------- /Tools/BootFloppy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/BootFloppy/COPYING -------------------------------------------------------------------------------- /Tools/BootFloppy/MakeDiskImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/BootFloppy/MakeDiskImage -------------------------------------------------------------------------------- /Tools/BootFloppy/menu.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/BootFloppy/menu.lst -------------------------------------------------------------------------------- /Tools/BootFloppy/stage1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/BootFloppy/stage1 -------------------------------------------------------------------------------- /Tools/BootFloppy/stage2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/BootFloppy/stage2 -------------------------------------------------------------------------------- /Tools/DiskTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/Makefile -------------------------------------------------------------------------------- /Tools/DiskTool/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/actions.c -------------------------------------------------------------------------------- /Tools/DiskTool/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/helpers.c -------------------------------------------------------------------------------- /Tools/DiskTool/include/acess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/include/acess.h -------------------------------------------------------------------------------- /Tools/DiskTool/include/acess_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/include/acess_logging.h -------------------------------------------------------------------------------- /Tools/DiskTool/include/arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/DiskTool/include/disktool_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/include/disktool_common.h -------------------------------------------------------------------------------- /Tools/DiskTool/include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/include/modules.h -------------------------------------------------------------------------------- /Tools/DiskTool/include/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/include/mutex.h -------------------------------------------------------------------------------- /Tools/DiskTool/include/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/include/rwlock.h -------------------------------------------------------------------------------- /Tools/DiskTool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/main.c -------------------------------------------------------------------------------- /Tools/DiskTool/nativefs.c: -------------------------------------------------------------------------------- 1 | ../../AcessNative/acesskernel_src/nativefs.c -------------------------------------------------------------------------------- /Tools/DiskTool/script.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/DiskTool/testscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/testscript -------------------------------------------------------------------------------- /Tools/DiskTool/vfs_handles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/DiskTool/vfs_handles.c -------------------------------------------------------------------------------- /Tools/GCCProxy/gccproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/GCCProxy/gccproxy.sh -------------------------------------------------------------------------------- /Tools/GCCProxy/getconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/GCCProxy/getconfig.mk -------------------------------------------------------------------------------- /Tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/Makefile -------------------------------------------------------------------------------- /Tools/NetTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/Makefile -------------------------------------------------------------------------------- /Tools/NetTest/cmdline_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/cmdline_backend.c -------------------------------------------------------------------------------- /Tools/NetTest/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/helpers.c -------------------------------------------------------------------------------- /Tools/NetTest/include/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/include/cmdline.h -------------------------------------------------------------------------------- /Tools/NetTest/include/nettest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/include/nettest.h -------------------------------------------------------------------------------- /Tools/NetTest/include/tcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/include/tcpserver.h -------------------------------------------------------------------------------- /Tools/NetTest/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/logging.c -------------------------------------------------------------------------------- /Tools/NetTest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/main.c -------------------------------------------------------------------------------- /Tools/NetTest/mode_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/mode_cmdline.c -------------------------------------------------------------------------------- /Tools/NetTest/nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/nic.c -------------------------------------------------------------------------------- /Tools/NetTest/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/tap.c -------------------------------------------------------------------------------- /Tools/NetTest/tcpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/tcpclient.c -------------------------------------------------------------------------------- /Tools/NetTest/tcpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/tcpserver.c -------------------------------------------------------------------------------- /Tools/NetTest/vfs_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest/vfs_shim.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/Makefile -------------------------------------------------------------------------------- /Tools/NetTest_Runner/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/arp.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/arp.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/common.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/ip.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/link.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/net.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/stack.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/tcp.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/test.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/include/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/include/tests.h -------------------------------------------------------------------------------- /Tools/NetTest_Runner/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/ip.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/link.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/main.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/net.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/stack.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/tcp.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/test_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/test_arp.c -------------------------------------------------------------------------------- /Tools/NetTest_Runner/test_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/NetTest_Runner/test_tcp.c -------------------------------------------------------------------------------- /Tools/img2sif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/img2sif.c -------------------------------------------------------------------------------- /Tools/nativelib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/Makefile -------------------------------------------------------------------------------- /Tools/nativelib/dummy_iocache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/dummy_iocache.c -------------------------------------------------------------------------------- /Tools/nativelib/include/acess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/include/acess.h -------------------------------------------------------------------------------- /Tools/nativelib/include/acess_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/include/acess_logging.h -------------------------------------------------------------------------------- /Tools/nativelib/include/arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/nativelib/include/pthread_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/include/pthread_weak.h -------------------------------------------------------------------------------- /Tools/nativelib/include/shortlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/include/shortlock.h -------------------------------------------------------------------------------- /Tools/nativelib/include/threads_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/include/threads_int.h -------------------------------------------------------------------------------- /Tools/nativelib/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/logging.c -------------------------------------------------------------------------------- /Tools/nativelib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/misc.c -------------------------------------------------------------------------------- /Tools/nativelib/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/mutex.c -------------------------------------------------------------------------------- /Tools/nativelib/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/rwlock.c -------------------------------------------------------------------------------- /Tools/nativelib/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/semaphore.c -------------------------------------------------------------------------------- /Tools/nativelib/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/threads.c -------------------------------------------------------------------------------- /Tools/nativelib/threads_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/threads_int.c -------------------------------------------------------------------------------- /Tools/nativelib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Tools/nativelib/time.c -------------------------------------------------------------------------------- /UDI/Tools/udibuild.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild.ini -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/Makefile -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/build.c -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/include/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/include/build.h -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/include/common.h -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/include/inifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/include/inifile.h -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/include/udiprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/include/udiprops.h -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/inifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/inifile.c -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/main.c -------------------------------------------------------------------------------- /UDI/Tools/udibuild_src/udiprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udibuild_src/udiprops.c -------------------------------------------------------------------------------- /UDI/Tools/udimkpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udimkpkg -------------------------------------------------------------------------------- /UDI/Tools/udisetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udisetup -------------------------------------------------------------------------------- /UDI/Tools/udisetup-ia32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/Tools/udisetup-ia32.ld -------------------------------------------------------------------------------- /UDI/drivers/gfx_bochs/bochsga_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/gfx_bochs/bochsga_common.h -------------------------------------------------------------------------------- /UDI/drivers/gfx_bochs/bochsga_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/gfx_bochs/bochsga_core.c -------------------------------------------------------------------------------- /UDI/drivers/gfx_bochs/bochsga_engines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/gfx_bochs/bochsga_engines.h -------------------------------------------------------------------------------- /UDI/drivers/gfx_bochs/bochsga_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/gfx_bochs/bochsga_pio.h -------------------------------------------------------------------------------- /UDI/drivers/gfx_bochs/udiprops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/gfx_bochs/udiprops.txt -------------------------------------------------------------------------------- /UDI/drivers/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/helpers.h -------------------------------------------------------------------------------- /UDI/drivers/helpers_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/helpers_gfx.h -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/ne2000_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/ne2000_common.h -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/ne2000_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/ne2000_core.c -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/ne2000_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/ne2000_hw.h -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/ne2000_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/ne2000_pio.h -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/ne2000_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/ne2000_rx.c -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/ne2000_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/ne2000_tx.c -------------------------------------------------------------------------------- /UDI/drivers/net_ne2000/udiprops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/net_ne2000/udiprops.txt -------------------------------------------------------------------------------- /UDI/drivers/uart_16c550/uart16c550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/uart_16c550/uart16c550.c -------------------------------------------------------------------------------- /UDI/drivers/uart_16c550/uart16c550_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/uart_16c550/uart16c550_common.h -------------------------------------------------------------------------------- /UDI/drivers/uart_16c550/uart16c550_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/uart_16c550/uart16c550_pio.h -------------------------------------------------------------------------------- /UDI/drivers/uart_16c550/udiprops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/drivers/uart_16c550/udiprops.txt -------------------------------------------------------------------------------- /UDI/gfx_spec_issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/gfx_spec_issues.txt -------------------------------------------------------------------------------- /UDI/include/physio/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/physio/dma.h -------------------------------------------------------------------------------- /UDI/include/physio/dma_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/physio/dma_const.h -------------------------------------------------------------------------------- /UDI/include/physio/meta_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/physio/meta_bus.h -------------------------------------------------------------------------------- /UDI/include/physio/meta_intr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/physio/meta_intr.h -------------------------------------------------------------------------------- /UDI/include/physio/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/physio/pci.h -------------------------------------------------------------------------------- /UDI/include/physio/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/physio/pio.h -------------------------------------------------------------------------------- /UDI/include/udi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi.h -------------------------------------------------------------------------------- /UDI/include/udi/arch/amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/arch/amd64.h -------------------------------------------------------------------------------- /UDI/include/udi/arch/ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/arch/ia32.h -------------------------------------------------------------------------------- /UDI/include/udi/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/attr.h -------------------------------------------------------------------------------- /UDI/include/udi/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/buf.h -------------------------------------------------------------------------------- /UDI/include/udi/cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/cb.h -------------------------------------------------------------------------------- /UDI/include/udi/imc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/imc.h -------------------------------------------------------------------------------- /UDI/include/udi/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/init.h -------------------------------------------------------------------------------- /UDI/include/udi/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/log.h -------------------------------------------------------------------------------- /UDI/include/udi/mei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/mei.h -------------------------------------------------------------------------------- /UDI/include/udi/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/mem.h -------------------------------------------------------------------------------- /UDI/include/udi/meta_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/meta_gio.h -------------------------------------------------------------------------------- /UDI/include/udi/meta_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/meta_mgmt.h -------------------------------------------------------------------------------- /UDI/include/udi/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/queues.h -------------------------------------------------------------------------------- /UDI/include/udi/strmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/strmem.h -------------------------------------------------------------------------------- /UDI/include/udi/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi/time.h -------------------------------------------------------------------------------- /UDI/include/udi_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi_gfx.h -------------------------------------------------------------------------------- /UDI/include/udi_gfx.h.ORIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi_gfx.h.ORIG -------------------------------------------------------------------------------- /UDI/include/udi_nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi_nic.h -------------------------------------------------------------------------------- /UDI/include/udi_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi_pci.h -------------------------------------------------------------------------------- /UDI/include/udi_physio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi_physio.h -------------------------------------------------------------------------------- /UDI/include/udi_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/UDI/include/udi_scsi.h -------------------------------------------------------------------------------- /Usermode/Applications/CLIShell_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/CLIShell_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/CLIShell_src/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/CLIShell_src/header.h -------------------------------------------------------------------------------- /Usermode/Applications/CLIShell_src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/CLIShell_src/lib.c -------------------------------------------------------------------------------- /Usermode/Applications/CLIShell_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/CLIShell_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/CLIShell_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/CLIShell_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Applications/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/Makefile.cfg -------------------------------------------------------------------------------- /Usermode/Applications/Makefile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/Makefile.tpl -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/Makefile.sdl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/WM/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/WM/image.c -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/WM/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/WM/input.c -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/WM/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/WM/ipc.c -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/WM/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/WM/main.c -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/WM/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/WM/video.c -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/WM/wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/WM/wm.c -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/notes.txt -------------------------------------------------------------------------------- /Usermode/Applications/axwin3_src/sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin3_src/sdl.mk -------------------------------------------------------------------------------- /Usermode/Applications/axwin4_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin4_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/axwin4_src/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin4_src/Notes.txt -------------------------------------------------------------------------------- /Usermode/Applications/axwin4_src/UI/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/axwin4_src/UI/main.c -------------------------------------------------------------------------------- /Usermode/Applications/bomb_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/bomb_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/bomb_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/bomb_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/cat_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/cat_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/cat_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/cat_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/cat_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/cat_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Applications/cpuid_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/cpuid_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/cpuid_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/cpuid_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/dhcpclient_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/dhcpclient_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/dnsresolve_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/dnsresolve_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/edit_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/edit_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/edit_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/edit_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/gui_ate_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/gui_ate_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/gui_ate_src/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/gui_ate_src/edit.c -------------------------------------------------------------------------------- /Usermode/Applications/gui_ate_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/gui_ate_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/gui_ate_src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/gui_ate_src/strings.c -------------------------------------------------------------------------------- /Usermode/Applications/gui_ate_src/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/gui_ate_src/strings.h -------------------------------------------------------------------------------- /Usermode/Applications/gui_ate_src/toolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/gui_ate_src/toolbar.c -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/httpd_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/cgi.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/http.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/include/common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/logging.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/net.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/httpd_src/server.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Applications/imageview_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/imageview_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/init_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/init_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/init_src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/init_src/common.h -------------------------------------------------------------------------------- /Usermode/Applications/init_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/init_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/insmod_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/insmod_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/insmod_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/insmod_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/ip_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ip_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/ip_src/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ip_src/addr.c -------------------------------------------------------------------------------- /Usermode/Applications/ip_src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ip_src/common.h -------------------------------------------------------------------------------- /Usermode/Applications/ip_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ip_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/ip_src/routes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ip_src/routes.c -------------------------------------------------------------------------------- /Usermode/Applications/ip_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ip_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/common.h -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/input.c -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/input.h -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/message.h -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/server.c -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/server.h -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/window.c -------------------------------------------------------------------------------- /Usermode/Applications/irc_src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/irc_src/window.h -------------------------------------------------------------------------------- /Usermode/Applications/login_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/login_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/login_src/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/login_src/header.h -------------------------------------------------------------------------------- /Usermode/Applications/login_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/login_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/ls_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ls_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/ls_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ls_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/ls_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ls_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Applications/lspci_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/lspci_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/lspci_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/lspci_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/mount_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/mount_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/mount_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/mount_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/ping_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ping_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/ping_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/ping_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/rules.mk -------------------------------------------------------------------------------- /Usermode/Applications/telnet_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/telnet_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/telnet_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/telnet_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/telnetd_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/telnetd_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/telnetd_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/telnetd_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/testclient_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/testclient_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/testserver_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/testserver_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/wget_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/wget_src/Makefile -------------------------------------------------------------------------------- /Usermode/Applications/wget_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/wget_src/main.c -------------------------------------------------------------------------------- /Usermode/Applications/writetest_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Applications/writetest_src/main.c -------------------------------------------------------------------------------- /Usermode/Filesystem/Conf/Auth/Groups: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Filesystem/Conf/Auth/Passwords: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Filesystem/Conf/Auth/Users: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Filesystem/Conf/BootConf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Filesystem/Conf/BootConf.cfg -------------------------------------------------------------------------------- /Usermode/Filesystem/Conf/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Filesystem/Conf/inittab -------------------------------------------------------------------------------- /Usermode/Filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Filesystem/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/.gitignore -------------------------------------------------------------------------------- /Usermode/Libraries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/Makefile.cfg -------------------------------------------------------------------------------- /Usermode/Libraries/Makefile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/Makefile.tpl -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/armv7-crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/armv7-crti.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/armv7-crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/armv7-crtn.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/crt0.c -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/crt0S.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/crt0S.c -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/crtbegin.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/crtend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/crtend.c -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/native-crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/native-crti.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/native-crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/native-crtn.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/x86-crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/x86-crti.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/x86-crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/x86-crtn.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/x86_64-crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/x86_64-crti.S -------------------------------------------------------------------------------- /Usermode/Libraries/crt0.o_src/x86_64-crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/crt0.o_src/x86_64-crtn.S -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/arch/.gitignore: -------------------------------------------------------------------------------- 1 | x86.asm 2 | -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/common.h -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/elf.c -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/elf32.h -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/elf64.h -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/export.c -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/lib.c -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/main.c -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/pe.c -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/pe.h -------------------------------------------------------------------------------- /Usermode/Libraries/ld-acess.so_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/ld-acess.so_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Libraries/libaxwin4.so_src/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libaxwin4.so_src/ipc.cpp -------------------------------------------------------------------------------- /Usermode/Libraries/libaxwin4.so_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libaxwin4.so_src/main.c -------------------------------------------------------------------------------- /Usermode/Libraries/libaxwin4.so_src/wm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libaxwin4.so_src/wm.cpp -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/cxxabi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/cxxabi.cc -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/guard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/guard.cc -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/include_exp/cassert: -------------------------------------------------------------------------------- 1 | extern "C" { 2 | #include 3 | } 4 | -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/include_exp/cerrno: -------------------------------------------------------------------------------- 1 | /* 2 | */ 3 | extern "C" { 4 | #include 5 | } 6 | // vim: ft=cpp 7 | -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/include_exp/cstdio: -------------------------------------------------------------------------------- 1 | /* 2 | */ 3 | extern "C" { 4 | #include 5 | } 6 | // vim: ft=cpp 7 | -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/misc.cc -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/mutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/mutex.cc -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/new.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/new.cc -------------------------------------------------------------------------------- /Usermode/Libraries/libc++.so_src/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc++.so_src/string.cc -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/.gitignore: -------------------------------------------------------------------------------- 1 | EXP_printf.txt 2 | -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/EXP_strtoi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/arch/armv6.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/arch/armv6.S -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/arch/native.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/config.h -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/crt0.asm -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/ctype.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/env.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/errno.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/heap.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/lib.h -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/printf.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/rand.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/scanf.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/signals.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/sockets.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/stdio.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/stdlib.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/string.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/strtof.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/strtoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/strtoi.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/stub.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/time.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/timeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/timeconv.c -------------------------------------------------------------------------------- /Usermode/Libraries/libc.so_src/timeconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libc.so_src/timeconv.h -------------------------------------------------------------------------------- /Usermode/Libraries/libintl.so_src/main.c: -------------------------------------------------------------------------------- 1 | /* 2 | */ 3 | 4 | int SoMain(void) 5 | { 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /Usermode/Libraries/libm.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libm.so_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/libm.so_src/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libm.so_src/pow.c -------------------------------------------------------------------------------- /Usermode/Libraries/libm.so_src/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libm.so_src/stub.c -------------------------------------------------------------------------------- /Usermode/Libraries/libnet.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libnet.so_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/libnet.so_src/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libnet.so_src/dns.c -------------------------------------------------------------------------------- /Usermode/Libraries/libnet.so_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libnet.so_src/main.c -------------------------------------------------------------------------------- /Usermode/Libraries/libnet.so_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libnet.so_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Libraries/libnet.so_src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libnet.so_src/socket.c -------------------------------------------------------------------------------- /Usermode/Libraries/libposix.so_src/grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libposix.so_src/grp.c -------------------------------------------------------------------------------- /Usermode/Libraries/libposix.so_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libposix.so_src/main.c -------------------------------------------------------------------------------- /Usermode/Libraries/libposix.so_src/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libposix.so_src/pty.c -------------------------------------------------------------------------------- /Usermode/Libraries/libposix.so_src/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libposix.so_src/pwd.c -------------------------------------------------------------------------------- /Usermode/Libraries/libposix.so_src/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/libposix.so_src/stat.c -------------------------------------------------------------------------------- /Usermode/Libraries/libpthread.so_src/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Libraries/liburi.so_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/liburi.so_src/Makefile -------------------------------------------------------------------------------- /Usermode/Libraries/liburi.so_src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/liburi.so_src/main.c -------------------------------------------------------------------------------- /Usermode/Libraries/liburi.so_src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/liburi.so_src/rules.mk -------------------------------------------------------------------------------- /Usermode/Libraries/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Libraries/rules.mk -------------------------------------------------------------------------------- /Usermode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Makefile -------------------------------------------------------------------------------- /Usermode/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/Makefile.cfg -------------------------------------------------------------------------------- /Usermode/body.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/body.mk -------------------------------------------------------------------------------- /Usermode/common_settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/common_settings.mk -------------------------------------------------------------------------------- /Usermode/footer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/footer.mk -------------------------------------------------------------------------------- /Usermode/header.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/header.mk -------------------------------------------------------------------------------- /Usermode/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/Usermode/rules.mk -------------------------------------------------------------------------------- /bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepowersgang/acess2/HEAD/bochsrc.txt --------------------------------------------------------------------------------