Got few questions about OS development

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
Gilad
Posts: 5
Joined: Sun Mar 23, 2008 3:31 am

Got few questions about OS development

Post by Gilad »

Hey all, nice website and forums you got :)

started working on my own OS and i got some questions
so far those 2 are the most important:
1. why cant we use builtin functions?
from what i see we are limited by the linking stage and not the compile because this is the error i get: (.text+0x27): undefined reference to `__ZNSsC1Ev' and .text is in Link.ld

2. why are we using protected mode? what its good for?

EDIT: tried searching the forums, wiki and google first.

Thanks, Gilad.
davidv1992
Member
Member
Posts: 223
Joined: Thu Jul 05, 2007 8:58 am

Post by davidv1992 »

The thing with builtin functions is that they are provided by lib's you haven't wrote yourself. This means they can be implemented in about 1001 ways. And usually they will use facilities provided by the kernel, which is the thing you're now trying to write.

on PMODE, read this and this and use google.[/url]
Gilad
Posts: 5
Joined: Sun Mar 23, 2008 3:31 am

Post by Gilad »

i did read the first link and now the second one, so i guess Windows/Unix run in PM?

so there is no way to use the built in functions? kinda sux :/
User avatar
nekros
Member
Member
Posts: 391
Joined: Wed Mar 05, 2008 9:10 pm
Contact:

Post by nekros »

not really, it's more fun! That is what we do here.
Working On:Bootloader, RWFS Image Program
Leviathan: http://leviathanv.googlecode.com
Kernel:Working on Design Doc
User avatar
lukem95
Member
Member
Posts: 536
Joined: Fri Aug 03, 2007 6:03 am
Location: Cambridge, UK

Post by lukem95 »

nekros wrote:not really, it's more fun! That is what we do here.
~ Lukem95 [ Cake ]
Release: 0.08b
Image
Post Reply