1
Files
interrupt-handling-using-th…/references.bib
2023-03-02 22:10:11 +01:00

244 lines
7.3 KiB
BibTeX

@Manual{pic,
month = jun,
organization = {Intel Corporation},
title = {{Intel 8259A Datasheet}},
url = {https://pdos.csail.mit.edu/6.828/2017/readings/hardware/8259A.pdf},
urldate = {2023-02-08},
year = {1978},
note = {Rev 3},
}
@Manual{ia32,
month = dec,
organization = {Intel Corporation},
title = {{Intel 64 and IA-32 Architectures Software Developer's Manual}},
url = {https://cdrdv2.intel.com/v1/dl/getContent/671200},
urldate = {2023-02-08},
year = {2022},
}
@Manual{ioapic,
month = may,
organization = {Intel Corporation},
title = {{Intel 82093AA Datasheet}},
url = {https://pdos.csail.mit.edu/6.828/2017/readings/ia32/ioapic.pdf},
urldate = {2023-02-08},
year = {1996},
}
@Manual{acpi1,
month = feb,
organization = {UEFI Forum},
title = {{Advanced Configuration and Power Interface Specification}},
url = {http://uefi.org/sites/default/files/resources/ACPI_1_Errata_B.pdf},
urldate = {2023-02-08},
year = {1999},
note = {Rev 1.0b},
}
@Manual{acpi2,
month = aug,
organization = {UEFI Forum},
title = {{Advanced Configuration and Power Interface Specification}},
url = {http://uefi.org/sites/default/files/resources/ACPI_2_Errata_C.pdf},
urldate = {2023-02-08},
year = {2003},
note = {Rev 2.0c},
}
@Manual{acpi65,
month = aug,
organization = {UEFI Forum},
title = {{Advanced Configuration and Power Interface Specification}},
url = {https://uefi.org/sites/default/files/resources/ACPI_Spec_6_5_Aug29.pdf},
urldate = {2023-02-08},
year = {2022},
note = {Rev 6.5},
}
@Manual{cpp20draft,
month = oct,
organization = {ISO/IEC JTC and SC22 WG21 and N4860},
title = {{C++20 International Standard Draft}},
url = {https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/n4868.pdf},
urldate = {2023-02-08},
year = {2020},
note = {N4860},
}
@Manual{c99draft,
month = sep,
organization = {ISO/IEC JTC SC22 WG14},
title = {{C99 International Standard Draft}},
url = {https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf},
urldate = {2023-02-08},
year = {1999},
note = {N1256},
}
@Manual{ich2,
month = oct,
organization = {Intel Corporation},
title = {{Intel ICH2 Datasheet}},
url = {https://www.intel.com/content/dam/doc/datasheet/82801ba-i-o-controller-hub-2-82801bam-i-o-controller-hub-2-mobile-datasheet.pdf},
urldate = {2023-02-08},
year = {2000},
}
@Manual{ich5,
month = apr,
organization = {Intel Corporation},
title = {{Intel ICH5 Datasheet}},
url = {https://www.intel.com/content/dam/doc/datasheet/82801eb-82801er-io-controller-hub-datasheet.pdf},
urldate = {2023-02-08},
year = {2003},
note = {Rev 001},
}
@Manual{mpspec,
month = may,
organization = {Intel Corporation},
title = {{Intel MultiProcessor Specification}},
url = {https://web.archive.org/web/20121002210153/http://download.intel.com/design/archives/processors/pro/docs/24201606.pdf},
urldate = {2023-02-08},
year = {1997},
note = {Rev 1.4},
}
@TechReport{msilatency,
author = {Coleman, James},
institution = {Intel Corporation},
title = {{Reducing Interrupt Latency Through the Use of Message Signalled Interrupts}},
year = {2009},
month = jan,
type = {techreport},
url = {https://www.intel.com/content/dam/www/public/us/en/documents/white-papers/msg-signaled-interrupts-paper.pdf},
}
@Manual{cpuid,
month = may,
organization = {Intel Corporation},
title = {{Intel Processor Identification and the CPUID Instruction}},
url = {https://www.scss.tcd.ie/~jones/CS4021/processor-identification-cpuid-instruction-note.pdf},
urldate = {2023-02-08},
year = {2012},
}
@Misc{hhuos,
author = {Akguel, Burak and Gesse, Christian and Ruhland, Fabian and Krakowski, Filip and Schoettner, Michael and others},
howpublished = {GitHub},
note = {Branch "experimental"},
title = {{hhuOS - A small operating system}},
url = {https://github.com/hhuOS/hhuOS/tree/experimental},
urldate = {2023-02-08},
}
@Manual{pci22,
month = dec,
organization = {PCI Special Interest Group},
title = {{PCI 2.2 Local Bus Specification}},
url = {https://www.ics.uci.edu/~harris/ics216/pci/PCI_22.pdf},
urldate = {2023-02-08},
year = {1998},
note = {Rev 2.2},
}
@Manual{pcat,
month = mar,
organization = {IBM},
title = {{PC/AT Technical Reference}},
url = {http://bitsavers.informatik.uni-stuttgart.de/pdf/ibm/pc/at/6183355_PC_AT_Technical_Reference_Mar86.pdf},
urldate = {2023-02-08},
year = {1986},
}
@Manual{80386,
organization = {Intel Corporation},
title = {{Intel 80386 Manual}},
url = {https://bitsavers.org/components/intel/80386/230985-001_80386_Programmers_Reference_Manual_1986.pdf},
urldate = {2023-02-10},
year = {1986},
}
@Misc{x86isa,
author = {Félix Cloutier},
month = sep,
title = {{x86 and amd64 instruction reference}},
year = {2022},
url = {https://www.felixcloutier.com/x86/index.html},
urldate = {2023-02-10},
}
@Misc{linux,
author = {Torvalds, Linus and others},
month = feb,
title = {{Linux 6.1.11}},
year = {2023},
url = {https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/?h=v6.1.11},
urldate = {2023-02-10},
}
@Misc{xv6,
author = {Kaashoek, Frans and Morris, Robert and Cox, Russ},
title = {{xv6 OS}},
url = {https://github.com/mit-pdos/xv6-public},
urldate = {2023-02-10},
}
@Misc{osdev,
title = {{OSDev}},
url = {https://wiki.osdev.org/},
urldate = {2023-02-10},
}
@Misc{serenity,
author = {Kling, Andreas and others},
title = {{SerenityOS}},
url = {https://github.com/SerenityOS/serenity},
urldate = {2023-02-10},
}
@Manual{acpipre,
month = dec,
organization = {UEFI Forum},
title = {{Advanced Configuration and Power Interface Specification}},
url = {https://uefi.org/sites/default/files/resources/ACPI_1.pdf},
urldate = {2023-02-21},
year = {1996},
note = {Rev 1.0},
}
@Manual{mpspecpre,
month = oct,
organization = {Intel Corporation},
title = {{Intel MultiProcessor Specification}},
year = {1993},
note = {Rev 1.0},
}
@Misc{irqbalance,
author = {Horman, Neil and Waskiewicz, P. J. and Arapov, Anton and others},
title = {Irqbalance},
url = {https://github.com/Irqbalance/irqbalance},
urldate = {2023-02-23},
}
@Misc{acpica,
title = {{ACPICA}},
organization = {Intel Corporation},
url = {https://acpica.org/},
urldate = {2023-02-23},
}
@Manual{pit,
month = sep,
organization = {Intel Corporation},
title = {{Intel 8254 Datasheet}},
url = {https://www.scs.stanford.edu/10wi-cs140/pintos/specs/8254.pdf},
urldate = {2023-02-26},
year = {1993},
note = {Rev 5},
}
@Comment{jabref-meta: databaseType:bibtex;}