: re: But in your 1st tutorial you specified that VC++ will not be the
: better option for system programming, or something like that.....
Where? If so I'll need to edit that out as there are no "better" options.
: re: What about Turbo C++ 3.0 or is there any latest version turbo c++?
: Borland command line tool is not having the support of Graphics.h
Wait, are you looking to develop an operating system or application?
If operating system:
graphics.h (in fact, almost all of your compiliers libraries and the standard library) cannot be used in OS dev as they rely to much on an existing operating system.
If application:
graphics.h is a
non-standard header file developed by Borland for its BGI library for 16-bit software. Because of this, very few compiliers support it.
: Q:Will the NASM supports the Code written considering TASM.
For the most part, they are the same syntax. There are a few differences, but the language itself is the same so learning x86 assembly with TASM will work fine.
: Q:I am not clear with Assembling Procedure, whats debugging and linking
: and all this....
: I am using TASM 5.0, in which I have to pass through Tasm Debugger n
: TLINK and all like that?
Yep. Are you asking what is debugging and linking? o.0
: Q: I am Using NASMIDE which looks similar to the Turbo C++3.0 IDE
: But it needs to set the location in ASM OPTION. How could I use? And I am
: not Understanding the advantage of using NASM(The reason might be
TASM and MASM can only produce 32 bit executables while NASM can produce both 32 bit executables and 16 bit flat binary programs. I only use NASM in boot loaders as they are 16 bit flat binary programs.
: re: Ok I'll use DJGPP for C/C++, In RHIDE editor. But it took tough in
: downloading & installing DJGPP. Anyways, plz, tell me the procedure of
: Installing DJGPP.
Have you already downloaded DJGPP?
: In DJGPP instead of <graphics.h> there is allegro.h,
: Q: Will the functioning in allegro will be same as graphics.h?
Neither of those will work for OS development.
For applications, I am not sure. I never used allegro.h (It's a non standard header, just like graphics.h--both are non portable)
-----
On another question, How much experience do you have with C or C++?
[.:EvolutionEngine][.:MicroOS Operating System][Website :: OS Development Series]