Thread: Core Programming

  1. #1
    Unregistered
    Guest

    Question Core Programming

    if i wanted to write an oeprating system, wich compiler would i use, i refuse to write in assembly(no offense to those who have mastered its skill though, i just dont have that skill)
    i want to write an operating system...

    i cant use MS Visual C++, 'cuase u can only create apps for windows. i am pretty sure that gose for all of microsft's c/C++ compilers. ofcourse, unless u prove me wrong.

    _______________________________________________
    a programmer is worth only as much as how much knowledge he/she has.

  2. #2
    Unleashed
    Join Date
    Sep 2001
    Posts
    1,765
    If you had the knowledge to do such a thing, why would you ask?
    The world is waiting. I must leave you now.

  3. #3
    Registered User stautze's Avatar
    Join Date
    Apr 2002
    Posts
    195
    It is almost impossible to write an entire os without assembly.
    The main reason is the bootloader. To get around that you could use grub.

  4. #4
    Unregistered
    Guest
    FYI, Windows was written with VC++

    If they can write windows in it, you can write your own OS. But, the time and effort you would have to put into it would be tremendous.

  5. #5
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    >FYI, Windows was written with VC++

    Hmmm, I can't believe that Windows was entirely written in VC++. Where did you read this?

  6. #6
    Registered User foniks munkee's Avatar
    Join Date
    Nov 2001
    Posts
    343
    It may have been written using the VC++ compiler, but a VERY large portion of windows was written in C - you don't have to code in C++ to use the VC compiler. There was also Assembly involved.
    i cant use MS Visual C++, 'cuase u can only create apps for windows. i am pretty sure that gose for all of microsft's c/C++ compilers. ofcourse, unless u prove me wrong.
    Thats not kinda how it works. A Solaris Unix c/c++ compilers binary output will only run under Solaris.. however the source code, if written to be portable could be compiled in VC++ and vice versa. Writing c code in VC++ doesn't have to be different from writing c code in other environments.
    Last edited by foniks munkee; 05-11-2002 at 07:25 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Enable core dumping
    By steve1_rm in forum C Programming
    Replies: 3
    Last Post: 01-21-2009, 10:41 AM
  2. Making use of 64 bit/multi core processers?
    By code2d in forum C++ Programming
    Replies: 4
    Last Post: 12-07-2006, 04:48 PM
  3. buying a laptop ; intel dual core?
    By BobMcGee123 in forum A Brief History of Cprogramming.com
    Replies: 27
    Last Post: 07-30-2006, 02:28 PM
  4. program segfaults without dumping a core
    By ladar in forum C Programming
    Replies: 4
    Last Post: 04-04-2005, 11:21 AM
  5. Core dumps
    By rotis23 in forum Linux Programming
    Replies: 4
    Last Post: 06-06-2003, 10:01 AM