Writing Pong in Rust for My OS Written in Rust

This post is part of a larger effort you can view over here: https://osblog.stephenmarz.com. Read more

Similar

Writing an OS in Rust: Double Faults

In this post we explore double faults in detail. We also set up an Interrupt Stack Table to catch double faults on a separate kernel stack. This way, we can completely prevent triple faults, even on kernel stack overflow.

Read more »

Writing a Raytracer in Rust (Part 1)

Introduction Hello! This is part one of a short series of posts on writing a simple raytracer in Rust. I’ve never written one of these before, so it should be a learning experience all around. So what is a raytracer anyway? The short version is it’s a com... (more…)

Read more »