What kind of manuals do you use at most when OSdeving?

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
Post Reply

What kind of manuals do you use at most when OSdeving?

OSdev wiki
9
50%
Intel manuals
4
22%
From osdever.net
0
No votes
Just googling and googling...
1
6%
Other (please explain)
4
22%
 
Total votes: 18

User avatar
inflater
Member
Member
Posts: 1309
Joined: Thu Sep 28, 2006 10:32 am
Location: Slovakia
Contact:

What kind of manuals do you use at most when OSdeving?

Post by inflater »

I use AThelp. Very cool program and in Czech, very easy to understand language for me. (yay I'm Slavic :)) The latest version is from 1997, but it has everything what a OSdever needs: instruction list, opcodes, memory adressing, CPU modes and all about them, interrupts (IRQ and INTs), DOS INT 21h + everything about it like hidden functions, multiplex etc, ROM BIOS functions (int 10h, 12h, 13h, 14h,...), and eventually table of I/O ports like PIT, PPI, DMA 8/16, Sound Blaster, HDD (both XT and AT), FDD, Gravis Ultrasound and much much more. Albeit dated program, but I don't need to OSdev for multiple CPU's or in 64bit and that program is very handy.
My web site: http://inflater.wz.cz (Slovak)
Derrick operating system: http://derrick.xf.cz (Slovak and English :P)
User avatar
Solar
Member
Member
Posts: 7615
Joined: Thu Nov 16, 2006 12:01 pm
Location: Germany
Contact:

Re: What kind of manuals do you use at most when OSdeving?

Post by Solar »

My contribution to OSDev'ing is the PDCLib, and for that there's exactly one document I need: ISO / IEC 9899:1999 plus Corrigenda... ;-)
Every good solution is obvious once you've found it.
User avatar
JackScott
Member
Member
Posts: 1031
Joined: Thu Dec 21, 2006 3:03 am
Location: Hobart, Australia
Contact:

Re: What kind of manuals do you use at most when OSdeving?

Post by JackScott »

I use the OSDev wiki mostly. I'm also never coding without my trusty copy of "C in a Nutshell" beside me.
User avatar
01000101
Member
Member
Posts: 1599
Joined: Fri Jun 22, 2007 12:47 pm
Contact:

Re: What kind of manuals do you use at most when OSdeving?

Post by 01000101 »

I use the Intel Manuals, the Wiki, and Behrouz A. Forouzan's TCP/IP Protocol Suite.

Those sum up the critical pieces of text, I have about 25 books currently on my desk and 2 more bookshelves for real emergencies. 8)
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: What kind of manuals do you use at most when OSdeving?

Post by Combuster »

Hard to say really, it depends on what I am doing, and since I don't like doing what most other people so I don't use something predominantly. I use many things from that list, intel manuals, wiki (although I link to and edit more than actually grabbing info from it), Michael Abrash' GPBB, VGADoc, other people's code (linux kernel and xorg are favorite), C99 standard, trial & error.

I think in the end I learn most from my own code :D
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
Troy Martin
Member
Member
Posts: 1686
Joined: Fri Apr 18, 2008 4:40 pm
Location: Langley, Vancouver, BC, Canada
Contact:

Re: What kind of manuals do you use at most when OSdeving?

Post by Troy Martin »

Definitely the wiki and the Intel manuals. As you can see, I often use the forum as well :mrgreen:
Image
Image
Solar wrote:It keeps stunning me how friendly we - as a community - are towards people who start programming "their first OS" who don't even have a solid understanding of pointers, their compiler, or how a OS is structured.
I wish I could add more tex
tsp
Posts: 14
Joined: Tue Apr 24, 2007 5:35 am

Re: What kind of manuals do you use at most when OSdeving?

Post by tsp »

For low level HW related issues the manuals I'm using are ARM Architecture Reference Manual and AT91SAM7X Series Preliminary and for OS related issues this forum, OSDev Wiki and Wikipedia
Post Reply