Resources: Difference between revisions

4,761 bytes added ,  10 months ago
[unchecked revision][unchecked revision]
(→‎Compilers: - Added GCC, MinGW and VC++)
 
(99 intermediate revisions by 37 users not shown)
Line 1:
This page maintains a list of resoucesresources related to operating system development. Often, links become outdated or sites go down. If a link does not work, try to see if it was backed up on archive.org.
 
== Operating System ProgrammingDevelopment General==
* [http://www.osdever.net/ Bonafide OS Development]
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles The Operating System Resource Center]
* [http://www.acm.uiuc.edu/sigops/roll_your_own/ How to Write an Operating System]
* [https://www.devimperium.com/tutorials/start_your_small_operating_system_in_assembly Start your small Operating System in Assembly]
* [http://neuraldk.org/writing.php?FilterCat=Os+Development&FilterDev=All NeuralDK OSDev Tuts]
* [http://www.brokenthorn.com/Resources/OSDevIndex.html BrokenThorn OS Development Tutorials]
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/MiscellaneousSoftware/ OS FAQ, overall design, VM design, threads..]
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/MemoryManagement/ Memory Management]
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/ProtectedMode/ Protected Mode]
* [http://www.dtweed.com/circuitcellar/ Circuit Cellar Ink, an embedded systems development magazine]
* [http://createyourownos.blogspot.com/ Create Your Own OS (by Pritam Zope)]
* [https://github.com/dreamos82/Osdev-Notes Osdev Notes - A set of notes on how to write an operating system]
 
== Hardware Specifications ==
'''[http://developer.intel.com/design/pentium4/manuals/index_new.htm#sdm_vol1 Intel Manuals]'''
* [http://perso.wanadoo.fr/pierrelib/index.html Pierre's Library]
* [http://www.mcamafia.de/pdf/pdfref.htm List of PS/2 documents]
* [http://datasheets.chipdb.org/ ChipDB datasheet archive]
* [https://web.archive.org/web/20160313204854/https://freemicronix.org/docs/ FreeMicroNix Documentation Collection]
 
=== Processors ===
[http://www.ctyme.com/rbrown.htm Ralf Brown's Interrupt List]<br>
* [https://software.intel.com/en-us/articles/intel-sdm/ Intel Manuals]
[http://www.mega-tokyo.com/osfaq2 Mega-Tokyo]<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/ProcessorArchitecture/ Processor Architecture]
[http://www.osdever.net Bona Fide]<br>
* [http://developer.amd.com/resources/developer-guides-manuals/ x86-64(AMD64)]
[http://www.nondot.org/sabre/os/articles The Operating System Resource Center]<br>
[http://my.execpc.com/~geezer/johnfine/ John Fine's Home Page]<br>
[http://my.execpc.com/~geezer/osd/index.htm Write Your Own Operating System]<br>
[http://www.acm.uiuc.edu/sigops/roll_your_own/ How to Write an Operating System]<br>
[http://neuraldk.org/writing.php?FilterCat=Os+Development&FilterDev=All NeuralDK OSDev Tuts]<br>
 
=== BIOS ===
=Operating System Programming Tools=
* [https://web.archive.org/web/20100102024125/http://phoenix.com/NR/rdonlyres/56E38DE2-3E6F-4743-835F-B4A53726ABED/0/specsbbs101.pdf BIOS Boot Specification]
==Assemblers==
* [https://web.archive.org/web/20180202045759/http://download.intel.com/support/motherboards/desktop/sb/pnpbiosspecificationv10a.pdf Plug and Play BIOS Specification]
[http://sourceforge.net/projects/nasm NASM (Netwide Assembler)]<br>
[http://www.microsoft.com/downloads/details.aspx?familyid=7A1C9DA0-0510-44A2-B042-7EF370530C64&displaylang=en MASM (Microsoft's Macro Assembler)]<br>
[http://flatassembler.net/ FASM (Flat Assembler)]<br>
[http://info.borland.com/borlandcpp/cppcomp/tasmfact.html TASM (Borland's Turbo Assembler)]<br>
 
=== Motherboard Devices ===
==Compilers==
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/MiscellaneousDevices/ PIC, PIT, DMA, RTC, ..]
===C===
[http://gcc.gnu.org/ GCC], the defacto open-source C toolset<br>
[http://www.mingw.org/ MinGW], a good port of the GCC toolset to Windows<br>
[http://www.delorie.com/djgpp/ DJGPP]<br>
[http://www.cs.virginia.edu/~lcc-win32/ LCC]<br>
[http://msdn.microsoft.com/vstudio/express/visualc/download/ Microsoft Visual C++ 2005]
 
=== Human Input Devices ===
==Emulators==
* [http://www.ti.com/lit/ds/symlink/pc16550d.pdf Serial Mouse]
[http://bochs.sourceforge.net/ Bochs]<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/HumanInterfaceDevices/ Human Interface Devices]
[http://www.vmware.com/products/ws/ VMWare]<br>
* [[Topic:8323|PS/2 mice]]
[http://qemu.org/ QEmu]<br>
* [[Topic:10247|PS2 mouse driver]]
 
=== Video ===
=Non-English OSDev Resources=
* [http://www.vesa.org official VESA & VBE website]
==French==
http://inferno.cs.univ-paris8.fr/~am/tutorial/os/tutorial00.html<br>
 
==Italian= Storage ===
* [http://www.osdevt13.co.nr/<br>org official ATA working group]
* [http://www.ata-atapi.com/ another ATA/ATAPI website, includes reference driver]
* [https://web.archive.org/web/20091027131605/http://geocities.com/SiliconValley/2072/atapi.htm an introduction to ATA/ATAPI commands]. It contains a couple of ASM examples to read sectors and identify drives.
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/DiskandDiscDrives/ Disk and Disc Drives]
* [[Topic:8339|collected links about Ultra DMA, on ATA drives and how PCI configuration comes.]]
 
==Japanese= Audio ===
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/SoundDevices/ Sound Devices]
http://wiki.osdev.info/<br>
 
=== Network and Communication ports ===
==Polish==
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/CommunicationDevices/ Serial and Parallel port, SPP, EPP, ECP]
http://osnau.freehostia.com/<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/NetworkingDevices/ Networking Devices]
* [http://pdf1.alldatasheet.com/datasheet-pdf/view/84677/ETC/RTL8139/+5_5J8UCRC/1SuMCAY.+/datasheet.pdf RTL8139 family datasheet]
 
==Russian= Buses ===
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/InterconnectBuses/ Interconnect Buses]
http://grindars.org.ru<br>
* [http://www.usb.org/developers/docs official USB developers docs]z
http://fos.net.ru (*)<br>
* [https://retired.beyondlogic.org/usb/usbdevdrvs.htm more USB info]
http://nextos.ntagil.ru<br>
* [http://www.o3one.org/hwdocs/usb/hcir1_0a.pdf USB OHCI]
http://miraculix.ru<br>
* [https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/ehci-specification-for-usb.pdf USB EHCI]
http://xskernel.excode.ru<br>
* [http://download.microsoft.com/download/1/6/1/161ba512-40e2-4cc9-843a-923143f3456c/ohci_11.pdf OHCI for FireWire]
http://www.lizard.h15.ru<br>
* [http://www.o3one.org/hwdocs/usb/hcir1_0a.pdf OHCI mirror]
http://www.uzhos.tk<br>
 
http://www.robotronix.narod.ru<br>
== Software Specifications ==
http://www.3os.ru/news.php (*)<br>
* [http://www.delorie.com/djgpp/doc/rbinter/ix/ Ralf Brown's Interrupt List]
http://jacos.narod.ru<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/TheBootProcess/ The Boot Process]
http://mndos.narod.ru<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/Partitions/ Partitions]
http://www.users.itl.net.ua/~prool/proolix.html<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/FileSystems/ File Systems]
http://osrc.info<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/ExecutableFileFormats/ Executable File Formats]
http://osdp.org.ru<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/PlugandPlaySpecs/ Plug'n'Play Specs]
http://osdev.org.ru (coming soon)<br>
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/DeviceDriverInterfaces/ Device Driver Interfaces]
http://lowlevel.h14.ru<br>
* [http://home.teleport.com/~brainy/fatgen102.pdf FAT12-32]
http://sysbin.com<br>
* [http://www.amazon.com/Art-Software-Security-Assessment-Vulnerabilities/dp/0321444426 The Art of Software Security Assessment]
http://osdev.ru (site temporary down)<br>
* [http://www.amazon.com/Hacking-Art-Exploitation-Jon-Erickson/dp/1593271441/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1210492590&sr=1-1 Art of Exploitation]
http://express-os.narod.ru (*)<br>
* [http://www.amazon.com/Reversing-Secrets-Engineering-Eldad-Eilam/dp/0764574817/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1210492638&sr=1-1 Secrets of Reverse Engineering]
http://myosix.fatal.ru/<br>
* [http://www.amazon.com/Rootkits-Subverting-Addison-Wesley-Software-Security/dp/0321294319/ref=pd_bbs_3?ie=UTF8&s=books&qid=1210492638&sr=1-3 Subverting the Windows Kernel]
 
== Other Specifications ==
* [http://alexfru.narod.ru/emiscdocs.html stockpile of technical documents (partly in Russian)]
* [https://web.archive.org/web/20130119090155/http://www.nondot.org/sabre/os/articles/OtherHardware/ Legos, ATX, NetPC's..]
 
== Source Code ==
* [http://files.osdev.org/mirrors/geezer/osd/snippets.htm OSD Code Snippet Index]
* [http://www.singlix.org/trdos/specs.html stockpile of documents at singlix.org]
* [http://gee.cs.oswego.edu/pub/misc/malloc.c a reference implementation for malloc()]
 
== University Courses ==
* [https://web.archive.org/web/20090507122053/http://www.scs.cs.nyu.edu/aos/ Advanced Operating Systems (NYU)]
* Operating System Engineering (MIT) [http://pdos.csail.mit.edu/6.828/2004/ (2004)] [http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-828Fall-2006/CourseHome/index.htm (2006)]
* [http://pages.cs.wisc.edu/~solomon/cs537.html Introduction to Operating Systems (WISC)]
 
[[Category:Resources]]
Anonymous user