I'm new to this OS programming...

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
PuMaister

I'm new to this OS programming...

Post by PuMaister »

so I was wondering what tools I would need (like nasm, g++ ld etc) and I wonderd if I could use the standard libraries in c++ or if I have to make all the functions in asm...
User avatar
Solar
Member
Member
Posts: 7615
Joined: Thu Nov 16, 2006 12:01 pm
Location: Germany
Contact:

Re:I'm new to this OS programming...

Post by Solar »

1) Check out the thread "Quick Links - Read this before you post";

2) Unless you implement / port a standard library to your to-be-made OS, you won't have one. Basically, whatever comes after #include has to be either self-written or ported.
Every good solution is obvious once you've found it.
User avatar
Pype.Clicker
Member
Member
Posts: 5964
Joined: Wed Oct 18, 2006 2:31 am
Location: In a galaxy, far, far away
Contact:

Re:I'm new to this OS programming...

Post by Pype.Clicker »

note, however, that is need not to be implemented in asm. It could be done in C or C++ or whatever.

Also keep in mind that despite it could theorically be done, starting a C++ kernel is way more difficult than starting one in C ...
Tux

Re:I'm new to this OS programming...

Post by Tux »

"Re:I'm new to this OS programming..."

Weren't we all ;D

Here is a nice tip:
Old posts are STILL usable.
So don't be afraid to go to page 20 (Just for example) of the posts.
Many people forget this tip and post their problem which may have been answered already.

We'll still forgive ya if ya post already answered questions (-X
Post Reply