登录

于 2022-02-05 发布 文件大小:907.90 kB
0 266
下载积分: 2 下载次数: 1

代码说明:

RW - Read & Write utility, for hardware engineers, firmware (BIOS) engineers, driver developers, QA engineers, performance test engineers, diagnostic engineers, etc., This utility access almost all the computer hardware, including PCI (PCI Express), PCI Index/Data, Memory, Memory Index/Data, I/O Space, I/O Index/Data, Super I/O, Clock Generator, DIMM SPD, SMBus Device, CPU MSR Registers, ATA/ATAPI Identify Data, ACPI Tables Dump (include AML decode), Embedded Controller, USB Information and LPT Remote Access. And also an Command Window is provided to access hardware manually. Website1: http://rw.net-forces.com/ Website2: http://home.kimo.com.tw/ckimchan.tw/ Website3: http://jacky5488.myweb.hinet.net/ For best view, please change the screen resolution to 1024 x 768 (or above) pixels. -RW- Read

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • CSR的单声道耳机MMI调试工具,你可以很容易地创建一个调试功能…
    CSR MONO HEADSET MMI调试工具,你可以很轻松的调试出一款功能都合要求的蓝牙耳机-CSR MONO HEADSET MMI debugging tools, you can easily create a debugging features are jointly called for Bluetooth Headset
    2022-08-07 21:27:54下载
    积分:1
  • 您(sushansong@163.com)最近上载的源码有: 1. cangku.rar,125KB 2. btree.rar,10KB 3. 2003.03....
    您(sushansong@163.com)最近上载的源码有: 1. cangku.rar,125KB 2. btree.rar,10KB 3. 2003.03.rar,3981KB 4. 2003.02.rar,5738KB 5. 2003.01.rar,5676KB 6. em78 sub program.rar,6KB 7. 编译原理 第六章.rar,35KB 8. 编译原理 第四章.rar,34KB 9. 编译原理 第十一章.rar,4KB 10. 编译原理 第十二章.rar,3KB(请不要用公用帐号上载)-you (sushansong@163.com) recently uploaded the source code are : 1. Cangku.rar, 102KB 2. Btree.rar, 10KB 3. 2003.03.rar, 3981KB 4. 2003.02.rar, 5738KB 5. 2003.01 . rar, 5676KB 6. em78 sub program.rar, 6KB 7. Compiler Principle VI. rar, 35 kB 8. Chapter IV compiler theory. rar, 34KB 9. Compiler Principle Chapter 11. rar, 4KB 10. Compiler Principle Chapter 12. rar , 3KB (please do not use on the public account)
    2023-06-22 05:30:03下载
    积分:1
  • 论坛 Script(php)
    这是一个 php 的论坛。成员登录和有开机自检和评论的线程的能力。它是在附近的最好论坛脚本。演示 < a href ="www.naijaloaded.com"> < /a > 这里
    2022-02-01 19:24:02下载
    积分:1
  • Matlab 数值计算机编程介绍
    附件里提供的页面信息,为完成CAPE讲座《Matlab 数值计算机编程介绍》提供了参考。 每个主要标题和相关练习的链接都有。你可以好好利用这些练习,对熟悉内容很有帮助。
    2023-05-12 11:30:02下载
    积分:1
  • *** L298N的实际应用芯片资料 ******* **** 作者: HJJourAVR *** **** 编译器:WINAVR20050214...
    *** L298N的实际应用芯片资料 ******* **** 作者: HJJourAVR *** **** 编译器:WINAVR20050214 *** **** *** **** www.OurAVR.com 2005.9.22 *** ***********************************************/-***** L298N information on the practical application of the chip*********** Author: HJJourAVR******* compiler: WINAVR20050214************** www.OurAVR.com 2005.9.22**************************************************/
    2022-07-16 10:12:44下载
    积分:1
  • An improved tabu search algorithm to solve knapsack problem. The algorithm is ba...
     提出一种改进的禁忌搜索算法来求解背包问题。该算法基于禁忌搜索技术,并采用I&D策略,同时设计了两种针对局 部最优解的变异算子。改进后的算法能有效地弥补标准禁忌算法对初始解依赖的缺陷,同时也避免了搜索停滞的现象。通过对具 体实例和随机问题的测试,表明改进后的禁忌搜索算法有更好的性能。 关-An improved tabu search algorithm to solve knapsack problem. The algorithm is based on tabu search techniques, using I & D strategies, while designed for the local optimal solution of the two kinds of mutation operator. The improved algorithm can effectively compensate for the standard tabu search algorithm depends on the initial solution defect, but also to avoid the phenomenon of search stagnation. Through specific examples and random-question test, indicating that the improved tabu search algorithm has better performance. Guan
    2022-01-21 20:56:01下载
    积分:1
  • 简单的vb聊天软件
    简单的vb聊天软件-simple vb chat software
    2022-02-12 10:45:11下载
    积分:1
  • 直接在内存运行PE
    使用了PE加载技术、Hook技术用程序加载PE文件到内存并运行。当在内存中运行的程序,比如arp.EXE执行完之后就会退出,那结果是ExitProcess被调用,那将是我们主进程也结束,显然我们不希望这样。 处理办法:HOOK ExitProcess。问题来了,对MS的许多控制台程序,它们退出都是调用exit,所以如果HOOK ExitProcess, 那我们俩次在内存中运行arp.EXE之后就会死锁。所以对这类程序而言,不能H OOK ExitProcess,只能HOOK msvcrt!exit。LOADER要加载一个EXE文件,这个EXE文件加载的地址是在0x400000。在我们LOADER的MAIN函数里面,这个地址已经被占用,而你是不能去Free这个地址 重新分布的,这样可能会导致程序崩溃,处理方法相见说明。            
    2022-01-21 18:51:40下载
    积分:1
  • c语言做的课程设计,通过实现二叉树来对书籍进行操作
    c语言做的课程设计,通过实现二叉树来对书籍进行操作-c language to the curriculum design, through the realization of a binary tree to operate on the books
    2023-06-28 10:55:03下载
    积分:1
  • labview中表格的应用和时间日期的提取,将数据输入到表格中
    labview中表格的应用和时间日期的提取,将数据输入到表格中-LabVIEW Application Form Date and time of extraction, the data entered into the table
    2023-08-26 20:40:04下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载