├── Build.info ├── CopyINCLUDES ├── CopyINCLUDES.info ├── CopyOpenPciDev ├── CopyOpenPciDev.info ├── DELObject ├── DELObject.info ├── FULLsmakefile.wth ├── FULLsmakefile.wth.info ├── InOut.h ├── LICENSE ├── Mediator.info ├── MediatorOpenPci.info ├── PARTIALsmakefile ├── PowerpciOpenPci.info ├── Prometheus.info ├── Prometheus └── include │ ├── clib │ └── prometheus_protos.h │ ├── inline │ ├── prometheus.h │ └── prometheus_protos.h │ ├── libraries │ └── prometheus.h │ ├── lvo │ └── prometheus_lib.i │ ├── pragma │ └── prometheus_lib.h │ ├── pragmas │ └── prometheus_pragmas.h │ └── proto │ └── prometheus.h ├── PrometheusOpenPci ├── DELObject ├── DELObject.info ├── Ppci_allocfree_dma.c ├── Ppci_allocfree_dma.c.info ├── Ppci_in_out.c ├── Ppci_in_out.c.info ├── Ppci_interrupt.c ├── Ppci_interrupt.c.info ├── Ppci_logictophysic_addr.c ├── Ppci_logictophysic_addr.c.info ├── Ppci_obtainrelease_card.c ├── Ppci_obtainrelease_card.c.info ├── Ppci_readwrite_config.c ├── Ppci_readwrite_config.c.info ├── Ppci_set_master.c ├── Ppci_set_master.c.info ├── Prometheus-3.0 │ ├── Developer │ │ ├── autodocs │ │ │ └── prometheus.doc │ │ └── fd │ │ │ └── prometheus_lib.fd │ ├── include │ │ ├── clib │ │ │ └── prometheus_protos.h │ │ ├── inline │ │ │ ├── prometheus.h │ │ │ └── prometheus_protos.h │ │ ├── libraries │ │ │ └── prometheus.h │ │ ├── lvo │ │ │ └── prometheus_lib.i │ │ ├── pragma │ │ │ └── prometheus_lib.h │ │ ├── pragmas │ │ │ └── prometheus_pragmas.h │ │ └── proto │ │ │ └── prometheus.h │ └── prometheus.library ├── PrometheusWrapper.c ├── PrometheusWrapper.c.info ├── PrometheusWrapper.h ├── PrometheusWrapper.h.info ├── developer.guide └── developer.guide.info ├── README.openpci_V2.1 ├── SCoptions ├── SCoptions.info ├── clib ├── openpci_protos.h └── openpci_protos.h.info ├── compiler.h ├── debug.c ├── debug.h ├── debug_protos.h ├── fd ├── MAKEPRAGMAS ├── MAKEPRAGMAS.info ├── fd2pragma ├── openpci_lib.fd └── openpci_lib.fd.info ├── internlibraries.info ├── internlibraries ├── openpci.h └── openpci.h.info ├── libraries.info ├── libraries ├── openpci.h └── openpci.h.info ├── makefile ├── openpci.c ├── openpci.c.info ├── openpci.library ├── openpci.library.notes ├── openpci.library.notes.info ├── openpci.library_VERSION.h ├── openpci.library_VERSION.h.info ├── openpci_protosWrapper.h ├── openpci_protosWrapper.h.info ├── openpcidata.h ├── openpcidata.h.info ├── openpcifunctable.c ├── openpcifunctable.h ├── openpciinfo ├── OpenPciInfo.c ├── OpenPciInfo.elf ├── OpenPciInfo.info ├── OpenPciInfo.lnk ├── build.info ├── delobject ├── delobject.info ├── makefile ├── pcibusinfo.h ├── pcihdr.h └── smakefile ├── openpciinfo_HexDumpPCI ├── OpenPciInfo ├── OpenPciInfo.c ├── OpenPciInfo.c.info ├── OpenPciInfo.info ├── OpenPciInfo.lnk ├── OpenPciInfo_v1_7-HexDump.zip ├── build.info ├── delobject ├── delobject.info ├── makefile ├── pcibusinfo.h ├── pcibusinfo.h.info ├── pcihdr.h └── smakefile ├── openpciinfo_TstObtainRelease ├── OpenPciInfo ├── OpenPciInfo.c ├── OpenPciInfo.c.info ├── OpenPciInfo.elf ├── OpenPciInfo.info ├── OpenPciInfo.lnk ├── build.info ├── delobject ├── delobject.info ├── makefile ├── pcibusinfo.h ├── pcibusinfo.h.info ├── pcihdr.h └── smakefile ├── pci.h ├── pci_allocfree_dma_mem.c ├── pci_find.c ├── pci_in_out.c ├── pci_interrupt.c ├── pci_logictophysic_addr.c ├── pci_obtainrelease_card.c ├── pci_readwrite_config.c ├── pci_set_master.c ├── pcibus.c ├── pcibus.h ├── ppcinline └── lowlevel.h ├── pragmas └── openpci_pragmas.h ├── proto ├── openpci.h └── openpci.h.info ├── smakefile └── smakefile.wth /Build.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Build.info -------------------------------------------------------------------------------- /CopyINCLUDES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/CopyINCLUDES -------------------------------------------------------------------------------- /CopyINCLUDES.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/CopyINCLUDES.info -------------------------------------------------------------------------------- /CopyOpenPciDev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/CopyOpenPciDev -------------------------------------------------------------------------------- /CopyOpenPciDev.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/CopyOpenPciDev.info -------------------------------------------------------------------------------- /DELObject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/DELObject -------------------------------------------------------------------------------- /DELObject.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/DELObject.info -------------------------------------------------------------------------------- /FULLsmakefile.wth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/FULLsmakefile.wth -------------------------------------------------------------------------------- /FULLsmakefile.wth.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/FULLsmakefile.wth.info -------------------------------------------------------------------------------- /InOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/InOut.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/LICENSE -------------------------------------------------------------------------------- /Mediator.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Mediator.info -------------------------------------------------------------------------------- /MediatorOpenPci.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/MediatorOpenPci.info -------------------------------------------------------------------------------- /PARTIALsmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PARTIALsmakefile -------------------------------------------------------------------------------- /PowerpciOpenPci.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PowerpciOpenPci.info -------------------------------------------------------------------------------- /Prometheus.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus.info -------------------------------------------------------------------------------- /Prometheus/include/clib/prometheus_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/clib/prometheus_protos.h -------------------------------------------------------------------------------- /Prometheus/include/inline/prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/inline/prometheus.h -------------------------------------------------------------------------------- /Prometheus/include/inline/prometheus_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/inline/prometheus_protos.h -------------------------------------------------------------------------------- /Prometheus/include/libraries/prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/libraries/prometheus.h -------------------------------------------------------------------------------- /Prometheus/include/lvo/prometheus_lib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/lvo/prometheus_lib.i -------------------------------------------------------------------------------- /Prometheus/include/pragma/prometheus_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/pragma/prometheus_lib.h -------------------------------------------------------------------------------- /Prometheus/include/pragmas/prometheus_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/pragmas/prometheus_pragmas.h -------------------------------------------------------------------------------- /Prometheus/include/proto/prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/Prometheus/include/proto/prometheus.h -------------------------------------------------------------------------------- /PrometheusOpenPci/DELObject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/DELObject -------------------------------------------------------------------------------- /PrometheusOpenPci/DELObject.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/DELObject.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_allocfree_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_allocfree_dma.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_allocfree_dma.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_allocfree_dma.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_in_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_in_out.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_in_out.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_in_out.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_interrupt.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_interrupt.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_interrupt.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_logictophysic_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_logictophysic_addr.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_logictophysic_addr.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_logictophysic_addr.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_obtainrelease_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_obtainrelease_card.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_obtainrelease_card.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_obtainrelease_card.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_readwrite_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_readwrite_config.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_readwrite_config.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_readwrite_config.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_set_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_set_master.c -------------------------------------------------------------------------------- /PrometheusOpenPci/Ppci_set_master.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Ppci_set_master.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/Developer/autodocs/prometheus.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/Developer/autodocs/prometheus.doc -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/Developer/fd/prometheus_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/Developer/fd/prometheus_lib.fd -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/clib/prometheus_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/clib/prometheus_protos.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/inline/prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/inline/prometheus.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/inline/prometheus_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/inline/prometheus_protos.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/libraries/prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/libraries/prometheus.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/lvo/prometheus_lib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/lvo/prometheus_lib.i -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/pragma/prometheus_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/pragma/prometheus_lib.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/pragmas/prometheus_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/pragmas/prometheus_pragmas.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/include/proto/prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/include/proto/prometheus.h -------------------------------------------------------------------------------- /PrometheusOpenPci/Prometheus-3.0/prometheus.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/Prometheus-3.0/prometheus.library -------------------------------------------------------------------------------- /PrometheusOpenPci/PrometheusWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/PrometheusWrapper.c -------------------------------------------------------------------------------- /PrometheusOpenPci/PrometheusWrapper.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/PrometheusWrapper.c.info -------------------------------------------------------------------------------- /PrometheusOpenPci/PrometheusWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/PrometheusWrapper.h -------------------------------------------------------------------------------- /PrometheusOpenPci/PrometheusWrapper.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/PrometheusWrapper.h.info -------------------------------------------------------------------------------- /PrometheusOpenPci/developer.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/developer.guide -------------------------------------------------------------------------------- /PrometheusOpenPci/developer.guide.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/PrometheusOpenPci/developer.guide.info -------------------------------------------------------------------------------- /README.openpci_V2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/README.openpci_V2.1 -------------------------------------------------------------------------------- /SCoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/SCoptions -------------------------------------------------------------------------------- /SCoptions.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/SCoptions.info -------------------------------------------------------------------------------- /clib/openpci_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/clib/openpci_protos.h -------------------------------------------------------------------------------- /clib/openpci_protos.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/clib/openpci_protos.h.info -------------------------------------------------------------------------------- /compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/compiler.h -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/debug.c -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/debug.h -------------------------------------------------------------------------------- /debug_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/debug_protos.h -------------------------------------------------------------------------------- /fd/MAKEPRAGMAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/fd/MAKEPRAGMAS -------------------------------------------------------------------------------- /fd/MAKEPRAGMAS.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/fd/MAKEPRAGMAS.info -------------------------------------------------------------------------------- /fd/fd2pragma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/fd/fd2pragma -------------------------------------------------------------------------------- /fd/openpci_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/fd/openpci_lib.fd -------------------------------------------------------------------------------- /fd/openpci_lib.fd.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/fd/openpci_lib.fd.info -------------------------------------------------------------------------------- /internlibraries.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/internlibraries.info -------------------------------------------------------------------------------- /internlibraries/openpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/internlibraries/openpci.h -------------------------------------------------------------------------------- /internlibraries/openpci.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/internlibraries/openpci.h.info -------------------------------------------------------------------------------- /libraries.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/libraries.info -------------------------------------------------------------------------------- /libraries/openpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/libraries/openpci.h -------------------------------------------------------------------------------- /libraries/openpci.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/libraries/openpci.h.info -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/makefile -------------------------------------------------------------------------------- /openpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.c -------------------------------------------------------------------------------- /openpci.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.c.info -------------------------------------------------------------------------------- /openpci.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.library -------------------------------------------------------------------------------- /openpci.library.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.library.notes -------------------------------------------------------------------------------- /openpci.library.notes.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.library.notes.info -------------------------------------------------------------------------------- /openpci.library_VERSION.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.library_VERSION.h -------------------------------------------------------------------------------- /openpci.library_VERSION.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci.library_VERSION.h.info -------------------------------------------------------------------------------- /openpci_protosWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci_protosWrapper.h -------------------------------------------------------------------------------- /openpci_protosWrapper.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpci_protosWrapper.h.info -------------------------------------------------------------------------------- /openpcidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpcidata.h -------------------------------------------------------------------------------- /openpcidata.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpcidata.h.info -------------------------------------------------------------------------------- /openpcifunctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpcifunctable.c -------------------------------------------------------------------------------- /openpcifunctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpcifunctable.h -------------------------------------------------------------------------------- /openpciinfo/OpenPciInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/OpenPciInfo.c -------------------------------------------------------------------------------- /openpciinfo/OpenPciInfo.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/OpenPciInfo.elf -------------------------------------------------------------------------------- /openpciinfo/OpenPciInfo.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/OpenPciInfo.info -------------------------------------------------------------------------------- /openpciinfo/OpenPciInfo.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/OpenPciInfo.lnk -------------------------------------------------------------------------------- /openpciinfo/build.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/build.info -------------------------------------------------------------------------------- /openpciinfo/delobject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/delobject -------------------------------------------------------------------------------- /openpciinfo/delobject.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/delobject.info -------------------------------------------------------------------------------- /openpciinfo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/makefile -------------------------------------------------------------------------------- /openpciinfo/pcibusinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/pcibusinfo.h -------------------------------------------------------------------------------- /openpciinfo/pcihdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/pcihdr.h -------------------------------------------------------------------------------- /openpciinfo/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo/smakefile -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/OpenPciInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/OpenPciInfo -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/OpenPciInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/OpenPciInfo.c -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/OpenPciInfo.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/OpenPciInfo.c.info -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/OpenPciInfo.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/OpenPciInfo.info -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/OpenPciInfo.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/OpenPciInfo.lnk -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/OpenPciInfo_v1_7-HexDump.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/OpenPciInfo_v1_7-HexDump.zip -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/build.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/build.info -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/delobject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/delobject -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/delobject.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/delobject.info -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/makefile -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/pcibusinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/pcibusinfo.h -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/pcibusinfo.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/pcibusinfo.h.info -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/pcihdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/pcihdr.h -------------------------------------------------------------------------------- /openpciinfo_HexDumpPCI/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_HexDumpPCI/smakefile -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/OpenPciInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/OpenPciInfo -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/OpenPciInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/OpenPciInfo.c -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/OpenPciInfo.c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/OpenPciInfo.c.info -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/OpenPciInfo.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/OpenPciInfo.elf -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/OpenPciInfo.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/OpenPciInfo.info -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/OpenPciInfo.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/OpenPciInfo.lnk -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/build.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/build.info -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/delobject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/delobject -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/delobject.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/delobject.info -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/makefile -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/pcibusinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/pcibusinfo.h -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/pcibusinfo.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/pcibusinfo.h.info -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/pcihdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/pcihdr.h -------------------------------------------------------------------------------- /openpciinfo_TstObtainRelease/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/openpciinfo_TstObtainRelease/smakefile -------------------------------------------------------------------------------- /pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci.h -------------------------------------------------------------------------------- /pci_allocfree_dma_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_allocfree_dma_mem.c -------------------------------------------------------------------------------- /pci_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_find.c -------------------------------------------------------------------------------- /pci_in_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_in_out.c -------------------------------------------------------------------------------- /pci_interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_interrupt.c -------------------------------------------------------------------------------- /pci_logictophysic_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_logictophysic_addr.c -------------------------------------------------------------------------------- /pci_obtainrelease_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_obtainrelease_card.c -------------------------------------------------------------------------------- /pci_readwrite_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_readwrite_config.c -------------------------------------------------------------------------------- /pci_set_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pci_set_master.c -------------------------------------------------------------------------------- /pcibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pcibus.c -------------------------------------------------------------------------------- /pcibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pcibus.h -------------------------------------------------------------------------------- /ppcinline/lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/ppcinline/lowlevel.h -------------------------------------------------------------------------------- /pragmas/openpci_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/pragmas/openpci_pragmas.h -------------------------------------------------------------------------------- /proto/openpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/proto/openpci.h -------------------------------------------------------------------------------- /proto/openpci.h.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/proto/openpci.h.info -------------------------------------------------------------------------------- /smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/smakefile -------------------------------------------------------------------------------- /smakefile.wth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeperk/OpenPCI/HEAD/smakefile.wth --------------------------------------------------------------------------------