├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SuperIo.sln ├── SuperIo ├── .gitattributes ├── .gitignore ├── Properties │ └── AssemblyInfo.cs ├── SuperIo.cs ├── SuperIo.csproj ├── SuperKeyHook.cs ├── SuperKeyboard.cs ├── SuperMouse.cs ├── SuperScreen.cs ├── Tools.cs ├── WinRing0.cs ├── WinRing0.dll ├── WinRing0.sys ├── WinRing0x64.dll └── WinRing0x64.sys └── SuperIoTestProgram ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── SuperIo.dll ├── SuperIo.xml ├── SuperIoTestProgram.csproj ├── SuperIoTestProgram.sln ├── WinRing0.dll ├── WinRing0.sys ├── WinRing0x64.dll └── WinRing0x64.sys /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/README.md -------------------------------------------------------------------------------- /SuperIo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo.sln -------------------------------------------------------------------------------- /SuperIo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/.gitattributes -------------------------------------------------------------------------------- /SuperIo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/.gitignore -------------------------------------------------------------------------------- /SuperIo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SuperIo/SuperIo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/SuperIo.cs -------------------------------------------------------------------------------- /SuperIo/SuperIo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/SuperIo.csproj -------------------------------------------------------------------------------- /SuperIo/SuperKeyHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/SuperKeyHook.cs -------------------------------------------------------------------------------- /SuperIo/SuperKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/SuperKeyboard.cs -------------------------------------------------------------------------------- /SuperIo/SuperMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/SuperMouse.cs -------------------------------------------------------------------------------- /SuperIo/SuperScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/SuperScreen.cs -------------------------------------------------------------------------------- /SuperIo/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/Tools.cs -------------------------------------------------------------------------------- /SuperIo/WinRing0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/WinRing0.cs -------------------------------------------------------------------------------- /SuperIo/WinRing0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/WinRing0.dll -------------------------------------------------------------------------------- /SuperIo/WinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/WinRing0.sys -------------------------------------------------------------------------------- /SuperIo/WinRing0x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/WinRing0x64.dll -------------------------------------------------------------------------------- /SuperIo/WinRing0x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIo/WinRing0x64.sys -------------------------------------------------------------------------------- /SuperIoTestProgram/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/App.config -------------------------------------------------------------------------------- /SuperIoTestProgram/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/App.xaml -------------------------------------------------------------------------------- /SuperIoTestProgram/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/App.xaml.cs -------------------------------------------------------------------------------- /SuperIoTestProgram/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/MainWindow.xaml -------------------------------------------------------------------------------- /SuperIoTestProgram/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SuperIoTestProgram/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SuperIoTestProgram/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SuperIoTestProgram/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/Properties/Resources.resx -------------------------------------------------------------------------------- /SuperIoTestProgram/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SuperIoTestProgram/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/Properties/Settings.settings -------------------------------------------------------------------------------- /SuperIoTestProgram/SuperIo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/SuperIo.dll -------------------------------------------------------------------------------- /SuperIoTestProgram/SuperIo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/SuperIo.xml -------------------------------------------------------------------------------- /SuperIoTestProgram/SuperIoTestProgram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/SuperIoTestProgram.csproj -------------------------------------------------------------------------------- /SuperIoTestProgram/SuperIoTestProgram.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/SuperIoTestProgram.sln -------------------------------------------------------------------------------- /SuperIoTestProgram/WinRing0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/WinRing0.dll -------------------------------------------------------------------------------- /SuperIoTestProgram/WinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/WinRing0.sys -------------------------------------------------------------------------------- /SuperIoTestProgram/WinRing0x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/WinRing0x64.dll -------------------------------------------------------------------------------- /SuperIoTestProgram/WinRing0x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moying-moe/SuperIo/HEAD/SuperIoTestProgram/WinRing0x64.sys --------------------------------------------------------------------------------