├── .gitattributes ├── .gitignore ├── Command.mk ├── Documentation ├── AddressSpace.txt ├── DLLBases.txt ├── IPCSummary.md └── OSLoader.md ├── ExecManifest ├── ExecManifest.XRstation ├── ExecManifest.fox32 ├── LICENSE ├── Makefile ├── OS ├── AMS │ ├── Client │ │ ├── API.df │ │ ├── AmsClient.h │ │ ├── Enumerate.df │ │ ├── Init.df │ │ └── Makefile │ ├── Server │ │ ├── AmsServer.h │ │ ├── Client.df │ │ ├── Create.df │ │ ├── Enumerate.df │ │ ├── Logon.df │ │ ├── Main.df │ │ ├── Makefile │ │ ├── Query.df │ │ ├── README │ │ └── UserDb.df │ └── include │ │ └── AmsAPI.h ├── BootDrivers │ ├── AisixFS │ │ ├── AFSBlock.df │ │ ├── AFSDirectory.df │ │ ├── AFSINode.df │ │ ├── AFSOpenClose.df │ │ ├── AFSParseDelete.df │ │ ├── AFSReadWrite.df │ │ ├── AFSTruncate.df │ │ ├── AisixFS.h │ │ ├── DriverAisixFS.df │ │ └── Makefile │ ├── AnalogClockTest │ │ ├── DriverAnalogClockTest.df │ │ └── Makefile │ ├── Fat │ │ ├── DriverFat.df │ │ ├── Fat.h │ │ ├── FatBlock.df │ │ ├── FatDirectory.df │ │ ├── FatFile.df │ │ ├── FatOpenClose.df │ │ ├── FatParseDelete.df │ │ ├── FatReadWrite.df │ │ ├── FatTruncate.df │ │ ├── FatUtil.df │ │ └── Makefile │ ├── RyFS │ │ ├── DriverRyFS.df │ │ ├── Makefile │ │ ├── README │ │ └── RyFS.h │ ├── XRstation │ │ ├── EBus │ │ │ ├── DriverDKS.df │ │ │ ├── DriverEBus.df │ │ │ ├── DriverRTC.df │ │ │ ├── DriverSerial.df │ │ │ ├── DriverSystem.df │ │ │ └── Makefile │ │ ├── Keyboard │ │ │ ├── DriverKeyboard.df │ │ │ └── Makefile │ │ ├── KinnowFB │ │ │ ├── DriverKinnowFB.df │ │ │ └── Makefile │ │ └── Mouse │ │ │ ├── DriverMouse.df │ │ │ └── Makefile │ └── fox32 │ │ └── foxmobo │ │ ├── DriverFoxMobo.df │ │ ├── FoxDisk.df │ │ ├── FoxFramebuffer.df │ │ ├── FoxKeyboard.df │ │ ├── FoxMouse.df │ │ └── Makefile ├── Commands │ ├── aptdisk │ │ ├── IDisk.df │ │ ├── Main.df │ │ ├── Makefile │ │ ├── Partition.df │ │ └── Prompt.df │ ├── cat │ │ ├── Main.df │ │ └── Makefile │ ├── chgrp │ │ ├── Main.df │ │ └── Makefile │ ├── chmod │ │ ├── Main.df │ │ └── Makefile │ ├── chown │ │ ├── Main.df │ │ └── Makefile │ ├── clear │ │ ├── Main.df │ │ └── Makefile │ ├── cmd │ │ ├── Main.df │ │ └── Makefile │ ├── cp │ │ ├── Main.df │ │ └── Makefile │ ├── crypt │ │ ├── Main.df │ │ └── Makefile │ ├── date │ │ ├── Main.df │ │ └── Makefile │ ├── dd │ │ ├── Main.df │ │ └── Makefile │ ├── dhrystone │ │ ├── Main.df │ │ └── Makefile │ ├── echo │ │ ├── Main.df │ │ └── Makefile │ ├── edit │ │ ├── Buffer.df │ │ ├── Draw.df │ │ ├── Edit.h │ │ ├── Editor.df │ │ ├── Main.df │ │ ├── Makefile │ │ ├── Screen.df │ │ └── Terminal.df │ ├── env │ │ ├── Main.df │ │ └── Makefile │ ├── groups │ │ ├── Main.df │ │ └── Makefile │ ├── help │ │ ├── Main.df │ │ └── Makefile │ ├── kill │ │ ├── Main.df │ │ └── Makefile │ ├── killall │ │ ├── Main.df │ │ └── Makefile │ ├── kstats │ │ ├── Main.df │ │ └── Makefile │ ├── label │ │ ├── Main.df │ │ └── Makefile │ ├── login │ │ ├── Main.df │ │ └── Makefile │ ├── ls │ │ ├── Main.df │ │ └── Makefile │ ├── mem │ │ ├── Main.df │ │ └── Makefile │ ├── mkdir │ │ ├── Main.df │ │ └── Makefile │ ├── mkfs_aisixfs │ │ ├── Main.df │ │ └── Makefile │ ├── mount │ │ ├── Main.df │ │ └── Makefile │ ├── mousedemo │ │ ├── Main.df │ │ └── Makefile │ ├── mv │ │ ├── Main.df │ │ └── Makefile │ ├── nvram │ │ ├── Main.df │ │ └── Makefile │ ├── oldcmd │ │ ├── Cmd.h │ │ ├── CmdBuiltins.df │ │ ├── CmdParse.df │ │ ├── CmdSymbol.df │ │ ├── CmdToken.df │ │ ├── Main.df │ │ └── Makefile │ ├── passwd │ │ ├── Main.df │ │ └── Makefile │ ├── ps │ │ ├── Main.df │ │ └── Makefile │ ├── pwd │ │ ├── Main.df │ │ └── Makefile │ ├── quota │ │ ├── Main.df │ │ └── Makefile │ ├── reboot │ │ ├── Main.df │ │ └── Makefile │ ├── rm │ │ ├── Main.df │ │ └── Makefile │ ├── shutdown │ │ ├── Main.df │ │ └── Makefile │ ├── sleep │ │ ├── Main.df │ │ └── Makefile │ ├── stress │ │ ├── Main.df │ │ ├── Makefile │ │ ├── Stress.h │ │ └── Tests.df │ ├── swapon │ │ ├── Main.df │ │ └── Makefile │ ├── sync │ │ ├── Main.df │ │ └── Makefile │ ├── tee │ │ ├── Main.df │ │ └── Makefile │ ├── time │ │ ├── Main.df │ │ └── Makefile │ ├── trunc │ │ ├── Main.df │ │ └── Makefile │ ├── umount │ │ ├── Main.df │ │ └── Makefile │ ├── users │ │ ├── Main.df │ │ └── Makefile │ ├── ver │ │ ├── Main.df │ │ └── Makefile │ ├── view │ │ ├── Main.df │ │ ├── Makefile │ │ ├── Pager.h │ │ └── Terminal.df │ └── whoami │ │ ├── Main.df │ │ └── Makefile ├── Common │ ├── ComBitmap.df │ ├── ComDLLLoad.df │ ├── Common.h │ └── Module.h ├── HAL │ ├── HAL │ │ ├── HALArgs.df │ │ ├── HALConsole.df │ │ ├── HALCrash.df │ │ ├── HALDebug.df │ │ ├── HALInterrupt.df │ │ ├── HALLog.df │ │ ├── HALMain.df │ │ ├── HALRTC.df │ │ └── HALResource.df │ ├── XRstation │ │ ├── HALXRstation.df │ │ ├── HALXRstationAmtsu.df │ │ ├── HALXRstationCitron.df │ │ ├── HALXRstationConsole.df │ │ ├── HALXRstationDebug.df │ │ ├── HALXRstationDebugSerial.df │ │ ├── HALXRstationEBus.df │ │ ├── HALXRstationIPL.df │ │ ├── HALXRstationNvram.df │ │ ├── KVDraw.df │ │ ├── Makefile │ │ ├── include │ │ │ ├── HALXRstationAmtsu.h │ │ │ ├── HALXRstationCitron.h │ │ │ └── HALXRstationEBus.h │ │ └── xr17032 │ │ │ ├── HALXr17032FastDrawGlyph.s │ │ │ ├── HALXr17032Halt.s │ │ │ ├── HALXr17032Init.s │ │ │ └── HALXr17032Misc.df │ ├── fox32 │ │ ├── HALfox32.df │ │ ├── HALfox32Console.df │ │ ├── HALfox32Debug.df │ │ ├── HALfox32DebugSerial.df │ │ ├── HALfox32IPL.df │ │ ├── KVDraw.df │ │ ├── Makefile │ │ ├── fox32 │ │ │ ├── HALfox32Halt.s │ │ │ └── HALfox32Misc.df │ │ └── include │ │ │ └── HALfox32IO.h │ └── include │ │ ├── HALArgs.h │ │ ├── HALCPU.h │ │ ├── HALConsole.h │ │ ├── HALCrash.h │ │ ├── HALDebug.h │ │ ├── HALDriver.h │ │ ├── HALExit.h │ │ ├── HALIPL.h │ │ ├── HALInterrupt.h │ │ ├── HALLog.h │ │ ├── HALMap.h │ │ ├── HALNvram.h │ │ ├── HALRTC.h │ │ └── HALResource.h ├── Headers │ ├── AMS │ │ └── Ams.h │ ├── BME │ │ ├── Bme.h │ │ └── Region.h │ ├── MCL │ │ └── Mcl.h │ └── OSDLL │ │ ├── OS.h │ │ ├── OSAbort.h │ │ ├── OSAccess.h │ │ ├── OSAlloc.h │ │ ├── OSBootFlags.h │ │ ├── OSCalls.h │ │ ├── OSConfiguration.h │ │ ├── OSConsoleControl.h │ │ ├── OSContext.h │ │ ├── OSCrypt.h │ │ ├── OSEnvironment.h │ │ ├── OSFastMutex.h │ │ ├── OSFile.h │ │ ├── OSIOControl.h │ │ ├── OSMap.h │ │ ├── OSMemory.h │ │ ├── OSModule.h │ │ ├── OSMount.h │ │ ├── OSMouseControl.h │ │ ├── OSNvramControl.h │ │ ├── OSObject.h │ │ ├── OSPort.h │ │ ├── OSProcess.h │ │ ├── OSShutdown.h │ │ ├── OSSignal.h │ │ ├── OSStatistics.h │ │ ├── OSStatus.h │ │ ├── OSStream.h │ │ ├── OSTime.h │ │ ├── OSVersion.h │ │ ├── OSVideoControl.h │ │ └── OSWait.h ├── KDebug │ ├── DebugIO.df │ ├── DebugMain.df │ ├── DebugPrompt.df │ ├── DebugSymbols.df │ ├── Makefile │ ├── fox32 │ │ └── DebugTrace.df │ ├── include │ │ ├── DebugIO.h │ │ ├── DebugSymbols.h │ │ └── DebugTrace.h │ └── xr17032 │ │ └── DebugTrace.df ├── MCL │ ├── API.df │ ├── Builtins.df │ ├── Eval.df │ ├── EvalPipeline.df │ ├── Input.df │ ├── Lex.df │ ├── Makefile │ ├── Mcl.h │ ├── Parse.df │ └── Symbol.df ├── OSDLL │ ├── DLLConfiguration.df │ ├── DLLCrypt.df │ ├── DLLEnvironment.df │ ├── DLLFastMutex.df │ ├── DLLFile.df │ ├── DLLHeap.df │ ├── DLLMain.df │ ├── DLLMemory.df │ ├── DLLModule.df │ ├── DLLModuleCalls.df │ ├── DLLObject.df │ ├── DLLPrint.df │ ├── DLLProcess.df │ ├── DLLSignal.df │ ├── DLLStatistics.df │ ├── DLLStatus.df │ ├── DLLStream.df │ ├── DLLTime.df │ ├── Makefile │ ├── OSDLL.h │ ├── fox32 │ │ ├── DLLDebug.df │ │ ├── DLLMainTrampoline.df │ │ ├── DLLThreadLocal.df │ │ └── OSCallStubs.s │ └── xr17032 │ │ ├── DLLDebug.df │ │ ├── DLLMainTrampoline.df │ │ ├── DLLThreadLocal.df │ │ └── OSCallStubs.s ├── OSKernel │ ├── Console │ │ ├── CoConsole.df │ │ ├── CoDuplex.df │ │ ├── CoDuplex.h │ │ ├── CoDuplexClient.df │ │ ├── CoDuplexDispatch.df │ │ ├── CoDuplexServer.df │ │ ├── CoOSCalls.df │ │ └── CoVideoConsole.df │ ├── Executive │ │ ├── ExAvlTree.df │ │ ├── ExBalanceManager.df │ │ ├── ExBitmap.df │ │ ├── ExEvent.df │ │ ├── ExHandleTable.df │ │ ├── ExInit.df │ │ ├── ExInternal.h │ │ ├── ExLog.df │ │ ├── ExMutex.df │ │ ├── ExOSCalls.df │ │ ├── ExRwLock.df │ │ ├── ExSemaphore.df │ │ ├── ExShutdown.df │ │ ├── ExTimer.df │ │ ├── fox32 │ │ │ ├── ExBuildDate.df │ │ │ └── OSCallTrampolines.s │ │ └── xr17032 │ │ │ ├── ExBuildDate.df │ │ │ └── OSCallTrampolines.s │ ├── FSRTL │ │ └── FSVolume.df │ ├── IO │ │ ├── IOCache.df │ │ ├── IOCacheInfoBlock.df │ │ ├── IOCachePage.df │ │ ├── IOCacheZero.df │ │ ├── IOCancel.df │ │ ├── IODevice.df │ │ ├── IOFile.df │ │ ├── IOFileControlBlock.df │ │ ├── IOFilesystem.df │ │ ├── IOInit.df │ │ ├── IOInternal.h │ │ ├── IONullZeroDevice.df │ │ ├── IOOSCalls.df │ │ ├── IOPacket.df │ │ ├── IOPageFile.df │ │ ├── IOParse.df │ │ ├── IOPartition.df │ │ ├── IOPartitionAPT.df │ │ ├── IOPartitionMBR.df │ │ ├── IOReadWrite.df │ │ ├── IOTransfer.df │ │ ├── IOViewCache.df │ │ └── IOWorkerThreads.df │ ├── IPC │ │ ├── IPCCompletion.df │ │ ├── IPCInit.df │ │ ├── IPCInternal.h │ │ ├── IPCMessage.df │ │ ├── IPCOSCalls.df │ │ ├── IPCPort.df │ │ ├── IPCPortConnect.df │ │ └── IPCSendReceive.df │ ├── Kernel │ │ ├── KeAPC.df │ │ ├── KeCrash.df │ │ ├── KeDFGlue.df │ │ ├── KeDPC.df │ │ ├── KeDispatcher.df │ │ ├── KeEvent.df │ │ ├── KeIPL.df │ │ ├── KeInternal.h │ │ ├── KeMain.df │ │ ├── KeMutex.df │ │ ├── KeProcess.df │ │ ├── KeSemaphore.df │ │ ├── KeStatistics.df │ │ ├── KeThread.df │ │ ├── KeThreadDispatcher.df │ │ ├── KeThreadWait.df │ │ ├── KeTimer.df │ │ ├── fox32 │ │ │ ├── KeException.df │ │ │ └── KeSafeAccess.df │ │ └── xr17032 │ │ │ ├── KeException.df │ │ │ └── KeSafeAccess.df │ ├── Makefile │ ├── Memory │ │ ├── MmAnonymousPage.df │ │ ├── MmEvictable.df │ │ ├── MmFasterHeap.df │ │ ├── MmFault.df │ │ ├── MmIOMap.df │ │ ├── MmInit.df │ │ ├── MmInternal.h │ │ ├── MmKernelStack.df │ │ ├── MmMDL.df │ │ ├── MmMap.df │ │ ├── MmModifiedPageWriter.df │ │ ├── MmOSCalls.df │ │ ├── MmPageAlloc.df │ │ ├── MmPool.df │ │ ├── MmPrivateAllocate.df │ │ ├── MmProcess.df │ │ ├── MmProcessHeader.df │ │ ├── MmQuota.df │ │ ├── MmSection.df │ │ ├── MmSwapWorker.df │ │ ├── MmSystemPage.df │ │ ├── MmVAD.df │ │ ├── MmViewCache.df │ │ ├── MmWorkingSetList.df │ │ ├── MmZeroPageWorker.df │ │ ├── MmZone.df │ │ ├── fox32 │ │ │ ├── MmFlushCache.df │ │ │ ├── MmPTELinear.df │ │ │ ├── MmPageDirectory.df │ │ │ └── MmPlatformInit.df │ │ └── xr17032 │ │ │ ├── MmFlushCache.df │ │ │ ├── MmPTELinear.df │ │ │ ├── MmPageDirectory.df │ │ │ └── MmPlatformInit.df │ ├── Object │ │ ├── ObCreate.df │ │ ├── ObDirectory.df │ │ ├── ObDuplicate.df │ │ ├── ObInit.df │ │ ├── ObInternal.h │ │ ├── ObOSCalls.df │ │ ├── ObObject.df │ │ └── ObWait.df │ ├── Process │ │ ├── PsCreate.df │ │ ├── PsDelete.df │ │ ├── PsInit.df │ │ ├── PsInternal.h │ │ ├── PsJob.df │ │ ├── PsOSCalls.df │ │ ├── PsProcess.df │ │ ├── PsThread.df │ │ └── PsUserEntry.df │ ├── Security │ │ ├── SeCheck.df │ │ ├── SeInit.df │ │ └── SeOSCalls.df │ └── include │ │ ├── Console.h │ │ ├── Console │ │ ├── Console.h │ │ └── VideoConsole.h │ │ ├── Executive.h │ │ ├── Executive │ │ ├── AvlTree.h │ │ ├── Boost.h │ │ ├── Call.h │ │ ├── Event.h │ │ ├── Handle.h │ │ ├── Mutex.h │ │ ├── RwLock.h │ │ ├── Semaphore.h │ │ ├── Shutdown.h │ │ └── Timer.h │ │ ├── FSRTL.h │ │ ├── FSRTL │ │ └── FSVolume.h │ │ ├── IO.h │ │ ├── IO │ │ ├── Cache.h │ │ ├── Device.h │ │ ├── Dispatch.h │ │ ├── Filesystem.h │ │ ├── IO.h │ │ ├── Packet.h │ │ ├── PageFile.h │ │ ├── Partition.h │ │ └── ReadWrite.h │ │ ├── IPC.h │ │ ├── IPC │ │ └── Port.h │ │ ├── Kernel.h │ │ ├── Kernel │ │ ├── APC.h │ │ ├── Crash.h │ │ ├── DPC.h │ │ ├── Dispatch.h │ │ ├── Event.h │ │ ├── IPL.h │ │ ├── Mutex.h │ │ ├── Process.h │ │ ├── Semaphore.h │ │ ├── Time.h │ │ └── Timer.h │ │ ├── Memory.h │ │ ├── Memory │ │ ├── Evict.h │ │ ├── IORegion.h │ │ ├── MDL.h │ │ ├── Memory.h │ │ ├── PTE.h │ │ ├── Pool.h │ │ ├── Process.h │ │ ├── Quota.h │ │ ├── Section.h │ │ ├── VAD.h │ │ ├── ViewCache.h │ │ └── Zone.h │ │ ├── Object.h │ │ ├── Object │ │ ├── Directory.h │ │ ├── Object.h │ │ └── Wait.h │ │ ├── Process.h │ │ ├── Process │ │ └── Process.h │ │ ├── Security.h │ │ ├── Security │ │ └── Security.h │ │ ├── Transfer.h │ │ ├── Video.h │ │ ├── Video │ │ └── Draw.h │ │ ├── ViewCache.h │ │ └── ViewCache │ │ └── ViewCache.h ├── OSLoader │ ├── LdrAisixFS.df │ ├── LdrArgs.df │ ├── LdrBitmap.df │ ├── LdrBootDrivers.df │ ├── LdrBootResources.df │ ├── LdrFileIO.df │ ├── LdrMain.df │ ├── LdrMemory.df │ ├── LdrModule.df │ ├── LdrResourceFile.df │ ├── Makefile │ ├── OSLoader.h │ ├── OSLoaderGlobal.h │ ├── XRstation │ │ ├── LdrXRstationInit.df │ │ ├── LdrXr17032Map.df │ │ ├── OSLoader.mk │ │ └── bootcode │ │ │ ├── AisixFSBoot.s │ │ │ ├── Makefile │ │ │ ├── a3xBootDescriptor.s │ │ │ └── mint.bmp │ └── fox32 │ │ ├── LdrFox32Init.df │ │ ├── LdrFox32Map.df │ │ ├── LdrFox32Video.df │ │ ├── OSLoader.mk │ │ ├── PC.8x8.hcf │ │ ├── _start.s │ │ ├── bootcode │ │ ├── AisixFSBoot.s │ │ ├── FoxJump.s │ │ └── Makefile │ │ └── fox32.h ├── SystemInit │ ├── Makefile │ ├── SiMain.df │ ├── SiSwapFiles.df │ ├── SiSystemManagement.df │ ├── SiTime.df │ └── SystemInit.h └── Window │ ├── BME │ ├── Init.df │ ├── Makefile │ └── Region.df │ ├── Drivers │ └── KinnowFB │ │ ├── Init.df │ │ └── Makefile │ └── README ├── Project.mk ├── README.md ├── Root ├── home │ └── guest │ │ └── README └── mintia │ ├── BootDrivers.txt │ ├── BootResources.txt │ ├── BootResources │ ├── Fixed.10x20.hcf │ ├── Fixed.18x18.hcf │ ├── Fixed.6x13.hcf │ ├── Haiku.6x12.hcf │ ├── Mach.8x12.hcf │ ├── PC.8x16.hcf │ ├── PC.8x8.hcf │ ├── Sony.12x24.hcf │ ├── Sony.8x16.hcf │ ├── Sun.12x22.hcf │ └── Terminus.8x16.hcf │ ├── SystemInit.cfg │ ├── SystemInit.cfg.small │ ├── boot.cmd │ ├── groups.cfg │ ├── help │ ├── 0 │ │ ├── amssrv │ │ ├── help │ │ ├── login │ │ └── systeminit │ └── 1 │ │ ├── aptdisk │ │ ├── cat │ │ ├── chgrp │ │ ├── chmod │ │ ├── chown │ │ ├── clear │ │ ├── cmd │ │ ├── cp │ │ ├── crypt │ │ ├── date │ │ ├── dd │ │ ├── dhrystone │ │ ├── echo │ │ ├── edit │ │ ├── groups │ │ ├── kill │ │ ├── killall │ │ ├── kstats │ │ ├── label │ │ ├── ls │ │ ├── mem │ │ ├── mkdir │ │ ├── mkfs_aisixfs │ │ ├── mount │ │ ├── mousedemo │ │ ├── mv │ │ ├── nvram │ │ ├── passwd │ │ ├── ps │ │ ├── pwd │ │ ├── quota │ │ ├── reboot │ │ ├── rm │ │ ├── shutdown │ │ ├── sleep │ │ ├── stress │ │ ├── swapon │ │ ├── sync │ │ ├── tee │ │ ├── time │ │ ├── trunc │ │ ├── umount │ │ ├── users │ │ ├── ver │ │ ├── view │ │ └── whoami │ ├── motd.txt │ └── users.cfg ├── SysCommand.mk ├── TextManifest ├── TextManifestSuffixed ├── XRstation.mk ├── badge-17032.png ├── badge-fox32.png ├── fox32.mk └── screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/.gitignore -------------------------------------------------------------------------------- /Command.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Command.mk -------------------------------------------------------------------------------- /Documentation/AddressSpace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Documentation/AddressSpace.txt -------------------------------------------------------------------------------- /Documentation/DLLBases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Documentation/DLLBases.txt -------------------------------------------------------------------------------- /Documentation/IPCSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Documentation/IPCSummary.md -------------------------------------------------------------------------------- /Documentation/OSLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Documentation/OSLoader.md -------------------------------------------------------------------------------- /ExecManifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/ExecManifest -------------------------------------------------------------------------------- /ExecManifest.XRstation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/ExecManifest.XRstation -------------------------------------------------------------------------------- /ExecManifest.fox32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/ExecManifest.fox32 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Makefile -------------------------------------------------------------------------------- /OS/AMS/Client/API.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Client/API.df -------------------------------------------------------------------------------- /OS/AMS/Client/AmsClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Client/AmsClient.h -------------------------------------------------------------------------------- /OS/AMS/Client/Enumerate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Client/Enumerate.df -------------------------------------------------------------------------------- /OS/AMS/Client/Init.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Client/Init.df -------------------------------------------------------------------------------- /OS/AMS/Client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Client/Makefile -------------------------------------------------------------------------------- /OS/AMS/Server/AmsServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/AmsServer.h -------------------------------------------------------------------------------- /OS/AMS/Server/Client.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Client.df -------------------------------------------------------------------------------- /OS/AMS/Server/Create.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Create.df -------------------------------------------------------------------------------- /OS/AMS/Server/Enumerate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Enumerate.df -------------------------------------------------------------------------------- /OS/AMS/Server/Logon.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Logon.df -------------------------------------------------------------------------------- /OS/AMS/Server/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Main.df -------------------------------------------------------------------------------- /OS/AMS/Server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Makefile -------------------------------------------------------------------------------- /OS/AMS/Server/Query.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/Query.df -------------------------------------------------------------------------------- /OS/AMS/Server/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/README -------------------------------------------------------------------------------- /OS/AMS/Server/UserDb.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/Server/UserDb.df -------------------------------------------------------------------------------- /OS/AMS/include/AmsAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/AMS/include/AmsAPI.h -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSBlock.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSBlock.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSDirectory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSDirectory.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSINode.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSINode.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSOpenClose.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSOpenClose.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSParseDelete.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSParseDelete.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSReadWrite.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSReadWrite.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AFSTruncate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AFSTruncate.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/AisixFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/AisixFS.h -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/DriverAisixFS.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/DriverAisixFS.df -------------------------------------------------------------------------------- /OS/BootDrivers/AisixFS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AisixFS/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/AnalogClockTest/DriverAnalogClockTest.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AnalogClockTest/DriverAnalogClockTest.df -------------------------------------------------------------------------------- /OS/BootDrivers/AnalogClockTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/AnalogClockTest/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/DriverFat.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/DriverFat.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/Fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/Fat.h -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatBlock.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatBlock.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatDirectory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatDirectory.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatFile.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatFile.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatOpenClose.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatOpenClose.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatParseDelete.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatParseDelete.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatReadWrite.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatReadWrite.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatTruncate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatTruncate.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/FatUtil.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/FatUtil.df -------------------------------------------------------------------------------- /OS/BootDrivers/Fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/Fat/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/RyFS/DriverRyFS.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/RyFS/DriverRyFS.df -------------------------------------------------------------------------------- /OS/BootDrivers/RyFS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/RyFS/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/RyFS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/RyFS/README -------------------------------------------------------------------------------- /OS/BootDrivers/RyFS/RyFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/RyFS/RyFS.h -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/EBus/DriverDKS.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/EBus/DriverDKS.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/EBus/DriverEBus.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/EBus/DriverEBus.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/EBus/DriverRTC.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/EBus/DriverRTC.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/EBus/DriverSerial.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/EBus/DriverSerial.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/EBus/DriverSystem.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/EBus/DriverSystem.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/EBus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/EBus/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/Keyboard/DriverKeyboard.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/Keyboard/DriverKeyboard.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/Keyboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/Keyboard/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/KinnowFB/DriverKinnowFB.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/KinnowFB/DriverKinnowFB.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/KinnowFB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/KinnowFB/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/Mouse/DriverMouse.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/Mouse/DriverMouse.df -------------------------------------------------------------------------------- /OS/BootDrivers/XRstation/Mouse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/XRstation/Mouse/Makefile -------------------------------------------------------------------------------- /OS/BootDrivers/fox32/foxmobo/DriverFoxMobo.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/fox32/foxmobo/DriverFoxMobo.df -------------------------------------------------------------------------------- /OS/BootDrivers/fox32/foxmobo/FoxDisk.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/fox32/foxmobo/FoxDisk.df -------------------------------------------------------------------------------- /OS/BootDrivers/fox32/foxmobo/FoxFramebuffer.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/fox32/foxmobo/FoxFramebuffer.df -------------------------------------------------------------------------------- /OS/BootDrivers/fox32/foxmobo/FoxKeyboard.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/fox32/foxmobo/FoxKeyboard.df -------------------------------------------------------------------------------- /OS/BootDrivers/fox32/foxmobo/FoxMouse.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/fox32/foxmobo/FoxMouse.df -------------------------------------------------------------------------------- /OS/BootDrivers/fox32/foxmobo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/BootDrivers/fox32/foxmobo/Makefile -------------------------------------------------------------------------------- /OS/Commands/aptdisk/IDisk.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/aptdisk/IDisk.df -------------------------------------------------------------------------------- /OS/Commands/aptdisk/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/aptdisk/Main.df -------------------------------------------------------------------------------- /OS/Commands/aptdisk/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = aptdisk 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/aptdisk/Partition.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/aptdisk/Partition.df -------------------------------------------------------------------------------- /OS/Commands/aptdisk/Prompt.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/aptdisk/Prompt.df -------------------------------------------------------------------------------- /OS/Commands/cat/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/cat/Main.df -------------------------------------------------------------------------------- /OS/Commands/cat/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = cat 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/chgrp/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/chgrp/Main.df -------------------------------------------------------------------------------- /OS/Commands/chgrp/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = chgrp 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/chmod/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/chmod/Main.df -------------------------------------------------------------------------------- /OS/Commands/chmod/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = chmod 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/chown/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/chown/Main.df -------------------------------------------------------------------------------- /OS/Commands/chown/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = chown 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/clear/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/clear/Main.df -------------------------------------------------------------------------------- /OS/Commands/clear/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = clear 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/cmd/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/cmd/Main.df -------------------------------------------------------------------------------- /OS/Commands/cmd/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += mcl.dll:$(MCLBIN) 2 | 3 | CMDNAME = cmd 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/cp/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/cp/Main.df -------------------------------------------------------------------------------- /OS/Commands/cp/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = cp 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/crypt/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/crypt/Main.df -------------------------------------------------------------------------------- /OS/Commands/crypt/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = crypt 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/date/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/date/Main.df -------------------------------------------------------------------------------- /OS/Commands/date/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = date 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/dd/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/dd/Main.df -------------------------------------------------------------------------------- /OS/Commands/dd/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = dd 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/dhrystone/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/dhrystone/Main.df -------------------------------------------------------------------------------- /OS/Commands/dhrystone/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = dhrystone 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/echo/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/echo/Main.df -------------------------------------------------------------------------------- /OS/Commands/echo/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = echo 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/edit/Buffer.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Buffer.df -------------------------------------------------------------------------------- /OS/Commands/edit/Draw.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Draw.df -------------------------------------------------------------------------------- /OS/Commands/edit/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Edit.h -------------------------------------------------------------------------------- /OS/Commands/edit/Editor.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Editor.df -------------------------------------------------------------------------------- /OS/Commands/edit/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Main.df -------------------------------------------------------------------------------- /OS/Commands/edit/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = edit 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/edit/Screen.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Screen.df -------------------------------------------------------------------------------- /OS/Commands/edit/Terminal.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/edit/Terminal.df -------------------------------------------------------------------------------- /OS/Commands/env/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/env/Main.df -------------------------------------------------------------------------------- /OS/Commands/env/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = env 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/groups/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/groups/Main.df -------------------------------------------------------------------------------- /OS/Commands/groups/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = groups 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/help/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/help/Main.df -------------------------------------------------------------------------------- /OS/Commands/help/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = help 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/kill/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/kill/Main.df -------------------------------------------------------------------------------- /OS/Commands/kill/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = kill 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/killall/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/killall/Main.df -------------------------------------------------------------------------------- /OS/Commands/killall/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = killall 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/kstats/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/kstats/Main.df -------------------------------------------------------------------------------- /OS/Commands/kstats/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = kstats 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/label/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/label/Main.df -------------------------------------------------------------------------------- /OS/Commands/label/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = label 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/login/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/login/Main.df -------------------------------------------------------------------------------- /OS/Commands/login/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = login 4 | 5 | include $(REPO)/SysCommand.mk -------------------------------------------------------------------------------- /OS/Commands/ls/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/ls/Main.df -------------------------------------------------------------------------------- /OS/Commands/ls/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = ls 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/mem/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/mem/Main.df -------------------------------------------------------------------------------- /OS/Commands/mem/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = mem 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/mkdir/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/mkdir/Main.df -------------------------------------------------------------------------------- /OS/Commands/mkdir/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = mkdir 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/mkfs_aisixfs/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/mkfs_aisixfs/Main.df -------------------------------------------------------------------------------- /OS/Commands/mkfs_aisixfs/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = mkfs_aisixfs 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/mount/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/mount/Main.df -------------------------------------------------------------------------------- /OS/Commands/mount/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = mount 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/mousedemo/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/mousedemo/Main.df -------------------------------------------------------------------------------- /OS/Commands/mousedemo/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = mousedemo 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/mv/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/mv/Main.df -------------------------------------------------------------------------------- /OS/Commands/mv/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = mv 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/nvram/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/nvram/Main.df -------------------------------------------------------------------------------- /OS/Commands/nvram/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = nvram 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/oldcmd/Cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/oldcmd/Cmd.h -------------------------------------------------------------------------------- /OS/Commands/oldcmd/CmdBuiltins.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/oldcmd/CmdBuiltins.df -------------------------------------------------------------------------------- /OS/Commands/oldcmd/CmdParse.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/oldcmd/CmdParse.df -------------------------------------------------------------------------------- /OS/Commands/oldcmd/CmdSymbol.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/oldcmd/CmdSymbol.df -------------------------------------------------------------------------------- /OS/Commands/oldcmd/CmdToken.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/oldcmd/CmdToken.df -------------------------------------------------------------------------------- /OS/Commands/oldcmd/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/oldcmd/Main.df -------------------------------------------------------------------------------- /OS/Commands/oldcmd/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = oldcmd 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/passwd/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/passwd/Main.df -------------------------------------------------------------------------------- /OS/Commands/passwd/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = passwd 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/ps/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/ps/Main.df -------------------------------------------------------------------------------- /OS/Commands/ps/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = ps 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/pwd/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/pwd/Main.df -------------------------------------------------------------------------------- /OS/Commands/pwd/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = pwd 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/quota/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/quota/Main.df -------------------------------------------------------------------------------- /OS/Commands/quota/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = quota 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/reboot/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/reboot/Main.df -------------------------------------------------------------------------------- /OS/Commands/reboot/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = reboot 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/rm/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/rm/Main.df -------------------------------------------------------------------------------- /OS/Commands/rm/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = rm 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/shutdown/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/shutdown/Main.df -------------------------------------------------------------------------------- /OS/Commands/shutdown/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = shutdown 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/sleep/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/sleep/Main.df -------------------------------------------------------------------------------- /OS/Commands/sleep/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = sleep 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/stress/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/stress/Main.df -------------------------------------------------------------------------------- /OS/Commands/stress/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = stress 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/stress/Stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/stress/Stress.h -------------------------------------------------------------------------------- /OS/Commands/stress/Tests.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/stress/Tests.df -------------------------------------------------------------------------------- /OS/Commands/swapon/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/swapon/Main.df -------------------------------------------------------------------------------- /OS/Commands/swapon/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = swapon 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/sync/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/sync/Main.df -------------------------------------------------------------------------------- /OS/Commands/sync/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = sync 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/tee/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/tee/Main.df -------------------------------------------------------------------------------- /OS/Commands/tee/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = tee 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/time/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/time/Main.df -------------------------------------------------------------------------------- /OS/Commands/time/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = time 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/trunc/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/trunc/Main.df -------------------------------------------------------------------------------- /OS/Commands/trunc/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = trunc 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/umount/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/umount/Main.df -------------------------------------------------------------------------------- /OS/Commands/umount/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = umount 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/users/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/users/Main.df -------------------------------------------------------------------------------- /OS/Commands/users/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = users 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/ver/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/ver/Main.df -------------------------------------------------------------------------------- /OS/Commands/ver/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = ver 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/view/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/view/Main.df -------------------------------------------------------------------------------- /OS/Commands/view/Makefile: -------------------------------------------------------------------------------- 1 | CMDNAME = view 2 | 3 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Commands/view/Pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/view/Pager.h -------------------------------------------------------------------------------- /OS/Commands/view/Terminal.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/view/Terminal.df -------------------------------------------------------------------------------- /OS/Commands/whoami/Main.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Commands/whoami/Main.df -------------------------------------------------------------------------------- /OS/Commands/whoami/Makefile: -------------------------------------------------------------------------------- 1 | DYLIBS += ams.dll:$(AMSBIN) 2 | 3 | CMDNAME = whoami 4 | 5 | include $(REPO)/Command.mk -------------------------------------------------------------------------------- /OS/Common/ComBitmap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Common/ComBitmap.df -------------------------------------------------------------------------------- /OS/Common/ComDLLLoad.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Common/ComDLLLoad.df -------------------------------------------------------------------------------- /OS/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Common/Common.h -------------------------------------------------------------------------------- /OS/Common/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Common/Module.h -------------------------------------------------------------------------------- /OS/HAL/HAL/HALArgs.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALArgs.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALConsole.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALConsole.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALCrash.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALCrash.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALDebug.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALDebug.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALInterrupt.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALInterrupt.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALLog.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALLog.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALMain.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALMain.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALRTC.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALRTC.df -------------------------------------------------------------------------------- /OS/HAL/HAL/HALResource.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/HAL/HALResource.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstation.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstation.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationAmtsu.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationAmtsu.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationCitron.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationCitron.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationConsole.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationConsole.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationDebug.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationDebug.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationDebugSerial.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationDebugSerial.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationEBus.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationEBus.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationIPL.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationIPL.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/HALXRstationNvram.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/HALXRstationNvram.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/KVDraw.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/KVDraw.df -------------------------------------------------------------------------------- /OS/HAL/XRstation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/Makefile -------------------------------------------------------------------------------- /OS/HAL/XRstation/include/HALXRstationAmtsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/include/HALXRstationAmtsu.h -------------------------------------------------------------------------------- /OS/HAL/XRstation/include/HALXRstationCitron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/include/HALXRstationCitron.h -------------------------------------------------------------------------------- /OS/HAL/XRstation/include/HALXRstationEBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/include/HALXRstationEBus.h -------------------------------------------------------------------------------- /OS/HAL/XRstation/xr17032/HALXr17032FastDrawGlyph.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/xr17032/HALXr17032FastDrawGlyph.s -------------------------------------------------------------------------------- /OS/HAL/XRstation/xr17032/HALXr17032Halt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/xr17032/HALXr17032Halt.s -------------------------------------------------------------------------------- /OS/HAL/XRstation/xr17032/HALXr17032Init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/xr17032/HALXr17032Init.s -------------------------------------------------------------------------------- /OS/HAL/XRstation/xr17032/HALXr17032Misc.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/XRstation/xr17032/HALXr17032Misc.df -------------------------------------------------------------------------------- /OS/HAL/fox32/HALfox32.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/HALfox32.df -------------------------------------------------------------------------------- /OS/HAL/fox32/HALfox32Console.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/HALfox32Console.df -------------------------------------------------------------------------------- /OS/HAL/fox32/HALfox32Debug.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/HALfox32Debug.df -------------------------------------------------------------------------------- /OS/HAL/fox32/HALfox32DebugSerial.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/HALfox32DebugSerial.df -------------------------------------------------------------------------------- /OS/HAL/fox32/HALfox32IPL.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/HALfox32IPL.df -------------------------------------------------------------------------------- /OS/HAL/fox32/KVDraw.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/KVDraw.df -------------------------------------------------------------------------------- /OS/HAL/fox32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/Makefile -------------------------------------------------------------------------------- /OS/HAL/fox32/fox32/HALfox32Halt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/fox32/HALfox32Halt.s -------------------------------------------------------------------------------- /OS/HAL/fox32/fox32/HALfox32Misc.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/fox32/HALfox32Misc.df -------------------------------------------------------------------------------- /OS/HAL/fox32/include/HALfox32IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/fox32/include/HALfox32IO.h -------------------------------------------------------------------------------- /OS/HAL/include/HALArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALArgs.h -------------------------------------------------------------------------------- /OS/HAL/include/HALCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALCPU.h -------------------------------------------------------------------------------- /OS/HAL/include/HALConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALConsole.h -------------------------------------------------------------------------------- /OS/HAL/include/HALCrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALCrash.h -------------------------------------------------------------------------------- /OS/HAL/include/HALDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALDebug.h -------------------------------------------------------------------------------- /OS/HAL/include/HALDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALDriver.h -------------------------------------------------------------------------------- /OS/HAL/include/HALExit.h: -------------------------------------------------------------------------------- 1 | extern HALExit { ret mode -- } -------------------------------------------------------------------------------- /OS/HAL/include/HALIPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALIPL.h -------------------------------------------------------------------------------- /OS/HAL/include/HALInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALInterrupt.h -------------------------------------------------------------------------------- /OS/HAL/include/HALLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALLog.h -------------------------------------------------------------------------------- /OS/HAL/include/HALMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALMap.h -------------------------------------------------------------------------------- /OS/HAL/include/HALNvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALNvram.h -------------------------------------------------------------------------------- /OS/HAL/include/HALRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALRTC.h -------------------------------------------------------------------------------- /OS/HAL/include/HALResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/HAL/include/HALResource.h -------------------------------------------------------------------------------- /OS/Headers/AMS/Ams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/AMS/Ams.h -------------------------------------------------------------------------------- /OS/Headers/BME/Bme.h: -------------------------------------------------------------------------------- 1 | #include "/BME/Region.h" -------------------------------------------------------------------------------- /OS/Headers/BME/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/BME/Region.h -------------------------------------------------------------------------------- /OS/Headers/MCL/Mcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/MCL/Mcl.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OS.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSAbort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSAbort.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSAccess.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSAlloc.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSBootFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSBootFlags.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSCalls.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSConfiguration.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSConsoleControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSConsoleControl.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSContext.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSCrypt.h: -------------------------------------------------------------------------------- 1 | const OSSIMPLECRYPT_HASHLENGTH 16 2 | 3 | extern OSSimpleCrypt { str salt hash -- } -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSEnvironment.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSFastMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSFastMutex.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSFile.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSIOControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSIOControl.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSMap.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSMemory.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSModule.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSMount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSMount.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSMouseControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSMouseControl.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSNvramControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSNvramControl.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSObject.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSPort.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSProcess.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSShutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSShutdown.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSSignal.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSStatistics.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSStatus.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSStream.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSTime.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSVersion.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSVideoControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSVideoControl.h -------------------------------------------------------------------------------- /OS/Headers/OSDLL/OSWait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Headers/OSDLL/OSWait.h -------------------------------------------------------------------------------- /OS/KDebug/DebugIO.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/DebugIO.df -------------------------------------------------------------------------------- /OS/KDebug/DebugMain.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/DebugMain.df -------------------------------------------------------------------------------- /OS/KDebug/DebugPrompt.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/DebugPrompt.df -------------------------------------------------------------------------------- /OS/KDebug/DebugSymbols.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/DebugSymbols.df -------------------------------------------------------------------------------- /OS/KDebug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/Makefile -------------------------------------------------------------------------------- /OS/KDebug/fox32/DebugTrace.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/fox32/DebugTrace.df -------------------------------------------------------------------------------- /OS/KDebug/include/DebugIO.h: -------------------------------------------------------------------------------- 1 | extern DebugGets { s max -- } -------------------------------------------------------------------------------- /OS/KDebug/include/DebugSymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/include/DebugSymbols.h -------------------------------------------------------------------------------- /OS/KDebug/include/DebugTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/include/DebugTrace.h -------------------------------------------------------------------------------- /OS/KDebug/xr17032/DebugTrace.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/KDebug/xr17032/DebugTrace.df -------------------------------------------------------------------------------- /OS/MCL/API.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/API.df -------------------------------------------------------------------------------- /OS/MCL/Builtins.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Builtins.df -------------------------------------------------------------------------------- /OS/MCL/Eval.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Eval.df -------------------------------------------------------------------------------- /OS/MCL/EvalPipeline.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/EvalPipeline.df -------------------------------------------------------------------------------- /OS/MCL/Input.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Input.df -------------------------------------------------------------------------------- /OS/MCL/Lex.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Lex.df -------------------------------------------------------------------------------- /OS/MCL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Makefile -------------------------------------------------------------------------------- /OS/MCL/Mcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Mcl.h -------------------------------------------------------------------------------- /OS/MCL/Parse.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Parse.df -------------------------------------------------------------------------------- /OS/MCL/Symbol.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/MCL/Symbol.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLConfiguration.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLConfiguration.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLCrypt.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLCrypt.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLEnvironment.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLEnvironment.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLFastMutex.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLFastMutex.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLFile.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLFile.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLHeap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLHeap.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLMain.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLMain.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLMemory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLMemory.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLModule.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLModule.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLModuleCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLModuleCalls.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLObject.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLObject.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLPrint.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLPrint.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLProcess.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLProcess.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLSignal.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLSignal.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLStatistics.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLStatistics.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLStatus.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLStatus.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLStream.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLStream.df -------------------------------------------------------------------------------- /OS/OSDLL/DLLTime.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/DLLTime.df -------------------------------------------------------------------------------- /OS/OSDLL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/Makefile -------------------------------------------------------------------------------- /OS/OSDLL/OSDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/OSDLL.h -------------------------------------------------------------------------------- /OS/OSDLL/fox32/DLLDebug.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/fox32/DLLDebug.df -------------------------------------------------------------------------------- /OS/OSDLL/fox32/DLLMainTrampoline.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/fox32/DLLMainTrampoline.df -------------------------------------------------------------------------------- /OS/OSDLL/fox32/DLLThreadLocal.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/fox32/DLLThreadLocal.df -------------------------------------------------------------------------------- /OS/OSDLL/fox32/OSCallStubs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/fox32/OSCallStubs.s -------------------------------------------------------------------------------- /OS/OSDLL/xr17032/DLLDebug.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/xr17032/DLLDebug.df -------------------------------------------------------------------------------- /OS/OSDLL/xr17032/DLLMainTrampoline.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/xr17032/DLLMainTrampoline.df -------------------------------------------------------------------------------- /OS/OSDLL/xr17032/DLLThreadLocal.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/xr17032/DLLThreadLocal.df -------------------------------------------------------------------------------- /OS/OSDLL/xr17032/OSCallStubs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSDLL/xr17032/OSCallStubs.s -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoConsole.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoConsole.df -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoDuplex.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoDuplex.df -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoDuplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoDuplex.h -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoDuplexClient.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoDuplexClient.df -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoDuplexDispatch.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoDuplexDispatch.df -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoDuplexServer.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoDuplexServer.df -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/Console/CoVideoConsole.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Console/CoVideoConsole.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExAvlTree.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExAvlTree.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExBalanceManager.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExBalanceManager.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExBitmap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExBitmap.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExEvent.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExEvent.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExHandleTable.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExHandleTable.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExLog.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExLog.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExMutex.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExMutex.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExRwLock.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExRwLock.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExSemaphore.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExSemaphore.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExShutdown.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExShutdown.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/ExTimer.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/ExTimer.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/fox32/ExBuildDate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/fox32/ExBuildDate.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/fox32/OSCallTrampolines.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/fox32/OSCallTrampolines.s -------------------------------------------------------------------------------- /OS/OSKernel/Executive/xr17032/ExBuildDate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/xr17032/ExBuildDate.df -------------------------------------------------------------------------------- /OS/OSKernel/Executive/xr17032/OSCallTrampolines.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Executive/xr17032/OSCallTrampolines.s -------------------------------------------------------------------------------- /OS/OSKernel/FSRTL/FSVolume.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/FSRTL/FSVolume.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOCache.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOCache.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOCacheInfoBlock.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOCacheInfoBlock.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOCachePage.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOCachePage.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOCacheZero.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOCacheZero.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOCancel.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOCancel.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IODevice.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IODevice.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOFile.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOFile.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOFileControlBlock.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOFileControlBlock.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOFilesystem.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOFilesystem.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOInit.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/IO/IONullZeroDevice.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IONullZeroDevice.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOPacket.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOPacket.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOPageFile.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOPageFile.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOParse.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOParse.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOPartition.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOPartition.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOPartitionAPT.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOPartitionAPT.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOPartitionMBR.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOPartitionMBR.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOReadWrite.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOReadWrite.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOTransfer.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOTransfer.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOViewCache.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOViewCache.df -------------------------------------------------------------------------------- /OS/OSKernel/IO/IOWorkerThreads.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IO/IOWorkerThreads.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCCompletion.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCCompletion.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCInit.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCMessage.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCMessage.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCPort.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCPort.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCPortConnect.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCPortConnect.df -------------------------------------------------------------------------------- /OS/OSKernel/IPC/IPCSendReceive.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/IPC/IPCSendReceive.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeAPC.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeAPC.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeCrash.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeCrash.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeDFGlue.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeDFGlue.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeDPC.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeDPC.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeDispatcher.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeDispatcher.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeEvent.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeEvent.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeIPL.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeIPL.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeMain.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeMain.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeMutex.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeMutex.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeProcess.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeProcess.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeSemaphore.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeSemaphore.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeStatistics.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeStatistics.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeThread.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeThread.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeThreadDispatcher.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeThreadDispatcher.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeThreadWait.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeThreadWait.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/KeTimer.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/KeTimer.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/fox32/KeException.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/fox32/KeException.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/fox32/KeSafeAccess.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/fox32/KeSafeAccess.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/xr17032/KeException.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/xr17032/KeException.df -------------------------------------------------------------------------------- /OS/OSKernel/Kernel/xr17032/KeSafeAccess.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Kernel/xr17032/KeSafeAccess.df -------------------------------------------------------------------------------- /OS/OSKernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Makefile -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmAnonymousPage.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmAnonymousPage.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmEvictable.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmEvictable.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmFasterHeap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmFasterHeap.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmFault.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmFault.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmIOMap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmIOMap.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmKernelStack.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmKernelStack.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmMDL.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmMDL.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmMap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmMap.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmModifiedPageWriter.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmModifiedPageWriter.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmPageAlloc.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmPageAlloc.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmPool.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmPool.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmPrivateAllocate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmPrivateAllocate.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmProcess.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmProcess.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmProcessHeader.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmProcessHeader.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmQuota.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmQuota.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmSection.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmSection.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmSwapWorker.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmSwapWorker.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmSystemPage.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmSystemPage.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmVAD.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmVAD.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmViewCache.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmViewCache.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmWorkingSetList.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmWorkingSetList.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmZeroPageWorker.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmZeroPageWorker.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/MmZone.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/MmZone.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/fox32/MmFlushCache.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/fox32/MmFlushCache.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/fox32/MmPTELinear.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/fox32/MmPTELinear.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/fox32/MmPageDirectory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/fox32/MmPageDirectory.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/fox32/MmPlatformInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/fox32/MmPlatformInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/xr17032/MmFlushCache.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/xr17032/MmFlushCache.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/xr17032/MmPTELinear.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/xr17032/MmPTELinear.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/xr17032/MmPageDirectory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/xr17032/MmPageDirectory.df -------------------------------------------------------------------------------- /OS/OSKernel/Memory/xr17032/MmPlatformInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Memory/xr17032/MmPlatformInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObCreate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObCreate.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObDirectory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObDirectory.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObDuplicate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObDuplicate.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObObject.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObObject.df -------------------------------------------------------------------------------- /OS/OSKernel/Object/ObWait.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Object/ObWait.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsCreate.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsCreate.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsDelete.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsDelete.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsInternal.h -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsJob.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsJob.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsProcess.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsProcess.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsThread.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsThread.df -------------------------------------------------------------------------------- /OS/OSKernel/Process/PsUserEntry.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Process/PsUserEntry.df -------------------------------------------------------------------------------- /OS/OSKernel/Security/SeCheck.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Security/SeCheck.df -------------------------------------------------------------------------------- /OS/OSKernel/Security/SeInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Security/SeInit.df -------------------------------------------------------------------------------- /OS/OSKernel/Security/SeOSCalls.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/Security/SeOSCalls.df -------------------------------------------------------------------------------- /OS/OSKernel/include/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Console.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Console/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Console/Console.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Console/VideoConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Console/VideoConsole.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/AvlTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/AvlTree.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Boost.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Call.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Event.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Handle.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Mutex.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/RwLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/RwLock.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Semaphore.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Shutdown.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Executive/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Executive/Timer.h -------------------------------------------------------------------------------- /OS/OSKernel/include/FSRTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/FSRTL.h -------------------------------------------------------------------------------- /OS/OSKernel/include/FSRTL/FSVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/FSRTL/FSVolume.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/Cache.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/Device.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/Dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/Dispatch.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/Filesystem.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/IO.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/Packet.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/PageFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/PageFile.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/Partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/Partition.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IO/ReadWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IO/ReadWrite.h -------------------------------------------------------------------------------- /OS/OSKernel/include/IPC.h: -------------------------------------------------------------------------------- 1 | #include "/IPC/Port.h" -------------------------------------------------------------------------------- /OS/OSKernel/include/IPC/Port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/IPC/Port.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/APC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/APC.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Crash.h: -------------------------------------------------------------------------------- 1 | extern KeCrash { ... fmt -- } -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/DPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/DPC.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Dispatch.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Event.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/IPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/IPL.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Mutex.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Process.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Semaphore.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Time.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Kernel/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Kernel/Timer.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Evict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Evict.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/IORegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/IORegion.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/MDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/MDL.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Memory.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/PTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/PTE.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Pool.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Process.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Quota.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Section.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/VAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/VAD.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/ViewCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/ViewCache.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Memory/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Memory/Zone.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Object.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Object/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Object/Directory.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Object/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Object/Object.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Object/Wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Object/Wait.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Process.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Process/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Process/Process.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Security.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Security/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Security/Security.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Transfer.h -------------------------------------------------------------------------------- /OS/OSKernel/include/Video.h: -------------------------------------------------------------------------------- 1 | #include "/Video/Draw.h" -------------------------------------------------------------------------------- /OS/OSKernel/include/Video/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/Video/Draw.h -------------------------------------------------------------------------------- /OS/OSKernel/include/ViewCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/ViewCache.h -------------------------------------------------------------------------------- /OS/OSKernel/include/ViewCache/ViewCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSKernel/include/ViewCache/ViewCache.h -------------------------------------------------------------------------------- /OS/OSLoader/LdrAisixFS.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrAisixFS.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrArgs.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrArgs.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrBitmap.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrBitmap.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrBootDrivers.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrBootDrivers.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrBootResources.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrBootResources.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrFileIO.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrFileIO.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrMain.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrMain.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrMemory.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrMemory.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrModule.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrModule.df -------------------------------------------------------------------------------- /OS/OSLoader/LdrResourceFile.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/LdrResourceFile.df -------------------------------------------------------------------------------- /OS/OSLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/Makefile -------------------------------------------------------------------------------- /OS/OSLoader/OSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/OSLoader.h -------------------------------------------------------------------------------- /OS/OSLoader/OSLoaderGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/OSLoaderGlobal.h -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/LdrXRstationInit.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/LdrXRstationInit.df -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/LdrXr17032Map.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/LdrXr17032Map.df -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/OSLoader.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/OSLoader.mk -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/bootcode/AisixFSBoot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/bootcode/AisixFSBoot.s -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/bootcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/bootcode/Makefile -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/bootcode/a3xBootDescriptor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/bootcode/a3xBootDescriptor.s -------------------------------------------------------------------------------- /OS/OSLoader/XRstation/bootcode/mint.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/XRstation/bootcode/mint.bmp -------------------------------------------------------------------------------- /OS/OSLoader/fox32/LdrFox32Init.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/LdrFox32Init.df -------------------------------------------------------------------------------- /OS/OSLoader/fox32/LdrFox32Map.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/LdrFox32Map.df -------------------------------------------------------------------------------- /OS/OSLoader/fox32/LdrFox32Video.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/LdrFox32Video.df -------------------------------------------------------------------------------- /OS/OSLoader/fox32/OSLoader.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/OSLoader.mk -------------------------------------------------------------------------------- /OS/OSLoader/fox32/PC.8x8.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/PC.8x8.hcf -------------------------------------------------------------------------------- /OS/OSLoader/fox32/_start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/_start.s -------------------------------------------------------------------------------- /OS/OSLoader/fox32/bootcode/AisixFSBoot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/bootcode/AisixFSBoot.s -------------------------------------------------------------------------------- /OS/OSLoader/fox32/bootcode/FoxJump.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/bootcode/FoxJump.s -------------------------------------------------------------------------------- /OS/OSLoader/fox32/bootcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/bootcode/Makefile -------------------------------------------------------------------------------- /OS/OSLoader/fox32/fox32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/OSLoader/fox32/fox32.h -------------------------------------------------------------------------------- /OS/SystemInit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/SystemInit/Makefile -------------------------------------------------------------------------------- /OS/SystemInit/SiMain.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/SystemInit/SiMain.df -------------------------------------------------------------------------------- /OS/SystemInit/SiSwapFiles.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/SystemInit/SiSwapFiles.df -------------------------------------------------------------------------------- /OS/SystemInit/SiSystemManagement.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/SystemInit/SiSystemManagement.df -------------------------------------------------------------------------------- /OS/SystemInit/SiTime.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/SystemInit/SiTime.df -------------------------------------------------------------------------------- /OS/SystemInit/SystemInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/SystemInit/SystemInit.h -------------------------------------------------------------------------------- /OS/Window/BME/Init.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Window/BME/Init.df -------------------------------------------------------------------------------- /OS/Window/BME/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Window/BME/Makefile -------------------------------------------------------------------------------- /OS/Window/BME/Region.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Window/BME/Region.df -------------------------------------------------------------------------------- /OS/Window/Drivers/KinnowFB/Init.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Window/Drivers/KinnowFB/Init.df -------------------------------------------------------------------------------- /OS/Window/Drivers/KinnowFB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/OS/Window/Drivers/KinnowFB/Makefile -------------------------------------------------------------------------------- /OS/Window/README: -------------------------------------------------------------------------------- 1 | Sources for MINTIA Window Subsystem -------------------------------------------------------------------------------- /Project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Project.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/README.md -------------------------------------------------------------------------------- /Root/home/guest/README: -------------------------------------------------------------------------------- 1 | MINTIA is cool! 2 | -------------------------------------------------------------------------------- /Root/mintia/BootDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootDrivers.txt -------------------------------------------------------------------------------- /Root/mintia/BootResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources.txt -------------------------------------------------------------------------------- /Root/mintia/BootResources/Fixed.10x20.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Fixed.10x20.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Fixed.18x18.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Fixed.18x18.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Fixed.6x13.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Fixed.6x13.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Haiku.6x12.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Haiku.6x12.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Mach.8x12.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Mach.8x12.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/PC.8x16.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/PC.8x16.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/PC.8x8.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/PC.8x8.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Sony.12x24.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Sony.12x24.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Sony.8x16.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Sony.8x16.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Sun.12x22.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Sun.12x22.hcf -------------------------------------------------------------------------------- /Root/mintia/BootResources/Terminus.8x16.hcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/BootResources/Terminus.8x16.hcf -------------------------------------------------------------------------------- /Root/mintia/SystemInit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/SystemInit.cfg -------------------------------------------------------------------------------- /Root/mintia/SystemInit.cfg.small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/SystemInit.cfg.small -------------------------------------------------------------------------------- /Root/mintia/boot.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/boot.cmd -------------------------------------------------------------------------------- /Root/mintia/groups.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/groups.cfg -------------------------------------------------------------------------------- /Root/mintia/help/0/amssrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/0/amssrv -------------------------------------------------------------------------------- /Root/mintia/help/0/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/0/help -------------------------------------------------------------------------------- /Root/mintia/help/0/login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/0/login -------------------------------------------------------------------------------- /Root/mintia/help/0/systeminit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/0/systeminit -------------------------------------------------------------------------------- /Root/mintia/help/1/aptdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/aptdisk -------------------------------------------------------------------------------- /Root/mintia/help/1/cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/cat -------------------------------------------------------------------------------- /Root/mintia/help/1/chgrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/chgrp -------------------------------------------------------------------------------- /Root/mintia/help/1/chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/chmod -------------------------------------------------------------------------------- /Root/mintia/help/1/chown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/chown -------------------------------------------------------------------------------- /Root/mintia/help/1/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/clear -------------------------------------------------------------------------------- /Root/mintia/help/1/cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/cmd -------------------------------------------------------------------------------- /Root/mintia/help/1/cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/cp -------------------------------------------------------------------------------- /Root/mintia/help/1/crypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/crypt -------------------------------------------------------------------------------- /Root/mintia/help/1/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/date -------------------------------------------------------------------------------- /Root/mintia/help/1/dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/dd -------------------------------------------------------------------------------- /Root/mintia/help/1/dhrystone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/dhrystone -------------------------------------------------------------------------------- /Root/mintia/help/1/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/echo -------------------------------------------------------------------------------- /Root/mintia/help/1/edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/edit -------------------------------------------------------------------------------- /Root/mintia/help/1/groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/groups -------------------------------------------------------------------------------- /Root/mintia/help/1/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/kill -------------------------------------------------------------------------------- /Root/mintia/help/1/killall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/killall -------------------------------------------------------------------------------- /Root/mintia/help/1/kstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/kstats -------------------------------------------------------------------------------- /Root/mintia/help/1/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/label -------------------------------------------------------------------------------- /Root/mintia/help/1/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/ls -------------------------------------------------------------------------------- /Root/mintia/help/1/mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/mem -------------------------------------------------------------------------------- /Root/mintia/help/1/mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/mkdir -------------------------------------------------------------------------------- /Root/mintia/help/1/mkfs_aisixfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/mkfs_aisixfs -------------------------------------------------------------------------------- /Root/mintia/help/1/mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/mount -------------------------------------------------------------------------------- /Root/mintia/help/1/mousedemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/mousedemo -------------------------------------------------------------------------------- /Root/mintia/help/1/mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/mv -------------------------------------------------------------------------------- /Root/mintia/help/1/nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/nvram -------------------------------------------------------------------------------- /Root/mintia/help/1/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/passwd -------------------------------------------------------------------------------- /Root/mintia/help/1/ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/ps -------------------------------------------------------------------------------- /Root/mintia/help/1/pwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/pwd -------------------------------------------------------------------------------- /Root/mintia/help/1/quota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/quota -------------------------------------------------------------------------------- /Root/mintia/help/1/reboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/reboot -------------------------------------------------------------------------------- /Root/mintia/help/1/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/rm -------------------------------------------------------------------------------- /Root/mintia/help/1/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/shutdown -------------------------------------------------------------------------------- /Root/mintia/help/1/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/sleep -------------------------------------------------------------------------------- /Root/mintia/help/1/stress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/stress -------------------------------------------------------------------------------- /Root/mintia/help/1/swapon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/swapon -------------------------------------------------------------------------------- /Root/mintia/help/1/sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/sync -------------------------------------------------------------------------------- /Root/mintia/help/1/tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/tee -------------------------------------------------------------------------------- /Root/mintia/help/1/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/time -------------------------------------------------------------------------------- /Root/mintia/help/1/trunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/trunc -------------------------------------------------------------------------------- /Root/mintia/help/1/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/umount -------------------------------------------------------------------------------- /Root/mintia/help/1/users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/users -------------------------------------------------------------------------------- /Root/mintia/help/1/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/ver -------------------------------------------------------------------------------- /Root/mintia/help/1/view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/view -------------------------------------------------------------------------------- /Root/mintia/help/1/whoami: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/help/1/whoami -------------------------------------------------------------------------------- /Root/mintia/motd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/motd.txt -------------------------------------------------------------------------------- /Root/mintia/users.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/Root/mintia/users.cfg -------------------------------------------------------------------------------- /SysCommand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/SysCommand.mk -------------------------------------------------------------------------------- /TextManifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/TextManifest -------------------------------------------------------------------------------- /TextManifestSuffixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/TextManifestSuffixed -------------------------------------------------------------------------------- /XRstation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/XRstation.mk -------------------------------------------------------------------------------- /badge-17032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/badge-17032.png -------------------------------------------------------------------------------- /badge-fox32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/badge-fox32.png -------------------------------------------------------------------------------- /fox32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/fox32.mk -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xrarch/mintia/HEAD/screenshot.png --------------------------------------------------------------------------------