arthurmco / annOS

Arthur's Not Named Operating System, an OS with a C++ kernel.
MIT License
7 stars 0 forks source link

Add driver for the PIT timer #1

Closed arthurmco closed 6 years ago

arthurmco commented 6 years ago

Add a driver for the Intel 8254, the legacy programmable interval timer for the x86 architecture.

It's simpler, so we'll start with it.

It should provide us base for a usleep() function, and a timer for multitasking operations.

More info about it here

arthurmco commented 6 years ago

Added in 2c723e34