awesome-repositories.comCategoriesBlog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
intermezzOS avatar

intermezzOS/kernelArchived

0
View on GitHub↗
1,396 stars·89 forks·Rust·Apache-2.0·14 viewsintermezzos.github.io↗

Kernel

Kernel is an educational hobby operating system and low-level systems programming project written in Rust. Designed for students and hobbyists, the project provides a minimalist environment to explore computer architecture, CPU design, and kernel development directly on hardware without relying on a standard library or underlying operating system.

The implementation features a freestanding language runtime and a custom target specification that replaces standard library components for bare-metal execution. It includes a multiboot bootloader interface to parse early-boot hardware handoff states, an interrupt descriptor table to route CPU exceptions and hardware interrupts, and direct hardware communication layers using both memory-mapped input-output and port-mapped hardware control mechanisms.

Features

  • Operating System Kernels - Executes a basic operating system kernel to demonstrate low-level hardware interaction and systems programming concepts.
  • CPU Port-Mapped Controls - Communicates directly with peripheral chips using dedicated CPU port instructions and low-level I/O mechanisms.
  • Bare-Metal Runtimes - Provides a freestanding language runtime and custom target specification to replace standard library components for bare-metal execution.
  • Interrupt Descriptor Tables - Implements an interrupt descriptor table to route CPU exceptions and external hardware interrupts to specific handler routines.
  • Multiboot Standard Implementations - Parses early-boot hardware handoff states via a standardized multiboot bootloader interface.
  • Memory-Mapped I/O Interfaces - Interacts directly with device registers and display buffers through designated physical memory addresses.
  • Educational Environments - Provides a minimalist environment intended for students and hobbyists learning computer architecture directly on hardware.
  • Operating System Development - Enables building a custom operating system kernel from scratch in Rust to explore low-level hardware interaction.
  • Operating Systems - Builds a custom operating system kernel from scratch using Rust to explore low-level hardware interaction.

Star history

Star history chart for intermezzos/kernelStar history chart for intermezzos/kernel

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does intermezzos/kernel do?

Kernel is an educational hobby operating system and low-level systems programming project written in Rust. Designed for students and hobbyists, the project provides a minimalist environment to explore computer architecture, CPU design, and kernel development directly on hardware without relying on a standard library or underlying operating system.

What are the main features of intermezzos/kernel?

The main features of intermezzos/kernel are: Operating System Kernels, CPU Port-Mapped Controls, Bare-Metal Runtimes, Interrupt Descriptor Tables, Multiboot Standard Implementations, Memory-Mapped I/O Interfaces, Educational Environments, Operating System Development.

What are some open-source alternatives to intermezzos/kernel?

Open-source alternatives to intermezzos/kernel include: cirosantilli/x86-bare-metal-examples — This project is a collection of minimal operating systems, bootloaders, and hardware drivers used to demonstrate… limine-bootloader/limine — Limine is a multiprotocol operating system bootloader that bridges low-level hardware initialization and system… reactos/reactos — ReactOS is an open-source operating system designed to be binary compatible with Windows applications and drivers. It… chyyuu/os_kernel_lab — This project is an educational framework and toolkit designed for developing and testing operating system kernels. It… ccareaga/heap_allocator — This project is a C-based heap management library designed for systems programming environments that require manual… geohot/fromthetransistor — This project consists of technical instructional guides and a structured computer science curriculum designed to teach…

Open-source alternatives to Kernel

Similar open-source projects, ranked by how many features they share with Kernel.
  • cirosantilli/x86-bare-metal-examplescirosantilli avatar

    cirosantilli/x86-bare-metal-examples

    5,306View on GitHub↗

    This project is a collection of minimal operating systems, bootloaders, and hardware drivers used to demonstrate low-level x86 system programming and hardware interfacing. It serves as a kernel development toolkit and a system programming lab designed for testing architecture concepts and hardware behavior within a system emulator. The repository provides reference implementations for creating bootable disk images and loading kernel stages. It includes guides for implementing protected mode transitions, memory paging, interrupt descriptor tables, and symmetric multiprocessing on x86 hardware.

    Assemblyassemblybare-metalbaremetal
    View on GitHub↗5,306
  • limine-bootloader/limineLimine-Bootloader avatar

    Limine-Bootloader/Limine

    3,381View on GitHub↗

    Limine is a multiprotocol operating system bootloader that bridges low-level hardware initialization and system software across legacy BIOS and modern UEFI firmware environments. It executes directly on bare-metal hardware without an underlying operating system kernel or standard C library, parsing storage media and filesystems during the early boot sequence before OS drivers load. The software targets diverse processor architectures including x86, ARM, RISC-V, and LoongArch through discrete target binaries built from shared source code. It reads files directly from FAT and ISO9660 storage f

    Caarch64armarm64
    View on GitHub↗3,381
  • reactos/reactosreactos avatar

    reactos/reactos

    17,661View on GitHub↗

    ReactOS is an open-source operating system designed to be binary compatible with Windows applications and drivers. It consists of a low-level system kernel that manages hardware resources and a binary compatibility layer that enables the execution of software designed for the Windows binary interface. The project implements a cross-platform build system and toolchain for compiling and deploying bootable operating system images across different hardware architectures. This includes the use of cross-compilation toolchains and a hardware-abstraction layer to support various processor and motherb

    Ccdriversgpl
    View on GitHub↗17,661
  • chyyuu/os_kernel_labchyyuu avatar

    chyyuu/os_kernel_lab

    4,045View on GitHub↗

    This project is an educational framework and toolkit designed for developing and testing operating system kernels. It provides a structured environment for implementing fundamental system primitives, including virtual memory management, preemptive process scheduling, and filesystem organization, using Rust and C. The framework is specifically oriented toward RISC-V and x86 architectures, serving as a laboratory for learning how to build core system software from the ground up. The project distinguishes itself by supporting both bare-metal deployment and hardware emulation, allowing developers

    Rustkernellabos
    View on GitHub↗4,045
See all 29 alternatives to Kernel→

Curated searches featuring Kernel

Hand-picked collections where Kernel appears.
  • Kernel integration layers