Extensible Driver Interface

From OSDev.wiki
Revision as of 16:04, 11 January 2010 by osdev>Nedbrek (Added link)
Jump to navigation Jump to search

EDI is a driver interface intended to be source code portable and fairly simple in implementation, so that hobby small hobby OSs may share driver code base.

Introduction

EDI was writen by Eli Gottlieb in 2006 after he realised that UDI was inappropriate for the vast variety of operating system designs that exist in the hobby OSDev world. It is designed to require very little from the system providing the implementation, while still allowing for simple extension. This is done by using an object oriented model accessed using C functions, allowing drivers and operating systems in almost all languages to use it.

Specification

For the complete specification see James Molloy's mirror.


Implementations

Operating Systems

Drivers

  • Sample Serial Driver - Included with specification