dennis95 / dennix

Dennix is a unix-like hobbyist operating system written from scratch.
ISC License
163 stars 13 forks source link

Implement an ATA driver #19

Closed dennis95 closed 3 years ago

dennis95 commented 3 years ago

This would give us the ability read and write files on permanent storage.

00p513-dev commented 3 years ago

As a dennix fan i would love this feature. Then once ive got nano i have a new fav OS xD

dennis95 commented 3 years ago

I have commited an ATA driver in the ata branch. It works fine in emulators but there might still be some issues on real hardware. Currently the driver just uses ATA PIO mode which is slow. We should later switch to DMA transfers.

To be actually useful, a filesystem implementation is also needed, so I filed issue #25 for that.