SeanMc wrote:Also I'm not in a hurry or anything.
I think this will be your biggest benefit. If you are looking for instant gratification in development, OS development is not for you.
SeanMc wrote:C? Are you sure I should go straight to C?
Learn how to read C and really understand it. As you go through your development, you will reference other code. You will find much of what you reference is written in C. Really understand it to the bits and bytes -- i.e. what does that addition operation do to the flags register? How would that change if the integers are unsigned rather than signed?
I would pick another language and learn it as well. Pick a procedure oriented language and an object oriented language. Know the difference between the two and their strengths and weaknesses. Learn assembly -- and learn to read the compiled assembly output. You will be building a strong foundation upon which to build your OS development skills.
Also, OS development is in itself a large research project. Set your expectations properly on this. You will be reading -- A LOT. You will be reading documentation, some good and some bad. If you cannot get over you aversion to reading documentation, you will have a hard time with OS development.
This time is not lost in your OS development path. Ask questions, and then go find the answer. Think about what you want your OS to do. Develop a design. Revise the design. Put your design on paper.
SeanMc wrote:... I gave up right after "Hello World" because I always had other distractions going on.
Finally, you will not succeed in your first attempt at any task. Get used to it -- it's a fact of life. You will spend more time debugging than writing code.
ker2x wrote:my development process :
0x00) ok, what's next ?
0x01) OMGWTF!?
0x02) read documentation
0x03) OMGWTF!?
0x04) BBQ?
0x05) read documentation
0x06) OMGWTF!?
0x07) read documentation
0x08) Haaaaaaaaa

0x09) write some code
0x0A) OMGWTF!?
0x0B) read documentation
0x0C) write some code
0x0D) Mmmm....
0x0E) write some code
0x0F) Doh !
0x10) write some code
0x11) AWWWWW YEAH!
0x12) GOTO 0x00
I wish you luck!