Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1.17 KB

README.md

File metadata and controls

18 lines (13 loc) · 1.17 KB

Description

This repository contains the source code for the embedded operating system kernel I wrote for an independent study in my final semester at Northeastern University. It is generally based on the kernel specification from Bill Cowan's CS452 class at UWaterloo. It runs on the Xilinx ZedBoard platform.

The majority of th kernel code is in the zedboard_os directory. The other two directories contain the BSP generated by the Xilinx SDK, but contain some small changes.

This code was originally hosted on a private repo owned by my school but was recently moved over to this location.

Note This will most likely only build/run for me since it requires a specific configuration of the Xilinx SDK, a specific version of QEMU, and/or a ZedBoard with a specific FPGA build.

Documentation

This is a simple pre-emptive multitasking kernel that impelements all tasks in a single shared flat memory space. There is very little kernel/user separation.

Documentation for the internal design and API of the kernel can be found in the paper I wrote at the end of the semester, in documentation.pdf.