Abstract
Keywords Reprint  汇编Wasm 
Citation Yao Qing-sheng.汇编语言 Win32asm.FUTURE & CIVILIZATION Natural/Social Philosophy & Infomation Sciences,20191201. https://yaoqs.github.io/20191201/hui-bian-yu-yan-win32asm/

先安装 MASM, 下载地址为: http://www.win32asm.com.cn/download/masm32v8.exe。 再安装由一个俄罗斯人 Four-F 开发了一套工具 Kmdkit (Kernel Mode Driver Development Kit for MASM32),该工具下载地址为: http://www.win32asm.com.cn/download/KmdKit.rar。 Kmdkit 只有一个压缩文件,展开后有几个子目录和两个文件 install.bat,readme.txt, 安装方法很简单,就是: 把 \include\w2k 下的文件拷到 \masm32\include 把 \macros\Strings.mac 下的文件拷到 \masm32\macros 把 \lib\w2k 下的文件拷到 \masm32\lib 或者直接运行 install.bat, 安装完毕。 安装完成后,就可以用汇编编写驱动了,罗云彬网站有 Kmd 教程,可以去下下来看看,下载地址是: http://www.win32asm.com.cn/program/KmdTutCn.chm。 这个教程非常详细,把汇编写驱动的很多问题都写得清清楚楚,我用过这个工具写过驱动,我只看了 kmd 教程就会编了,而 Kmdkit 中还有很多例子,有所需的驱动框架,很有用的。

References