├── .gitignore ├── LICENSE ├── MicroKernel ├── Makefile ├── bootdata.h ├── cintr.c ├── cintr.h ├── debug.c ├── debug.h ├── error.h ├── exec.c ├── exec.h ├── global.c ├── head.asm ├── intr.asm ├── ipc.c ├── ipc.h ├── kalloc.c ├── kalloc.h ├── knldef.h ├── page.c ├── page.h ├── task.c ├── task.h ├── ulidef.h ├── ulios.c ├── ulios.h ├── ulios.ld └── x86cpu.h ├── MkApi ├── app.ld ├── app_align.ld ├── app_elf32.ld ├── apphead.c └── ulimkapi.h ├── README.md ├── apps ├── 1024.c ├── 3demo.c ├── 3dline.c ├── Makefile ├── calc.c ├── clock.c ├── cmd.c ├── desktop.c ├── gmgr.c ├── gravit.c ├── guitest.c ├── jpg.c ├── life.c ├── loader.c ├── logo.c ├── sortdemo.c ├── tank.c └── workout.c ├── boot ├── build.bat ├── c0.asm ├── fat32 │ ├── f32boot.asm │ └── f32ldr.c ├── setup.asm ├── setup386.asm └── ulifs │ ├── uliboot.asm │ └── ulildr.c ├── driver ├── Makefile ├── athd.c ├── basesrv.h ├── cui.c ├── font.c ├── ime.c ├── kbdmus.c ├── pci.c ├── rep.c ├── speaker.c ├── time.c ├── uart.c └── vesa.c ├── env.bat ├── fs ├── Makefile ├── cache.c ├── fat32.c ├── fs.c ├── fs.h ├── fsalloc.c ├── fsapi.c ├── fsapi.h └── ulifs.c ├── gui ├── Makefile ├── gui.h ├── guiapi.c ├── guiapi.h ├── guikbms.c ├── guilib.c ├── guiobj.c └── guirect.c ├── lib ├── Makefile ├── gclient.c ├── gclient.h ├── gcres.h ├── gdi.c ├── gdi.h ├── malloc.c ├── malloc.h ├── math.h ├── string.c └── string.h └── tools ├── bmp2res.c ├── buddy.c ├── build.bat ├── fmtboot.c └── ulifsfmt.c /.gitignore: -------------------------------------------------------------------------------- 1 | # Object files 2 | *.o 3 | *.ko 4 | *.obj 5 | *.elf 6 | 7 | # Precompiled Headers 8 | *.gch 9 | *.pch 10 | 11 | # Libraries 12 | *.lib 13 | *.a 14 | *.la 15 | *.lo 16 | 17 | # Shared objects (inc. Windows DLLs) 18 | *.dll 19 | *.so 20 | *.so.* 21 | *.dylib 22 | 23 | # Executables 24 | *.exe 25 | *.out 26 | *.app 27 | *.i*86 28 | *.x86_64 29 | *.hex 30 | 31 | # Debug files 32 | *.dSYM/ 33 | *.su 34 | 35 | objs 36 | out 37 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /MicroKernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/Makefile -------------------------------------------------------------------------------- /MicroKernel/bootdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/bootdata.h -------------------------------------------------------------------------------- /MicroKernel/cintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/cintr.c -------------------------------------------------------------------------------- /MicroKernel/cintr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/cintr.h -------------------------------------------------------------------------------- /MicroKernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/debug.c -------------------------------------------------------------------------------- /MicroKernel/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/debug.h -------------------------------------------------------------------------------- /MicroKernel/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/error.h -------------------------------------------------------------------------------- /MicroKernel/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/exec.c -------------------------------------------------------------------------------- /MicroKernel/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/exec.h -------------------------------------------------------------------------------- /MicroKernel/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/global.c -------------------------------------------------------------------------------- /MicroKernel/head.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/head.asm -------------------------------------------------------------------------------- /MicroKernel/intr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/intr.asm -------------------------------------------------------------------------------- /MicroKernel/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/ipc.c -------------------------------------------------------------------------------- /MicroKernel/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/ipc.h -------------------------------------------------------------------------------- /MicroKernel/kalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/kalloc.c -------------------------------------------------------------------------------- /MicroKernel/kalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/kalloc.h -------------------------------------------------------------------------------- /MicroKernel/knldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/knldef.h -------------------------------------------------------------------------------- /MicroKernel/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/page.c -------------------------------------------------------------------------------- /MicroKernel/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/page.h -------------------------------------------------------------------------------- /MicroKernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/task.c -------------------------------------------------------------------------------- /MicroKernel/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/task.h -------------------------------------------------------------------------------- /MicroKernel/ulidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/ulidef.h -------------------------------------------------------------------------------- /MicroKernel/ulios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/ulios.c -------------------------------------------------------------------------------- /MicroKernel/ulios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/ulios.h -------------------------------------------------------------------------------- /MicroKernel/ulios.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("binary") 2 | ENTRY(_start) 3 | SECTIONS 4 | { 5 | _gdt = 0; 6 | _idt = 0x0800; 7 | _kpdt = 0x1000; 8 | _pddt = 0x2000; 9 | _kmmt = 0x3000; 10 | _pmt = 0x6000; 11 | _kpt = 0x7000; 12 | 13 | _KnlValue = 0xF000; 14 | 15 | .text 0x10000: {*(.text)} 16 | .data : {*(.data)} 17 | .bss : {*(.bss)} 18 | 19 | _BaseSrv = 0x90080; 20 | _MemEnd = 0x900FC; 21 | _ards = 0x90100; 22 | 23 | _kdat = 0x00100000; 24 | _pdt = 0x00800000; 25 | _pt = 0x00C00000; 26 | _pt0 = 0x01000000; 27 | _pt2 = 0x01400000; 28 | _pg0 = 0x01800000; 29 | } 30 | -------------------------------------------------------------------------------- /MicroKernel/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MicroKernel/x86cpu.h -------------------------------------------------------------------------------- /MkApi/app.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("binary") 2 | ENTRY(_start) 3 | SECTIONS 4 | { 5 | .text 0x08000000: {*(.text)} 6 | .data : {*(.data)} 7 | .bss : {*(.bss)} 8 | } 9 | -------------------------------------------------------------------------------- /MkApi/app_align.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("binary") 2 | ENTRY(_start) 3 | SECTIONS 4 | { 5 | .text 0x08000000: {*(.text)} 6 | .data ALIGN(0x1000): {*(.data)} 7 | .bss : {*(.bss)} 8 | } 9 | -------------------------------------------------------------------------------- /MkApi/app_elf32.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("elf32-i386") 2 | ENTRY(_start) 3 | SECTIONS 4 | { 5 | .text 0x08000000: {*(.text)} 6 | .data : {*(.data)} 7 | .bss : {*(.bss)} 8 | } 9 | -------------------------------------------------------------------------------- /MkApi/apphead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MkApi/apphead.c -------------------------------------------------------------------------------- /MkApi/ulimkapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/MkApi/ulimkapi.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ulios2 2 | A Micro Kernel Operating System 3 | -------------------------------------------------------------------------------- /apps/1024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/1024.c -------------------------------------------------------------------------------- /apps/3demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/3demo.c -------------------------------------------------------------------------------- /apps/3dline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/3dline.c -------------------------------------------------------------------------------- /apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/Makefile -------------------------------------------------------------------------------- /apps/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/calc.c -------------------------------------------------------------------------------- /apps/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/clock.c -------------------------------------------------------------------------------- /apps/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/cmd.c -------------------------------------------------------------------------------- /apps/desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/desktop.c -------------------------------------------------------------------------------- /apps/gmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/gmgr.c -------------------------------------------------------------------------------- /apps/gravit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/gravit.c -------------------------------------------------------------------------------- /apps/guitest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/guitest.c -------------------------------------------------------------------------------- /apps/jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/jpg.c -------------------------------------------------------------------------------- /apps/life.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/life.c -------------------------------------------------------------------------------- /apps/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/loader.c -------------------------------------------------------------------------------- /apps/logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/logo.c -------------------------------------------------------------------------------- /apps/sortdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/sortdemo.c -------------------------------------------------------------------------------- /apps/tank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/tank.c -------------------------------------------------------------------------------- /apps/workout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/apps/workout.c -------------------------------------------------------------------------------- /boot/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/build.bat -------------------------------------------------------------------------------- /boot/c0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/c0.asm -------------------------------------------------------------------------------- /boot/fat32/f32boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/fat32/f32boot.asm -------------------------------------------------------------------------------- /boot/fat32/f32ldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/fat32/f32ldr.c -------------------------------------------------------------------------------- /boot/setup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/setup.asm -------------------------------------------------------------------------------- /boot/setup386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/setup386.asm -------------------------------------------------------------------------------- /boot/ulifs/uliboot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/ulifs/uliboot.asm -------------------------------------------------------------------------------- /boot/ulifs/ulildr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/boot/ulifs/ulildr.c -------------------------------------------------------------------------------- /driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/Makefile -------------------------------------------------------------------------------- /driver/athd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/athd.c -------------------------------------------------------------------------------- /driver/basesrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/basesrv.h -------------------------------------------------------------------------------- /driver/cui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/cui.c -------------------------------------------------------------------------------- /driver/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/font.c -------------------------------------------------------------------------------- /driver/ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/ime.c -------------------------------------------------------------------------------- /driver/kbdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/kbdmus.c -------------------------------------------------------------------------------- /driver/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/pci.c -------------------------------------------------------------------------------- /driver/rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/rep.c -------------------------------------------------------------------------------- /driver/speaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/speaker.c -------------------------------------------------------------------------------- /driver/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/time.c -------------------------------------------------------------------------------- /driver/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/uart.c -------------------------------------------------------------------------------- /driver/vesa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/driver/vesa.c -------------------------------------------------------------------------------- /env.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | SET PATH=C:\DJGPP\BIN;%PATH% 3 | SET DJGPP=C:\DJGPP\DJGPP.ENV 4 | -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/Makefile -------------------------------------------------------------------------------- /fs/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/cache.c -------------------------------------------------------------------------------- /fs/fat32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/fat32.c -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/fs.c -------------------------------------------------------------------------------- /fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/fs.h -------------------------------------------------------------------------------- /fs/fsalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/fsalloc.c -------------------------------------------------------------------------------- /fs/fsapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/fsapi.c -------------------------------------------------------------------------------- /fs/fsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/fsapi.h -------------------------------------------------------------------------------- /fs/ulifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/fs/ulifs.c -------------------------------------------------------------------------------- /gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/Makefile -------------------------------------------------------------------------------- /gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/gui.h -------------------------------------------------------------------------------- /gui/guiapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/guiapi.c -------------------------------------------------------------------------------- /gui/guiapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/guiapi.h -------------------------------------------------------------------------------- /gui/guikbms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/guikbms.c -------------------------------------------------------------------------------- /gui/guilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/guilib.c -------------------------------------------------------------------------------- /gui/guiobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/guiobj.c -------------------------------------------------------------------------------- /gui/guirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/gui/guirect.c -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/Makefile -------------------------------------------------------------------------------- /lib/gclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/gclient.c -------------------------------------------------------------------------------- /lib/gclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/gclient.h -------------------------------------------------------------------------------- /lib/gcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/gcres.h -------------------------------------------------------------------------------- /lib/gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/gdi.c -------------------------------------------------------------------------------- /lib/gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/gdi.h -------------------------------------------------------------------------------- /lib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/malloc.c -------------------------------------------------------------------------------- /lib/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/malloc.h -------------------------------------------------------------------------------- /lib/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/math.h -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/string.c -------------------------------------------------------------------------------- /lib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/lib/string.h -------------------------------------------------------------------------------- /tools/bmp2res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/tools/bmp2res.c -------------------------------------------------------------------------------- /tools/buddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/tools/buddy.c -------------------------------------------------------------------------------- /tools/build.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | C: 4 | cd \TC 5 | TCC -lt -mt -efmtboot c:\ulios2\tools\fmtboot.c 6 | del OUT\FMTBOOT.OBJ 7 | move /y OUT\FMTBOOT.COM c:\ulios2\out\setup 8 | TCC -lt -mt -eulifsfmt c:\ulios2\tools\ulifsfmt.c 9 | del OUT\ulifsfmt.OBJ 10 | move /y OUT\ULILFSFMT.COM c:\ulios2\out\setup 11 | cd c:\ulios2\tools 12 | -------------------------------------------------------------------------------- /tools/fmtboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/tools/fmtboot.c -------------------------------------------------------------------------------- /tools/ulifsfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli2k/ulios2/78dd38ccbcc863e8d97db3a06b238194262844b7/tools/ulifsfmt.c --------------------------------------------------------------------------------