aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-10-06Added elf section type enumMatteo Gmür2-35/+43
2024-10-06Use alignas instead of seperate variable in struct for paddingMatteo Gmür1-38/+3
2024-10-06Add assert methodMatteo Gmür1-0/+13
2024-10-06Revert 8 byte aligningMatteo Gmür1-12/+2
2024-10-06Remove unused variable declarationsMatteo Gmür1-34/+8
2024-10-06Remove high memory kernel and needless printsMatteo Gmür3-118/+48
2024-10-06Renaming schemeMatteo Gmür5-47/+47
2024-10-02Improve naming, add enums and move into namespaceMatteo Gmür3-174/+193
2024-10-02Creating base frame allocation codeMatteo Gmür4-2/+63
2024-10-01add structs, clean mip codeTheSoeren2-26/+120
2024-10-01Added efl section print methodMatteo Gmür2-3/+91
2024-10-01Adjust printing of memory mapMatteo Gmür2-32/+25
2024-09-30Attempt to print memory mapMatteo Gmür8-19/+59
2024-09-29create write_number functionTheSoeren3-12/+63
2024-09-29read basic mem infoTheSoeren2-10/+62
2024-09-29use multiboot_information_pointer public variableTheSoeren6-13/+28
2024-09-29Pass multiboot to main from edi registerMatteo Gmür2-5/+6
2024-09-29Pass multiboot info to main functionMatteo Gmür3-3/+11
2024-09-24Merge branch 'feat_launch_settings' into 'develop'Felix Morgner3-8/+3
Improve launch settings See merge request teachos/kernel!1
2024-09-24Remove developer dependencyMatteo Gmür1-2/+1
2024-09-24Remove not required packageFelix Morgner1-1/+0
2024-09-24Improve launch settingsMatteo Gmür3-8/+5
2024-09-17doc: add information about launching the kernelFelix Morgner1-0/+5
2024-09-17conan: remove remnantsFelix Morgner1-26/+0
2024-09-17ide: add problem matcher for gdb launchFelix Morgner1-3/+14
While this is not strictly necessary for a standalone launch, Visual Studio Code is not happy when we have a long running (longer than the debug session) preLaunchTask without a problem matcher. In essence, we define the task as having finished launching, when QEMU informs us about the open VNC port.
2024-09-17ide: boot the kernel when launching the debuggerFelix Morgner1-2/+2
2024-09-17build: user no-red-zone CRT codeFelix Morgner1-1/+1
Even though it makes no difference, since the CRT code we pull in from the toolchain will never touch the red zone in the first place, it is a good idea to try to be consistent across the build.
2024-09-17build: fix CRT code linkingFelix Morgner1-6/+6
CMake used to generate object files with a .obj extension. This appears to no longer be the case. As a fallback, we now match on 'o*' for the CRT code in the linker script. As of now, it is unclear when this change happened.
2024-09-17build: fix missing information after migrationFelix Morgner1-3/+3
2024-09-17ide: adjust available boot targetsFelix Morgner1-2/+1
2024-09-17ide: update devcontainer configurationFelix Morgner1-1/+5
2024-09-17build: migrate away from conanFelix Morgner27-116/+57
2023-10-19doc: add a basic READMEFelix Morgner1-0/+69
2023-10-17doc: introduce basic documentation structureFelix Morgner12-12/+99
2023-10-12docs: add basic documentation for asm_pointerFelix Morgner6-14/+82
2023-10-12memory: fix namespace of asm_pointerFelix Morgner2-5/+5
2023-10-12docs: enable sphinx HTML buildFelix Morgner6-4/+80
2023-10-12build: enable doxygen XML generationFelix Morgner2-0/+19
2023-10-12ide: configure formattingFelix Morgner1-0/+6
2023-10-12x86_64: build: ensure RelWithDebInfo debug infoFelix Morgner1-0/+2
2023-10-12build: switch to ninja multi-config generatorFelix Morgner5-11/+25
2023-10-11ide: allow selection of boot imageFelix Morgner1-2/+14
2023-10-11x86_64: kernel: fix .init section linkingFelix Morgner1-2/+2
2023-10-11conan: ensure the correct assembler is foundFelix Morgner1-1/+1
2023-10-11x86_64: vga: implement basic cursor configurationFelix Morgner4-4/+48
2023-10-11x86_64: io: implement simple port I/O operationsFelix Morgner1-0/+131
2023-10-11x86_64: vga: improve text mode clear codeFelix Morgner1-1/+1
2023-10-11x86_64: vga: add documentation for text mode APIFelix Morgner2-21/+59
2023-10-11x86_64: vga: improve text printing codeFelix Morgner6-20/+72
2023-10-11teachos: restructure file layoutFelix Morgner22-117/+148