<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Gyimah-Benjamin</title>
    <description>The latest articles on DEV Community by Gyimah-Benjamin (@janosdev).</description>
    <link>https://dev.to/janosdev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3948882%2Fe668b1fe-63ea-4c00-819b-3c716543a53b.jpg</url>
      <title>DEV Community: Gyimah-Benjamin</title>
      <link>https://dev.to/janosdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/janosdev"/>
    <language>en</language>
    <item>
      <title>I built a 32-bit OS from scratch and named it after my mom</title>
      <dc:creator>Gyimah-Benjamin</dc:creator>
      <pubDate>Sun, 24 May 2026 10:33:08 +0000</pubDate>
      <link>https://dev.to/janosdev/i-built-a-32-bit-os-from-scratch-and-named-it-after-my-mom-5gam</link>
      <guid>https://dev.to/janosdev/i-built-a-32-bit-os-from-scratch-and-named-it-after-my-mom-5gam</guid>
      <description>&lt;h2&gt;
  
  
  The Beginning
&lt;/h2&gt;

&lt;p&gt;A few months ago I didn't know what a bootloader was.&lt;br&gt;
Today I have a working 32-bit operating system called &lt;br&gt;
JanOS — named after my mom who supported me through &lt;br&gt;
the entire journey.&lt;/p&gt;
&lt;h2&gt;
  
  
  What is JanOS?
&lt;/h2&gt;

&lt;p&gt;JanOS is a 32-bit x86 operating system built completely &lt;br&gt;
from scratch in C and x86 Assembly. No frameworks. &lt;br&gt;
No shortcuts. Every line written and understood.&lt;/p&gt;
&lt;h2&gt;
  
  
  What it can do
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Custom bootloader that loads the kernel via LBA&lt;/li&gt;
&lt;li&gt;32-bit protected mode with GDT&lt;/li&gt;
&lt;li&gt;FAT12 file system (read, write, delete files)&lt;/li&gt;
&lt;li&gt;Persistent storage via custom ATA driver&lt;/li&gt;
&lt;li&gt;Shell with 10+ commands&lt;/li&gt;
&lt;li&gt;Memory management with paging&lt;/li&gt;
&lt;li&gt;Hardware cursor&lt;/li&gt;
&lt;li&gt;Keyboard with shift support&lt;/li&gt;
&lt;li&gt;History navigation with arrow keys&lt;/li&gt;
&lt;li&gt;Screen scrolling&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  The hardest part
&lt;/h2&gt;

&lt;p&gt;Making files persist across reboots was the biggest &lt;br&gt;
challenge. I had to write a custom ATA driver that &lt;br&gt;
talks directly to the disk controller hardware through &lt;br&gt;
ports. No BIOS, no shortcuts — just raw hardware &lt;br&gt;
communication.&lt;/p&gt;
&lt;h2&gt;
  
  
  What I learned
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;How the CPU actually boots&lt;/li&gt;
&lt;li&gt;How memory is really managed&lt;/li&gt;
&lt;li&gt;How files are actually stored on disk&lt;/li&gt;
&lt;li&gt;How keyboard input really works&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Video
&lt;/h2&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/zJf154-crlg"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Screenshot
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F29ikqceyd9kvpkre5bbc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F29ikqceyd9kvpkre5bbc.png" alt=" " width="713" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flmpdvenqx3caot19bo8v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flmpdvenqx3caot19bo8v.png" alt=" " width="721" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;IDT (interrupt handling)&lt;/li&gt;
&lt;li&gt;Multitasking&lt;/li&gt;
&lt;li&gt;GUI&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it yourself
&lt;/h2&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Gyimah-Benjamin/JanOS" rel="noopener noreferrer"&gt;https://github.com/Gyimah-Benjamin/JanOS&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Still building. This is just the beginning 🚀&lt;/p&gt;

</description>
      <category>programming</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>systems</category>
    </item>
  </channel>
</rss>
