├── .gitattributes ├── .gitignore ├── Imports ├── Hardware │ ├── ACPI Defination.h │ ├── ACPI.h │ ├── CAudio.h │ ├── CPU.h │ ├── DiskLib.h │ ├── Driverdll.h │ ├── EDID.h │ ├── EDIDdefination.h │ ├── Igpu.h │ ├── Iusb.h │ ├── MemoryLib.h │ ├── NetworkLib.h │ ├── PCI-E.h │ ├── Ring0Defination.h │ ├── SV_Hardware.h │ ├── SuperIOStruct.h │ ├── Superio.h │ ├── UsbDefination.h │ ├── defination.h │ ├── diskdefination.h │ ├── gpu.h │ ├── memorydefination.h │ ├── smbiosdefination.h │ └── smbioslib.h └── SoftWare │ ├── SV-SoftWare.h │ └── Softwaredefination.h ├── LICENSE ├── Origin ├── CPU │ └── CPU(老版本) │ │ ├── CPU.sln │ │ ├── CPU │ │ ├── CPU.cpp │ │ ├── CPU.h │ │ ├── CPU.vcxproj │ │ ├── CPU.vcxproj.filters │ │ ├── CPU │ │ │ ├── CPUIDForAMD.cpp │ │ │ ├── CPUIDForAMD.h │ │ │ ├── CPUIDForIntel.cpp │ │ │ ├── CPUIDForIntel.h │ │ │ ├── CPUIDInfo.cpp │ │ │ ├── CPUIDinfo.h │ │ │ ├── definition.cpp │ │ │ └── definition.h │ │ ├── ReadMe.txt │ │ ├── WMI │ │ │ ├── SynQuery.cpp │ │ │ ├── SynQuery.h │ │ │ ├── SynQueryData.cpp │ │ │ ├── SynQueryData.h │ │ │ ├── WMI.cpp │ │ │ ├── WMI.h │ │ │ └── WMIExtern.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ │ ├── HW Monitor │ │ ├── HW Monitor.vcxproj │ │ ├── HW Monitor.vcxproj.filters │ │ └── main.cpp │ │ └── 使用方法.txt ├── HardwareDriver │ ├── CharTest.sln │ ├── CharTest │ │ ├── .lst │ │ ├── CharTest.inf │ │ ├── CharTest.vcxproj │ │ ├── CharTest.vcxproj.filters │ │ ├── Device.c │ │ ├── Device.h │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── E820.asm │ │ ├── Function.c │ │ ├── Function.h │ │ ├── Public.h │ │ ├── Queue.c │ │ ├── Queue.h │ │ ├── ReadMe.txt │ │ ├── Trace.h │ │ └── ioctl.h │ └── Driver │ │ ├── Driver.sln │ │ ├── Driver │ │ ├── ACPI.dll │ │ ├── AMD.cpp │ │ ├── AMD.h │ │ ├── CharTest.inf │ │ ├── CharTest.sys │ │ ├── DIsk │ │ │ ├── Disk IDE.cpp │ │ │ └── Disk IDE.h │ │ ├── Driver.vcxproj │ │ ├── Driver.vcxproj.filters │ │ ├── EC │ │ │ ├── EC.cpp │ │ │ └── EC.h │ │ ├── Load │ │ │ ├── Driver.cpp │ │ │ └── Driver.h │ │ ├── Memory │ │ │ └── DDR3 │ │ │ │ ├── DDR3.cpp │ │ │ │ └── ddr3.h │ │ ├── MyDriverClass.cpp │ │ ├── MyDriverClass.h │ │ ├── PCI-E │ │ │ ├── PCI-E.cpp │ │ │ └── PCI-E.h │ │ ├── PCI │ │ │ ├── PCI defination.cpp │ │ │ ├── PCI defination.h │ │ │ ├── pciVendor.txt │ │ │ └── pciids │ │ ├── SMbus │ │ │ ├── SMbus.cpp │ │ │ └── SMbus.h │ │ ├── SuperIO.h │ │ └── main.cpp │ │ └── Readme.txt ├── SoftwareDriver │ └── SystemTest │ │ ├── SystemTest.sln │ │ ├── SystemTest │ │ ├── Driver │ │ │ ├── Device.c │ │ │ ├── Device.h │ │ │ ├── Driver.c │ │ │ ├── Driver.h │ │ │ ├── Queue.c │ │ │ ├── Queue.h │ │ │ ├── defination.h │ │ │ ├── func.c │ │ │ └── func.h │ │ ├── DriverModule │ │ │ ├── module.c │ │ │ └── module.h │ │ ├── Kernel │ │ │ ├── Callback │ │ │ │ ├── callback.c │ │ │ │ └── callback.h │ │ │ ├── DPCTimer.c │ │ │ ├── DPCTimer.h │ │ │ ├── Filter.c │ │ │ ├── Filter.h │ │ │ ├── GDTABLE.c │ │ │ ├── GDTABLE.h │ │ │ ├── allacpi.c │ │ │ └── allacpi.h │ │ ├── NetWork │ │ │ ├── Tcpip.c │ │ │ ├── Tcpip.h │ │ │ ├── Tdx.c │ │ │ ├── Tdx.h │ │ │ ├── nsiproxy.c │ │ │ └── nsiproxy.h │ │ ├── Procssor │ │ │ ├── processor.c │ │ │ └── processor.h │ │ ├── Public.h │ │ ├── ReadMe.txt │ │ ├── Ring0Hook │ │ │ ├── AcpiHook.c │ │ │ ├── AcpiHook.h │ │ │ ├── AtapiHook.c │ │ │ ├── AtapiHook.h │ │ │ ├── DiskHook.c │ │ │ ├── DiskHook.h │ │ │ ├── FSDHOOK.c │ │ │ ├── FSDHOOK.h │ │ │ ├── I8042prtHook.c │ │ │ ├── I8042prtHook.h │ │ │ ├── IDTABLE.c │ │ │ ├── IDTABLE.h │ │ │ ├── KeybroadHook.c │ │ │ ├── KeybroadHook.h │ │ │ ├── MouseHook.c │ │ │ ├── MouseHook.h │ │ │ ├── PartmgrHook.c │ │ │ ├── PartmgrHook.h │ │ │ ├── SSDTHOOK.c │ │ │ ├── SSDTHook.h │ │ │ ├── ScsiHook.c │ │ │ └── ScsiHook.h │ │ ├── Ring3Hook │ │ │ ├── MsgHook.c │ │ │ └── MsgHook.h │ │ ├── SystemTest.inf │ │ ├── SystemTest.vcxproj │ │ ├── SystemTest.vcxproj.filters │ │ ├── Trace.h │ │ └── ioctl.h │ │ ├── drivertest │ │ ├── drivertest.sln │ │ └── drivertest │ │ │ ├── ReadMe.txt │ │ │ ├── drivertest.cpp │ │ │ ├── drivertest.vcxproj │ │ │ ├── drivertest.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── 源1.cpp └── record │ ├── Memory DDR4.txt │ ├── Record │ ├── pcie.docx │ ├── 硬件功能纪录.docx │ └── 软件功能记录.xlsx ├── QT ├── SV-Assistant-Basically │ ├── .qmake.stash │ ├── AudioWidget.cpp │ ├── AudioWidget.h │ ├── CPUHardwareWidget.cpp │ ├── CPUHardwareWidget.h │ ├── DeclareDPIAware.manifest │ ├── DiskWidget.cpp │ ├── DiskWidget.h │ ├── GPUWidget.cpp │ ├── GPUWidget.h │ ├── GeneratedFiles │ │ ├── qrc_resource.cpp │ │ └── ui_sv_assistant_basic_window.h │ ├── MemoryWidget.cpp │ ├── MemoryWidget.h │ ├── MonitorWidget.cpp │ ├── MonitorWidget.h │ ├── MotherBroadWidget.cpp │ ├── MotherBroadWidget.h │ ├── NetworkWidget.cpp │ ├── NetworkWidget.h │ ├── Resource │ │ ├── Title │ │ │ ├── ZX.png │ │ │ ├── computer.png │ │ │ ├── gamebox.png │ │ │ ├── hardware-danger.png │ │ │ ├── hardware.png │ │ │ ├── panel.png │ │ │ ├── software-danger.png │ │ │ └── software.png │ │ ├── Usb │ │ │ ├── bang.ico │ │ │ ├── hub.ico │ │ │ ├── monitor.ico │ │ │ ├── port.ico │ │ │ ├── ssport.ico │ │ │ ├── ssusb.ico │ │ │ └── usb.ico │ │ ├── menu │ │ │ ├── close.png │ │ │ ├── minimize.png │ │ │ └── report.png │ │ └── resource.qrc │ ├── SV-Assistant-Basically.pri │ ├── SV-Assistant-Basically.pro │ ├── SV-Assistant-Basically.rc │ ├── SV-Assistant-Basically.sln │ ├── SV-Assistant-Basically.vcxproj │ ├── SV-Assistant-Basically.vcxproj.filters │ ├── ZX_log.conf │ ├── ZhaoxinRing0.sys │ ├── appinit.cpp │ ├── appinit.h │ ├── closebutton.cpp │ ├── closebutton.h │ ├── cpu.ids │ ├── hardwaretab.cpp │ ├── hardwaretab.h │ ├── homewidget.cpp │ ├── homewidget.h │ ├── lib │ │ └── Hardware │ │ │ ├── ACPI Defination.h │ │ │ ├── ACPI.h │ │ │ ├── CAudio.h │ │ │ ├── CPU.h │ │ │ ├── DiskLib.h │ │ │ ├── Driverdll.h │ │ │ ├── EDID.h │ │ │ ├── EDIDdefination.h │ │ │ ├── Igpu.h │ │ │ ├── Iusb.h │ │ │ ├── MemoryLib.h │ │ │ ├── NetworkLib.h │ │ │ ├── PCI-E.h │ │ │ ├── Ring0Defination.h │ │ │ ├── SV_Hardware.h │ │ │ ├── SuperIOStruct.h │ │ │ ├── Superio.h │ │ │ ├── UsbDefination.h │ │ │ ├── defination.h │ │ │ ├── diskdefination.h │ │ │ ├── gpu.h │ │ │ ├── memorydefination.h │ │ │ ├── smbiosdefination.h │ │ │ └── smbioslib.h │ ├── main.cpp │ ├── mainctrlbutton.cpp │ ├── mainctrlbutton.h │ ├── nvidia.db │ ├── pci.ids │ ├── resource.h │ ├── sv_assistant_basic_window.cpp │ ├── sv_assistant_basic_window.h │ ├── sv_assistant_basic_window.ui │ ├── svassistmainwindow.cpp │ ├── usbtestbrowser.cpp │ ├── usbtestbrowser.h │ ├── usbtreewidget.cpp │ └── usbtreewidget.h └── SV-Assistant-Master │ ├── Resource │ ├── computer-1.png │ ├── cpu.png │ ├── diskette.png │ ├── drive.png │ ├── hdmi.png │ ├── memory.png │ ├── motherboard.png │ ├── networking.png │ ├── ram-memory.png │ ├── sata.png │ ├── usb.png │ └── video-card.png │ ├── SV-Assistant-Master.pro │ ├── cbasetable.cpp │ ├── cbasetable.h │ ├── main.cpp │ ├── resource.qrc │ ├── sv_master_mainwindows.cpp │ ├── sv_master_mainwindows.h │ └── sv_master_mainwindows.ui ├── README.md ├── Release ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Widgets.dll ├── README.md ├── SV-Assistant-Basically.exe ├── ZX_log.conf ├── ZhaoxinRing0.sys ├── cpu.ids ├── imageformats │ ├── qico.dll │ ├── qjpeg.dll │ └── qwbmp.dll ├── nvidia.db └── platforms │ └── qwindows.dll ├── SoftWare ├── SV-SoftWare │ ├── SV-SoftWare.sln │ ├── SV-SoftWare │ │ ├── Origin │ │ │ ├── CConnect.cpp │ │ │ ├── CConnect.h │ │ │ ├── Power Management.cpp │ │ │ ├── Power Management.h │ │ │ ├── Process.cpp │ │ │ ├── Process.h │ │ │ ├── TaskScheduler.cpp │ │ │ ├── TaskScheduler.h │ │ │ ├── service.cpp │ │ │ ├── service.h │ │ │ ├── startup.cpp │ │ │ └── startup.h │ │ ├── SV-SoftWare.cpp │ │ ├── SV-SoftWare.h │ │ ├── SV-SoftWare.vcxproj │ │ ├── SV-SoftWare.vcxproj.filters │ │ ├── Softwaredefination.h │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestSoftware │ │ ├── TestSoftware.cpp │ │ ├── TestSoftware.vcxproj │ │ ├── TestSoftware.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h └── SystemInfo │ ├── GetNotify.c │ ├── GetNotify.h │ ├── SystemInfo.sln │ ├── SystemInfo │ ├── Driver │ │ ├── Device.c │ │ ├── Device.h │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── defination.h │ │ ├── func.c │ │ └── func.h │ ├── DriverModule │ │ ├── module.c │ │ └── module.h │ ├── Kernel │ │ ├── Callback │ │ │ ├── callback.c │ │ │ └── callback.h │ │ ├── DPCTimer.c │ │ ├── DPCTimer.h │ │ ├── Filter.c │ │ ├── Filter.h │ │ ├── GDTABLE.c │ │ └── GDTABLE.h │ ├── NetWork │ │ ├── Tcpip.c │ │ ├── Tcpip.h │ │ ├── Tdx.c │ │ ├── Tdx.h │ │ ├── nsiproxy.c │ │ └── nsiproxy.h │ ├── Procssor │ │ ├── processor.c │ │ └── processor.h │ ├── Public.h │ ├── ReadMe.txt │ ├── Ring0Hook │ │ ├── AcpiHook.c │ │ ├── AcpiHook.h │ │ ├── AtapiHook.c │ │ ├── AtapiHook.h │ │ ├── DiskHook.c │ │ ├── DiskHook.h │ │ ├── FSDHOOK.c │ │ ├── FSDHOOK.h │ │ ├── I8042prtHook.c │ │ ├── I8042prtHook.h │ │ ├── IDTABLE.c │ │ ├── IDTABLE.h │ │ ├── KeybroadHook.c │ │ ├── KeybroadHook.h │ │ ├── MouseHook.c │ │ ├── MouseHook.h │ │ ├── PartmgrHook.c │ │ ├── PartmgrHook.h │ │ ├── SSDTHOOK.c │ │ ├── SSDTHook.h │ │ ├── ScsiHook.c │ │ └── ScsiHook.h │ ├── Ring3Hook │ │ ├── MsgHook.c │ │ └── MsgHook.h │ ├── SystemInfo.inf │ ├── SystemInfo.vcxproj │ ├── SystemInfo.vcxproj.filters │ └── ioctl.h │ └── ZhaoxinSoftware │ ├── CSoftwareRing0.cpp │ ├── CSoftwareRing0.h │ ├── Driver.cpp │ ├── Driver.h │ ├── ZhaoxinSoftware.vcxproj │ ├── ZhaoxinSoftware.vcxproj.filters │ ├── ZhaoxinSoftwaredll.cpp │ ├── ZhaoxinSoftwaredll.h │ ├── dbg.hpp │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── hardware └── ZhaoxinRing0 ├── Ring0Test ├── My Advisor Results - Ring0Test │ ├── My Advisor Results - Ring0Test.advixeproj │ └── e000 │ │ └── e000.advixeexp ├── Ring0Test.cpp └── Ring0Test.vcxproj ├── ZX_log.conf ├── ZhaoxinRing0.sln ├── ZhaoxinRing0 ├── Function.c ├── Function.h ├── Public.h ├── ZhaoxinRing0.inf ├── ZhaoxinRing0.vcxproj ├── ZhaoxinRing0.vcxproj.filters ├── device.c ├── device.h ├── driver.c ├── driver.h └── ioctl.h └── hardware assistant └── HardwareLib ├── Audio ├── CAudio.cpp └── CAudio.h ├── HardwareLib.vcxproj ├── HardwareLib.vcxproj.filters ├── Memory ├── CMemory.cpp ├── CMemory.h ├── MemoryLib.cpp ├── MemoryLib.h ├── memorydefination.cpp └── memorydefination.h ├── My Advisor Results - HardwareLib ├── My Advisor Results - HardwareLib.advixeproj └── e000 │ └── e000.advixeexp ├── My Amplifier Results - HardwareLib └── My Amplifier Results - HardwareLib.amplxeproj ├── PCIE ├── PCI-E.cpp ├── PCI-E.h ├── pcioptionrom.cpp └── pcioptionrom.h ├── WMI ├── DnpService.cpp ├── DnpService.h ├── WMI.cpp ├── WMI.h └── WMIExtern.h ├── acpi ├── ACPI Defination.h ├── ACPI Source.cpp ├── ACPI Source.h ├── ACPI.cpp └── ACPI.h ├── cpu ├── CPU.cpp ├── CPU.h ├── CPUBase.cpp ├── CPUBase.h ├── CPUWMI.cpp ├── CPUWMI.h ├── Intel.cpp ├── Intel.h ├── amd.cpp ├── amd.h ├── defination.h ├── zhaoxin.cpp └── zhaoxin.h ├── disk ├── AtaSmart.cpp ├── AtaSmart.h ├── DiskLib.cpp ├── DiskLib.h ├── NVMeInterpreter.cpp ├── NVMeInterpreter.h ├── SPTIUtil.h ├── SlotSpeedGetter.cpp ├── SlotSpeedGetter.h ├── StorageQuery.h └── diskdefination.h ├── driver ├── DriverOrigin.cpp ├── DriverOrigin.h ├── Driverdll.cpp ├── Driverdll.h ├── Load │ ├── Driver.cpp │ └── Driver.h ├── MyDriverClass.cpp ├── MyDriverClass.h └── Ring0Defination.h ├── edid ├── EDID src.cpp ├── EDID src.h ├── EDID.cpp ├── EDID.h └── EDIDdefination.h ├── gpu ├── ADL │ ├── adl_defines.h │ ├── adl_sdk.h │ └── adl_structures.h ├── AMDgpu.cpp ├── AMDgpu.h ├── Gpudata.cpp ├── Gpudata.h ├── Igpu.h ├── Intelgpu.cpp ├── Intelgpu.h ├── NVAPI │ ├── NvApiDriverSettings.c │ ├── NvApiDriverSettings.h │ ├── nvHLSLExtns.h │ ├── nvHLSLExtnsInternal.h │ ├── nvShaderExtnEnums.h │ ├── nvapi.h │ ├── nvapi_lite_common.h │ ├── nvapi_lite_d3dext.h │ ├── nvapi_lite_salend.h │ ├── nvapi_lite_salstart.h │ ├── nvapi_lite_sli.h │ ├── nvapi_lite_stereo.h │ └── nvapi_lite_surround.h ├── NVAPILIB │ ├── nvapi.lib │ └── nvapi64.lib ├── Nvidia.cpp ├── Nvidia.h ├── gpu.cpp └── gpu.h ├── network ├── NetWork.cpp ├── NetWork.h ├── NetworkLib.cpp └── NetworkLib.h ├── smbios ├── Smbios.cpp ├── Smbios.h ├── smbiosdefination.h ├── smbioslib.cpp └── smbioslib.h ├── stdafx.cpp ├── stdafx.h ├── superio ├── Fintek.cpp ├── ITE.cpp ├── Nuvoton.cpp ├── SMSC.cpp ├── SioChip.cpp ├── SioChip.h ├── SuperIOStruct.cpp ├── SuperIOStruct.h ├── SuperIoEntry.cpp ├── SuperIoEntry.h ├── Superio.cpp ├── Superio.h └── Winbond.cpp ├── targetver.h └── usb ├── Iusb.cpp ├── Iusb.h ├── UsbController.cpp ├── UsbController.h ├── UsbDefination.h ├── UsbHub.cpp └── UsbHub.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/.gitignore -------------------------------------------------------------------------------- /Imports/Hardware/ACPI Defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/ACPI Defination.h -------------------------------------------------------------------------------- /Imports/Hardware/ACPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/ACPI.h -------------------------------------------------------------------------------- /Imports/Hardware/CAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/CAudio.h -------------------------------------------------------------------------------- /Imports/Hardware/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/CPU.h -------------------------------------------------------------------------------- /Imports/Hardware/DiskLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/DiskLib.h -------------------------------------------------------------------------------- /Imports/Hardware/Driverdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/Driverdll.h -------------------------------------------------------------------------------- /Imports/Hardware/EDID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/EDID.h -------------------------------------------------------------------------------- /Imports/Hardware/EDIDdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/EDIDdefination.h -------------------------------------------------------------------------------- /Imports/Hardware/Igpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/Igpu.h -------------------------------------------------------------------------------- /Imports/Hardware/Iusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/Iusb.h -------------------------------------------------------------------------------- /Imports/Hardware/MemoryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/MemoryLib.h -------------------------------------------------------------------------------- /Imports/Hardware/NetworkLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/NetworkLib.h -------------------------------------------------------------------------------- /Imports/Hardware/PCI-E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/PCI-E.h -------------------------------------------------------------------------------- /Imports/Hardware/Ring0Defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/Ring0Defination.h -------------------------------------------------------------------------------- /Imports/Hardware/SV_Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/SV_Hardware.h -------------------------------------------------------------------------------- /Imports/Hardware/SuperIOStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/SuperIOStruct.h -------------------------------------------------------------------------------- /Imports/Hardware/Superio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/Superio.h -------------------------------------------------------------------------------- /Imports/Hardware/UsbDefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/UsbDefination.h -------------------------------------------------------------------------------- /Imports/Hardware/defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/defination.h -------------------------------------------------------------------------------- /Imports/Hardware/diskdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/diskdefination.h -------------------------------------------------------------------------------- /Imports/Hardware/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/gpu.h -------------------------------------------------------------------------------- /Imports/Hardware/memorydefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/memorydefination.h -------------------------------------------------------------------------------- /Imports/Hardware/smbiosdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/smbiosdefination.h -------------------------------------------------------------------------------- /Imports/Hardware/smbioslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/Hardware/smbioslib.h -------------------------------------------------------------------------------- /Imports/SoftWare/SV-SoftWare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/SoftWare/SV-SoftWare.h -------------------------------------------------------------------------------- /Imports/SoftWare/Softwaredefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Imports/SoftWare/Softwaredefination.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/LICENSE -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU.sln -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU.vcxproj -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU.vcxproj.filters -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForAMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForAMD.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForAMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForAMD.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForIntel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForIntel.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDForIntel.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDInfo.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/CPUIDinfo.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/definition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/definition.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/CPU/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/CPU/definition.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/ReadMe.txt -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/SynQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/SynQuery.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/SynQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/SynQuery.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/SynQueryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/SynQueryData.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/SynQueryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/SynQueryData.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/WMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/WMI.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/WMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/WMI.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/WMI/WMIExtern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/WMI/WMIExtern.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/stdafx.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/stdafx.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/CPU/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/CPU/targetver.h -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/HW Monitor/HW Monitor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/HW Monitor/HW Monitor.vcxproj -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/HW Monitor/HW Monitor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/HW Monitor/HW Monitor.vcxproj.filters -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/HW Monitor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/HW Monitor/main.cpp -------------------------------------------------------------------------------- /Origin/CPU/CPU(老版本)/使用方法.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/CPU/CPU(老版本)/使用方法.txt -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest.sln -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/.lst -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/CharTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/CharTest.inf -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/CharTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/CharTest.vcxproj -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/CharTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/CharTest.vcxproj.filters -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Device.c -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Device.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Driver.c -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Driver.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/E820.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/E820.asm -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Function.c -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Function.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Public.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Queue.c -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Queue.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/ReadMe.txt -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/Trace.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/CharTest/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/CharTest/ioctl.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver.sln -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/ACPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/ACPI.dll -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/AMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/AMD.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/AMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/AMD.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/CharTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/CharTest.inf -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/CharTest.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/CharTest.sys -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/DIsk/Disk IDE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/DIsk/Disk IDE.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/DIsk/Disk IDE.h: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/Driver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/Driver.vcxproj -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/Driver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/Driver.vcxproj.filters -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/EC/EC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/EC/EC.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/EC/EC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/EC/EC.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/Load/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/Load/Driver.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/Load/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/Load/Driver.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/Memory/DDR3/DDR3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/Memory/DDR3/DDR3.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/Memory/DDR3/ddr3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/Memory/DDR3/ddr3.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/MyDriverClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/MyDriverClass.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/MyDriverClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/MyDriverClass.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/PCI-E/PCI-E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/PCI-E/PCI-E.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/PCI-E/PCI-E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/PCI-E/PCI-E.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/PCI/PCI defination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/PCI/PCI defination.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/PCI/PCI defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/PCI/PCI defination.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/PCI/pciVendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/PCI/pciVendor.txt -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/PCI/pciids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/PCI/pciids -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/SMbus/SMbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/SMbus/SMbus.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/SMbus/SMbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/SMbus/SMbus.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/SuperIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/SuperIO.h -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Driver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Driver/main.cpp -------------------------------------------------------------------------------- /Origin/HardwareDriver/Driver/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/HardwareDriver/Driver/Readme.txt -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest.sln -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Device.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Device.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Driver.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Driver.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Queue.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/Queue.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/defination.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/func.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Driver/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Driver/func.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/DriverModule/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/DriverModule/module.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/DriverModule/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/DriverModule/module.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Callback/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Callback/callback.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Callback/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Callback/callback.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/DPCTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/DPCTimer.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/DPCTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/DPCTimer.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Filter.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/Filter.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/GDTABLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/GDTABLE.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/GDTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/GDTABLE.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/allacpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/allacpi.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/allacpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Kernel/allacpi.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tcpip.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tcpip.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tdx.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/Tdx.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/nsiproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/nsiproxy.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/nsiproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/NetWork/nsiproxy.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Procssor/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Procssor/processor.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Procssor/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Procssor/processor.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Public.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/ReadMe.txt -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AcpiHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AcpiHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AcpiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AcpiHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AtapiHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AtapiHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AtapiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/AtapiHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/DiskHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/DiskHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/DiskHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/DiskHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/FSDHOOK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/FSDHOOK.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/FSDHOOK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/FSDHOOK.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/I8042prtHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/I8042prtHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/I8042prtHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/I8042prtHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/IDTABLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/IDTABLE.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/IDTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/IDTABLE.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/KeybroadHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/KeybroadHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/KeybroadHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/KeybroadHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/MouseHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/MouseHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/MouseHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/MouseHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/PartmgrHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/PartmgrHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/PartmgrHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/PartmgrHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/SSDTHOOK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/SSDTHOOK.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/SSDTHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/SSDTHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/ScsiHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/ScsiHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/ScsiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring0Hook/ScsiHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring3Hook/MsgHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring3Hook/MsgHook.c -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Ring3Hook/MsgHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Ring3Hook/MsgHook.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/SystemTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/SystemTest.inf -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/SystemTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/SystemTest.vcxproj -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/SystemTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/SystemTest.vcxproj.filters -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/Trace.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/SystemTest/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/SystemTest/ioctl.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest.sln -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/ReadMe.txt -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/drivertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/drivertest.cpp -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/drivertest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/drivertest.vcxproj -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/drivertest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/drivertest.vcxproj.filters -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/stdafx.cpp -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/stdafx.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/drivertest/drivertest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/drivertest/drivertest/targetver.h -------------------------------------------------------------------------------- /Origin/SoftwareDriver/SystemTest/源1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/SoftwareDriver/SystemTest/源1.cpp -------------------------------------------------------------------------------- /Origin/record/Memory DDR4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/record/Memory DDR4.txt -------------------------------------------------------------------------------- /Origin/record/Record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/record/Record -------------------------------------------------------------------------------- /Origin/record/pcie.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/record/pcie.docx -------------------------------------------------------------------------------- /Origin/record/硬件功能纪录.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/record/硬件功能纪录.docx -------------------------------------------------------------------------------- /Origin/record/软件功能记录.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Origin/record/软件功能记录.xlsx -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/.qmake.stash -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/AudioWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/AudioWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/AudioWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/AudioWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/CPUHardwareWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/CPUHardwareWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/CPUHardwareWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/CPUHardwareWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/DeclareDPIAware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/DeclareDPIAware.manifest -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/DiskWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/DiskWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/DiskWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/DiskWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/GPUWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/GPUWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/GPUWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/GPUWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/GeneratedFiles/qrc_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/GeneratedFiles/qrc_resource.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/GeneratedFiles/ui_sv_assistant_basic_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/GeneratedFiles/ui_sv_assistant_basic_window.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/MemoryWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/MemoryWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/MemoryWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/MemoryWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/MonitorWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/MonitorWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/MonitorWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/MonitorWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/MotherBroadWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/MotherBroadWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/MotherBroadWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/MotherBroadWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/NetworkWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/NetworkWidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/NetworkWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/NetworkWidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/ZX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/ZX.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/computer.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/gamebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/gamebox.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/hardware-danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/hardware-danger.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/hardware.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/panel.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/software-danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/software-danger.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Title/software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Title/software.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/bang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/bang.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/hub.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/hub.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/monitor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/monitor.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/port.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/port.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/ssport.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/ssport.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/ssusb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/ssusb.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/Usb/usb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/Usb/usb.ico -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/menu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/menu/close.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/menu/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/menu/minimize.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/menu/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/menu/report.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/Resource/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/Resource/resource.qrc -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/SV-Assistant-Basically.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/SV-Assistant-Basically.pri -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/SV-Assistant-Basically.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/SV-Assistant-Basically.pro -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/SV-Assistant-Basically.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/SV-Assistant-Basically.rc -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/SV-Assistant-Basically.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/SV-Assistant-Basically.sln -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/SV-Assistant-Basically.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/SV-Assistant-Basically.vcxproj -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/SV-Assistant-Basically.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/SV-Assistant-Basically.vcxproj.filters -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/ZX_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/ZX_log.conf -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/ZhaoxinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/ZhaoxinRing0.sys -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/appinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/appinit.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/appinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/appinit.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/closebutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/closebutton.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/closebutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/closebutton.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/cpu.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/cpu.ids -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/hardwaretab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/hardwaretab.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/hardwaretab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/hardwaretab.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/homewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/homewidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/homewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/homewidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/ACPI Defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/ACPI Defination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/ACPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/ACPI.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/CAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/CAudio.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/CPU.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/DiskLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/DiskLib.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/Driverdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/Driverdll.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/EDID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/EDID.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/EDIDdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/EDIDdefination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/Igpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/Igpu.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/Iusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/Iusb.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/MemoryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/MemoryLib.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/NetworkLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/NetworkLib.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/PCI-E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/PCI-E.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/Ring0Defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/Ring0Defination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/SV_Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/SV_Hardware.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/SuperIOStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/SuperIOStruct.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/Superio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/Superio.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/UsbDefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/UsbDefination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/defination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/diskdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/diskdefination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/gpu.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/memorydefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/memorydefination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/smbiosdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/smbiosdefination.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/lib/Hardware/smbioslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/lib/Hardware/smbioslib.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/main.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/mainctrlbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/mainctrlbutton.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/mainctrlbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/mainctrlbutton.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/nvidia.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/nvidia.db -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/pci.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/pci.ids -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/resource.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/sv_assistant_basic_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/sv_assistant_basic_window.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/sv_assistant_basic_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/sv_assistant_basic_window.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/sv_assistant_basic_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/sv_assistant_basic_window.ui -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/svassistmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/svassistmainwindow.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/usbtestbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/usbtestbrowser.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/usbtestbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/usbtestbrowser.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/usbtreewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/usbtreewidget.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Basically/usbtreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Basically/usbtreewidget.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/computer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/computer-1.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/cpu.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/diskette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/diskette.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/drive.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/hdmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/hdmi.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/memory.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/motherboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/motherboard.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/networking.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/ram-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/ram-memory.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/sata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/sata.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/usb.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/Resource/video-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/Resource/video-card.png -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/SV-Assistant-Master.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/SV-Assistant-Master.pro -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/cbasetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/cbasetable.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/cbasetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/cbasetable.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/main.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/resource.qrc -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/sv_master_mainwindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/sv_master_mainwindows.cpp -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/sv_master_mainwindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/sv_master_mainwindows.h -------------------------------------------------------------------------------- /QT/SV-Assistant-Master/sv_master_mainwindows.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/QT/SV-Assistant-Master/sv_master_mainwindows.ui -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/README.md -------------------------------------------------------------------------------- /Release/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/Qt5Core.dll -------------------------------------------------------------------------------- /Release/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/Qt5Gui.dll -------------------------------------------------------------------------------- /Release/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/Qt5Widgets.dll -------------------------------------------------------------------------------- /Release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/README.md -------------------------------------------------------------------------------- /Release/SV-Assistant-Basically.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/SV-Assistant-Basically.exe -------------------------------------------------------------------------------- /Release/ZX_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/ZX_log.conf -------------------------------------------------------------------------------- /Release/ZhaoxinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/ZhaoxinRing0.sys -------------------------------------------------------------------------------- /Release/cpu.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/cpu.ids -------------------------------------------------------------------------------- /Release/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/imageformats/qico.dll -------------------------------------------------------------------------------- /Release/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /Release/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /Release/nvidia.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/nvidia.db -------------------------------------------------------------------------------- /Release/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/Release/platforms/qwindows.dll -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare.sln -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/CConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/CConnect.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/CConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/CConnect.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/Power Management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/Power Management.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/Power Management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/Power Management.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/Process.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/Process.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/TaskScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/TaskScheduler.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/TaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/TaskScheduler.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/service.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/service.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/startup.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Origin/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Origin/startup.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.vcxproj -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/SV-SoftWare.vcxproj.filters -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/Softwaredefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/Softwaredefination.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/dllmain.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/stdafx.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/stdafx.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/SV-SoftWare/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/SV-SoftWare/targetver.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/TestSoftware/TestSoftware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/TestSoftware/TestSoftware.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/TestSoftware/TestSoftware.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/TestSoftware/TestSoftware.vcxproj -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/TestSoftware/TestSoftware.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/TestSoftware/TestSoftware.vcxproj.filters -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/TestSoftware/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/TestSoftware/stdafx.cpp -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/TestSoftware/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/TestSoftware/stdafx.h -------------------------------------------------------------------------------- /SoftWare/SV-SoftWare/TestSoftware/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SV-SoftWare/TestSoftware/targetver.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/GetNotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/GetNotify.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/GetNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/GetNotify.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo.sln -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/Device.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/Device.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/Driver.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/Driver.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/defination.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/func.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Driver/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Driver/func.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/DriverModule/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/DriverModule/module.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/DriverModule/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/DriverModule/module.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/Callback/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/Callback/callback.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/Callback/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/Callback/callback.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/DPCTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/DPCTimer.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/DPCTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/DPCTimer.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/Filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/Filter.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/Filter.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/GDTABLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/GDTABLE.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Kernel/GDTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Kernel/GDTABLE.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/NetWork/Tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/NetWork/Tcpip.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/NetWork/Tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/NetWork/Tcpip.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/NetWork/Tdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/NetWork/Tdx.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/NetWork/Tdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/NetWork/Tdx.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/NetWork/nsiproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/NetWork/nsiproxy.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/NetWork/nsiproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/NetWork/nsiproxy.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Procssor/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Procssor/processor.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Procssor/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Procssor/processor.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Public.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/ReadMe.txt -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/AcpiHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/AcpiHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/AcpiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/AcpiHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/AtapiHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/AtapiHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/AtapiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/AtapiHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/DiskHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/DiskHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/DiskHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/DiskHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/FSDHOOK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/FSDHOOK.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/FSDHOOK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/FSDHOOK.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/I8042prtHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/I8042prtHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/I8042prtHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/I8042prtHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/IDTABLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/IDTABLE.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/IDTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/IDTABLE.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/KeybroadHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/KeybroadHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/KeybroadHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/KeybroadHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/MouseHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/MouseHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/MouseHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/MouseHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/PartmgrHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/PartmgrHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/PartmgrHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/PartmgrHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/SSDTHOOK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/SSDTHOOK.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/SSDTHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/SSDTHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/ScsiHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/ScsiHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring0Hook/ScsiHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring0Hook/ScsiHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring3Hook/MsgHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring3Hook/MsgHook.c -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/Ring3Hook/MsgHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/Ring3Hook/MsgHook.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/SystemInfo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/SystemInfo.inf -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/SystemInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/SystemInfo.vcxproj -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/SystemInfo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/SystemInfo.vcxproj.filters -------------------------------------------------------------------------------- /SoftWare/SystemInfo/SystemInfo/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/SystemInfo/ioctl.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/CSoftwareRing0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/CSoftwareRing0.cpp -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/CSoftwareRing0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/CSoftwareRing0.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/Driver.cpp -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/Driver.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftware.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftware.vcxproj -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftware.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftware.vcxproj.filters -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftwaredll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftwaredll.cpp -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftwaredll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/ZhaoxinSoftwaredll.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/dbg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/dbg.hpp -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/dllmain.cpp -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/stdafx.cpp -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/stdafx.h -------------------------------------------------------------------------------- /SoftWare/SystemInfo/ZhaoxinSoftware/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/SoftWare/SystemInfo/ZhaoxinSoftware/targetver.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/Ring0Test/My Advisor Results - Ring0Test/My Advisor Results - Ring0Test.advixeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/Ring0Test/My Advisor Results - Ring0Test/My Advisor Results - Ring0Test.advixeproj -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/Ring0Test/My Advisor Results - Ring0Test/e000/e000.advixeexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/Ring0Test/My Advisor Results - Ring0Test/e000/e000.advixeexp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/Ring0Test/Ring0Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/Ring0Test/Ring0Test.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/Ring0Test/Ring0Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/Ring0Test/Ring0Test.vcxproj -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZX_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZX_log.conf -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0.sln -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/Function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/Function.c -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/Function.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/Public.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/ZhaoxinRing0.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/ZhaoxinRing0.inf -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/ZhaoxinRing0.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/ZhaoxinRing0.vcxproj -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/ZhaoxinRing0.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/ZhaoxinRing0.vcxproj.filters -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/device.c -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/device.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/driver.c -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/driver.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/ZhaoxinRing0/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/ZhaoxinRing0/ioctl.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Audio/CAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Audio/CAudio.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Audio/CAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Audio/CAudio.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/HardwareLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/HardwareLib.vcxproj -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/HardwareLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/HardwareLib.vcxproj.filters -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/CMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/CMemory.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/CMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/CMemory.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/MemoryLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/MemoryLib.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/MemoryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/MemoryLib.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/memorydefination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/memorydefination.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/memorydefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/Memory/memorydefination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/My Advisor Results - HardwareLib/My Advisor Results - HardwareLib.advixeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/My Advisor Results - HardwareLib/My Advisor Results - HardwareLib.advixeproj -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/My Advisor Results - HardwareLib/e000/e000.advixeexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/My Advisor Results - HardwareLib/e000/e000.advixeexp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/My Amplifier Results - HardwareLib/My Amplifier Results - HardwareLib.amplxeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/My Amplifier Results - HardwareLib/My Amplifier Results - HardwareLib.amplxeproj -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/PCI-E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/PCI-E.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/PCI-E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/PCI-E.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/pcioptionrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/pcioptionrom.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/pcioptionrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/PCIE/pcioptionrom.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/DnpService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/DnpService.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/DnpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/DnpService.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/WMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/WMI.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/WMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/WMI.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/WMIExtern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/WMI/WMIExtern.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI Defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI Defination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI Source.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI Source.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/acpi/ACPI.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPU.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPU.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUBase.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUBase.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUWMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUWMI.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUWMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/CPUWMI.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/Intel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/Intel.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/Intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/Intel.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/amd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/amd.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/amd.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/defination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/zhaoxin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/zhaoxin.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/zhaoxin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/cpu/zhaoxin.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/AtaSmart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/AtaSmart.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/AtaSmart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/AtaSmart.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/DiskLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/DiskLib.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/DiskLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/DiskLib.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/NVMeInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/NVMeInterpreter.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/NVMeInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/NVMeInterpreter.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/SPTIUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/SPTIUtil.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/SlotSpeedGetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/SlotSpeedGetter.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/SlotSpeedGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/SlotSpeedGetter.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/StorageQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/StorageQuery.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/diskdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/disk/diskdefination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/DriverOrigin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/DriverOrigin.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/DriverOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/DriverOrigin.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Driverdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Driverdll.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Driverdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Driverdll.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Load/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Load/Driver.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Load/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Load/Driver.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/MyDriverClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/MyDriverClass.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/MyDriverClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/MyDriverClass.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Ring0Defination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/driver/Ring0Defination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID src.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID src.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDID.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDIDdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/edid/EDIDdefination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/ADL/adl_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/ADL/adl_defines.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/ADL/adl_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/ADL/adl_sdk.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/ADL/adl_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/ADL/adl_structures.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/AMDgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/AMDgpu.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/AMDgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/AMDgpu.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Gpudata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Gpudata.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Gpudata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Gpudata.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Igpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Igpu.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Intelgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Intelgpu.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Intelgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Intelgpu.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/NvApiDriverSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/NvApiDriverSettings.c -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/NvApiDriverSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/NvApiDriverSettings.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvHLSLExtns.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvHLSLExtnsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvHLSLExtnsInternal.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvShaderExtnEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvShaderExtnEnums.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_common.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_d3dext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_d3dext.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_salend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_salend.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_salstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_salstart.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_sli.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_stereo.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPI/nvapi_lite_surround.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPILIB/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPILIB/nvapi.lib -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPILIB/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/NVAPILIB/nvapi64.lib -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Nvidia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Nvidia.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Nvidia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/Nvidia.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/gpu.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/gpu/gpu.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetWork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetWork.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetWork.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetworkLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetworkLib.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetworkLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/network/NetworkLib.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/Smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/Smbios.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/Smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/Smbios.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/smbiosdefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/smbiosdefination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/smbioslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/smbioslib.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/smbioslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/smbios/smbioslib.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/stdafx.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/stdafx.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Fintek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Fintek.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/ITE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/ITE.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Nuvoton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Nuvoton.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SMSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SMSC.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SioChip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SioChip.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SioChip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SioChip.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIOStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIOStruct.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIOStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIOStruct.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIoEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIoEntry.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIoEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/SuperIoEntry.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Superio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Superio.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Superio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Superio.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Winbond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/superio/Winbond.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/targetver.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/Iusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/Iusb.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/Iusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/Iusb.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbController.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbController.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbDefination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbDefination.h -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbHub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbHub.cpp -------------------------------------------------------------------------------- /hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsh993390188/SV-Assisstant/HEAD/hardware/ZhaoxinRing0/hardware assistant/HardwareLib/usb/UsbHub.h --------------------------------------------------------------------------------