aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-10-16Fix compilation issues with assigning values to page_map_variable addressMatteo Gmür5-34/+36
2024-10-16Adjust typesMatteo Gmür3-12/+10
2024-10-15add 4th level page tableFabian Imhof3-3/+56
2024-10-15rename contains_flags parameterFabian Imhof4-6/+6
2024-10-15replace standalone value with enumFabian Imhof1-1/+1
2024-10-15add assert importFabian Imhof1-0/+2
2024-10-15Fix problems with calculations inside enum (uses int32_t by default)Matteo Gmür2-32/+33
2024-10-15Adding enum flagsMatteo Gmür5-176/+94
2024-10-15implement page table membersFabian Imhof3-4/+32
2024-10-15continue implementing pagingFabian Imhof9-136/+113
2024-10-14Start developing pagingMatteo Gmür10-124/+328
2024-10-14Add more info on which elf flag means which objdump flagMatteo Gmür2-3/+28
2024-10-14Move 8 byte alignment into seperate methodMatteo Gmür1-2/+8
2024-10-14Use scoped switch statements to extract calculations to variablesMatteo Gmür2-14/+24
2024-10-14Fix typos, implementation in header and missing doxygenMatteo Gmür3-70/+125
2024-10-13continue implementing frame allocatorFabian Imhof3-41/+116
2024-10-13Add missing cpp files to cmake and fix elf alignment issuesMatteo Gmür8-52/+70
2024-10-11Ensure vscode compiles with c++20Matteo Gmür1-0/+1
2024-10-08Add additional sanity checks to elf parsingMatteo Gmür2-6/+19
2024-10-08Added doxygen comments to all fields and structsMatteo Gmür5-145/+331
2024-10-08Merge branch 'feat_memory_manager' of ↵Fabian Imhof2-16/+49
ssh://gitlab.ost.ch:45022/teachos/kernel into feat_memory_manager
2024-10-08begin implementing frame allocatorFabian Imhof2-16/+126
2024-10-08Add more asserts for elf sectionsMatteo Gmür2-16/+49
2024-10-06Improve namingMatteo Gmür2-25/+27
2024-10-06Interpret files as bitset wrapperMatteo Gmür1-10/+54
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.