OSDev.org
https://forum.osdev.org/

My New OS - GrapeOS
https://forum.osdev.org/viewtopic.php?f=2&t=32753
Page 1 of 1

Author:  GrapeOS [ Tue Feb 13, 2018 8:49 am ]
Post subject:  My New OS - GrapeOS

Hey everyone. I have just started an operating system project called GrapeOS. I have a github website for it, and you can check it out at https://grape-os.github.io. Here are my goals of the project:
- Have a very minimal kernel
- Have a vesa 1024x768 24bpp driver -- NOT 32 BPP!
- Have my own filesystem
- Network and USB support
- Written entirely in assembly language

Thank you for reading, and have a nice day
GrapeOS

Author:  BrightLight [ Wed Feb 14, 2018 8:23 am ]
Post subject:  Re: My New OS - GrapeOS

Hi and welcome to the loveliest community on the internet. There are a few things I'd like to say.
First, announcements like these go in the Announcements sub-forum. This OSDev sub-forum is for questions regarding OS implementation.

Second, it's better not to write an entire OS in assembly language. I've done it before, and while writing assembly can be really easy if you're fluent in it, it gets cluttered quickly, especially with big code like networking and USB, like you say you want. So don't make the same mistakes others have made.

Third, VESA is just a group of BIOS functions for setting display resolution. You shouldn't depend on 1024x768. There are PCs where 1024x768 is not present, and other PCs where the optimal resolution is different. Instead, use EDID to detect the optimal resolution for VESA. On top of that, the screen resolution is irrelevant to your future GUI, because it should be resolution-independent. 32bpp is also better than 24bpp, because it's faster due to DWORD-alignment.

Fourth and finally, making your own file system is not recommended unless you can provide some real advantage to existing file systems, like FAT or ext. Again, take it from someone who has done it before and don't make the same mistakes others have made.

Cheers!

Author:  tay10r [ Sat Mar 31, 2018 12:18 pm ]
Post subject:  Re: My New OS - GrapeOS

You could use BMFS and have a fully functional file system. It's very easy to port.

Page 1 of 1 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/