找回密码
 注册

QQ登录

只需一步,快速开始

楼主: hugebird

Broadcom路由DSL猫用的JTAG工具最新版

    [复制链接]
发表于 2008-7-21 16:46:19 | 显示全部楼层
原帖由 818240 于 2008-7-21 15:01 发表
C:\Jtag\brjtag\windows>brjtag -probeonly
=============================================
Broadcom EJTAG Debrick Utility v1.0-hugebird
=============================================
Probing bus ... Do ...

你也成功了?
发表于 2008-8-25 01:45:48 | 显示全部楼层
好东西,做个记号先,有时间再看,谢谢
发表于 2008-8-25 02:06:40 | 显示全部楼层
原帖由 hugebird 于 2008-7-14 14:03 发表
不是flash参数的问题,我估计是flash 操作起始地址有问题,8MB和16MB从1c00 0000开始,与4MB的不一样. 因为没有相关的资料,我也解决不了,毕竟这个工具最初是为WRT54G 路由器做的。

flash_area_type  flash_are ...


这里是128N的详细技术文挡。包括地址定义和各种写入方法。
https://www.chinadsl.net/thread-25787-1-1.html
发表于 2008-9-24 22:35:59 | 显示全部楼层
谢谢分享 (daxiao:
 楼主| 发表于 2008-11-6 20:39:29 | 显示全部楼层
对于容量超过4MB的flash, BRJTAG 设置flash内存映射起始地址的计算公式是: 内存的高端 0x2000 0000 -  Flash 容量
4MB flash , 容量 是0x4 0000 ,  内存映射起始地址是 0x2000 0000 - 0x4 0000 =0x1fc0 0000
8MB flash , 容量 是0x8 0000 ,  内存映射起始地址是 0x2000 0000 - 0x8 0000 =0x1f80 0000
16MB flash ,容量 是0x10 0000 ,  内存映射起始地址是 0x2000 0000 - 0x4 0000 =0x1f00 0000
CFE的大小也要根据flash扇区大小修改一下, 64K的用 0x1 0000, 128KB 的用0x2 0000.

BRJTAG 源码按这个修改一下就行
 楼主| 发表于 2008-11-17 14:41:06 | 显示全部楼层

16MB flash的编译文件

这个附件支持16MB的flash,TFE长度是128KB

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
 楼主| 发表于 2008-11-17 20:16:08 | 显示全部楼层
flash_area_type flash_area_list[] =
{
//--------- ---------- ----------- ------------
//chip_size area_name area_start area_length
//--------- ---------- ----------- ------------
{ size1MB, "CFE", 0x1FC00000, 0x40000 },
{ size2MB, "CFE", 0x1FC00000, 0x40000 },
{ size4MB, "CFE", 0x1FC00000, 0x40000 },
{ size8MB, "CFE", 0x1F800000, 0x40000 },
{ size16MB, "CFE", 0x1F000000, 0x40000 },
// for tiny CFE
{ size1MB, "TFE", 0x1FC00000, 0x10000 },
{ size2MB, "TFE", 0x1FC00000, 0x10000 },
{ size4MB, "TFE", 0x1FC00000, 0x10000 },
{ size8MB, "TFE", 0x1F800000, 0x10000 },
{ size16MB, "TFE", 0x1F000000, 0x20000 },

{ size1MB, "KERNEL", 0x1FC40000, 0xB0000 },
{ size2MB, "KERNEL", 0x1FC40000, 0x1B0000 },
{ size4MB, "KERNEL", 0x1FC40000, 0x3B0000 },
{ size8MB, "KERNEL", 0x1F840000, 0x7A0000 },
{ size16MB, "KERNEL", 0x1F040000, 0xFA0000 },
// for tiny CFE
{ size1MB, "TERNEL", 0x1FC10000, 0xE0000 },
{ size2MB, "TERNEL", 0x1FC10000, 0x1E0000 },
{ size4MB, "TERNEL", 0x1FC10000, 0x3E0000 },
{ size8MB, "TERNEL", 0x1F810000, 0x7D0000 },
{ size16MB, "TERNEL", 0x1F020000, 0xFD0000 },

{ size1MB, "NVRAM", 0x1FCF0000, 0x10000 },
{ size2MB, "NVRAM", 0x1FDF0000, 0x10000 },
{ size4MB, "NVRAM", 0x1FFF0000, 0x10000 },
{ size8MB, "NVRAM", 0x1FFF0000, 0x10000 },
{ size16MB, "NVRAM", 0x1FFE0000, 0x20000 },

{ size1MB, "WHOLEFLASH", 0x1FC00000, 0x100000 },
{ size2MB, "WHOLEFLASH", 0x1FC00000, 0x200000 },
{ size4MB, "WHOLEFLASH", 0x1FC00000, 0x400000 },
{ size8MB, "WHOLEFLASH", 0x1F800000, 0x800000 },
{ size16MB, "WHOLEFLASH", 0x1F000000, 0x1000000 },


1325行

     if (flash_size >= size16MB) FLASH_MEMORY_START = 0x1F000000;
          else if (flash_size >= size8MB) FLASH_MEMORY_START = 0x1F800000;
          else FLASH_MEMORY_START = 0x1FC00000;
 楼主| 发表于 2008-12-2 23:21:25 | 显示全部楼层
1.2测试版,

暂不要用erase和flash命令

[ 本帖最后由 hugebird 于 2008-12-2 15:57 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
发表于 2008-12-3 02:34:47 | 显示全部楼层
辛苦了,hugebird :)
发表于 2008-12-3 05:17:20 | 显示全部楼层
信息如下:辛苦你再改一下程序,谢谢

  1. =============================================
  2. Broadcom EJTAG Debrick Utility v1.2-hugebird
  3. =============================================
  4. Probing bus ... Done
  5. Instruction Length set to 5
  6. CPU running under BIG endian
  7. CPU Chip ID: 00000110001101011000000101111111 (0635817F)
  8. *** Found a Broadcom BCM6358 Rev 1 CPU chip ***
  9.     - EJTAG IMPCODE ....... : 00000000100000011000100100000100 (00818904)
  10.     - EJTAG Version ....... : 1 or 2.0
  11.     - EJTAG DMA Support ... : Yes
  12.     - EJTAG Implementation flags: R4k MIPS16 MIPS32
  13. Issuing Processor / Peripheral Reset ... Done
  14. Enabling Memory Writes ... Done
  15. Halting Processor ... <Processor did NOT enter Debug Mode!> ... Done
  16. Clearing Watchdog ... Done
  17. Probing Flash at (Flash Window: 0x1fc00000) ...
  18. Match Flash Chip (VenID:DevID = 017e : 2101)
  19. *** Found a Spansion S29GL128N/P Uni  (16MB) Flash Chip ***
  20.     - Flash Chip Window Start .... : 1f000000
  21.     - Flash Chip Window Length ... : 01000000
  22.     - Selected Area Start ........ : 00000000
  23.     - Selected Area Length ....... : 00000000

  24. Flash Sector Protection type 1
  25. DMA Read Addr = 1f000000  Data = (00000000)ERROR ON READ
  26. Read Lock Register Status: 0000000000000000 (0000)
  27. DMA Read Addr = 1f000000  Data = (00000000)ERROR ON READ
  28. Read Globle PPB Lock Status: 0000000000000000 (0000)
  29. DMA Read Addr = 1f000000  Data = (00000000)ERROR ON READ
  30. Read Sector: 1 (addr = 1f000000) with PPB:0000000000000000 (0000)
  31. DMA Read Addr = 1f020000  Data = (00000000)ERROR ON READ
  32. Read Sector: 2 (addr = 1f020000) with PPB:0000000000000000 (0000)
  33. DMA Read Addr = 1f040000  Data = (00000000)ERROR ON READ
  34. Read Sector: 3 (addr = 1f040000) with PPB:0000000000000000 (0000)
  35. DMA Read Addr = 1f060000  Data = (00000000)ERROR ON READ
  36. Read Sector: 4 (addr = 1f060000) with PPB:0000000000000000 (0000)
  37. DMA Read Addr = 1f080000  Data = (00000000)ERROR ON READ
  38. Read Sector: 5 (addr = 1f080000) with PPB:0000000000000000 (0000)
  39. DMA Read Addr = 1f0a0000  Data = (00000000)ERROR ON READ
  40. Read Sector: 6 (addr = 1f0a0000) with PPB:0000000000000000 (0000)
  41. DMA Read Addr = 1f0c0000  Data = (00000000)ERROR ON READ
  42. Read Sector: 7 (addr = 1f0c0000) with PPB:0000000000000000 (0000)
  43. DMA Read Addr = 1f0e0000  Data = (00000000)ERROR ON READ
  44. Read Sector: 8 (addr = 1f0e0000) with PPB:0000000000000000 (0000)
  45. DMA Read Addr = 1f100000  Data = (00000000)ERROR ON READ
  46. Read Sector: 9 (addr = 1f100000) with PPB:0000000000000000 (0000)
  47. DMA Read Addr = 1f120000  Data = (00000000)ERROR ON READ
  48. Read Sector: 10 (addr = 1f120000) with PPB:0000000000000000 (0000)
  49. DMA Read Addr = 1f140000  Data = (00000000)ERROR ON READ
  50. Read Sector: 11 (addr = 1f140000) with PPB:0000000000000000 (0000)
  51. DMA Read Addr = 1f160000  Data = (00000000)ERROR ON READ
  52. Read Sector: 12 (addr = 1f160000) with PPB:0000000000000000 (0000)
  53. DMA Read Addr = 1f180000  Data = (00000000)ERROR ON READ
  54. Read Sector: 13 (addr = 1f180000) with PPB:0000000000000000 (0000)
  55. DMA Read Addr = 1f1a0000  Data = (00000000)ERROR ON READ
  56. Read Sector: 14 (addr = 1f1a0000) with PPB:0000000000000000 (0000)
  57. DMA Read Addr = 1f1c0000  Data = (00000000)ERROR ON READ
  58. Read Sector: 15 (addr = 1f1c0000) with PPB:0000000000000000 (0000)
  59. DMA Read Addr = 1f1e0000  Data = (00000000)ERROR ON READ
  60. Read Sector: 16 (addr = 1f1e0000) with PPB:0000000000000000 (0000)
  61. DMA Read Addr = 1f200000  Data = (00000000)ERROR ON READ
  62. Read Sector: 17 (addr = 1f200000) with PPB:0000000000000000 (0000)
  63. DMA Read Addr = 1f220000  Data = (00000000)ERROR ON READ
  64. Read Sector: 18 (addr = 1f220000) with PPB:0000000000000000 (0000)
  65. DMA Read Addr = 1f240000  Data = (00000000)ERROR ON READ
  66. Read Sector: 19 (addr = 1f240000) with PPB:0000000000000000 (0000)
  67. DMA Read Addr = 1f260000  Data = (00000000)ERROR ON READ
  68. Read Sector: 20 (addr = 1f260000) with PPB:0000000000000000 (0000)
  69. DMA Read Addr = 1f280000  Data = (00000000)ERROR ON READ
  70. Read Sector: 21 (addr = 1f280000) with PPB:0000000000000000 (0000)
  71. DMA Read Addr = 1f2a0000  Data = (00000000)ERROR ON READ
  72. Read Sector: 22 (addr = 1f2a0000) with PPB:0000000000000000 (0000)
  73. DMA Read Addr = 1f2c0000  Data = (00000000)ERROR ON READ
  74. Read Sector: 23 (addr = 1f2c0000) with PPB:0000000000000000 (0000)
  75. DMA Read Addr = 1f2e0000  Data = (00000000)ERROR ON READ
  76. Read Sector: 24 (addr = 1f2e0000) with PPB:0000000000000000 (0000)
  77. DMA Read Addr = 1f300000  Data = (00000000)ERROR ON READ
  78. Read Sector: 25 (addr = 1f300000) with PPB:0000000000000000 (0000)
  79. DMA Read Addr = 1f320000  Data = (00000000)ERROR ON READ
  80. Read Sector: 26 (addr = 1f320000) with PPB:0000000000000000 (0000)
  81. DMA Read Addr = 1f340000  Data = (00000000)ERROR ON READ
  82. Read Sector: 27 (addr = 1f340000) with PPB:0000000000000000 (0000)
  83. DMA Read Addr = 1f360000  Data = (00000000)ERROR ON READ
  84. Read Sector: 28 (addr = 1f360000) with PPB:0000000000000000 (0000)
  85. DMA Read Addr = 1f380000  Data = (00000000)ERROR ON READ
  86. Read Sector: 29 (addr = 1f380000) with PPB:0000000000000000 (0000)
  87. DMA Read Addr = 1f3a0000  Data = (00000000)ERROR ON READ
  88. Read Sector: 30 (addr = 1f3a0000) with PPB:0000000000000000 (0000)
  89. DMA Read Addr = 1f3c0000  Data = (00000000)ERROR ON READ
  90. Read Sector: 31 (addr = 1f3c0000) with PPB:0000000000000000 (0000)
  91. DMA Read Addr = 1f3e0000  Data = (00000000)ERROR ON READ
  92. Read Sector: 32 (addr = 1f3e0000) with PPB:0000000000000000 (0000)
  93. DMA Read Addr = 1f400000  Data = (00000000)ERROR ON READ
  94. Read Sector: 33 (addr = 1f400000) with PPB:0000000000000000 (0000)
  95. DMA Read Addr = 1f420000  Data = (00000000)ERROR ON READ
  96. Read Sector: 34 (addr = 1f420000) with PPB:0000000000000000 (0000)
  97. DMA Read Addr = 1f440000  Data = (00000000)ERROR ON READ
  98. Read Sector: 35 (addr = 1f440000) with PPB:0000000000000000 (0000)
  99. DMA Read Addr = 1f460000  Data = (00000000)ERROR ON READ
  100. Read Sector: 36 (addr = 1f460000) with PPB:0000000000000000 (0000)
  101. DMA Read Addr = 1f480000  Data = (00000000)ERROR ON READ
  102. Read Sector: 37 (addr = 1f480000) with PPB:0000000000000000 (0000)
  103. DMA Read Addr = 1f4a0000  Data = (00000000)ERROR ON READ
  104. Read Sector: 38 (addr = 1f4a0000) with PPB:0000000000000000 (0000)
  105. DMA Read Addr = 1f4c0000  Data = (00000000)ERROR ON READ
  106. Read Sector: 39 (addr = 1f4c0000) with PPB:0000000000000000 (0000)
  107. DMA Read Addr = 1f4e0000  Data = (00000000)ERROR ON READ
  108. Read Sector: 40 (addr = 1f4e0000) with PPB:0000000000000000 (0000)
  109. DMA Read Addr = 1f500000  Data = (00000000)ERROR ON READ
  110. Read Sector: 41 (addr = 1f500000) with PPB:0000000000000000 (0000)
  111. DMA Read Addr = 1f520000  Data = (00000000)ERROR ON READ
  112. Read Sector: 42 (addr = 1f520000) with PPB:0000000000000000 (0000)
  113. DMA Read Addr = 1f540000  Data = (00000000)ERROR ON READ
  114. Read Sector: 43 (addr = 1f540000) with PPB:0000000000000000 (0000)
  115. DMA Read Addr = 1f560000  Data = (00000000)ERROR ON READ
  116. Read Sector: 44 (addr = 1f560000) with PPB:0000000000000000 (0000)
  117. DMA Read Addr = 1f580000  Data = (00000000)ERROR ON READ
  118. Read Sector: 45 (addr = 1f580000) with PPB:0000000000000000 (0000)
  119. DMA Read Addr = 1f5a0000  Data = (00000000)ERROR ON READ
  120. Read Sector: 46 (addr = 1f5a0000) with PPB:0000000000000000 (0000)
  121. DMA Read Addr = 1f5c0000  Data = (00000000)ERROR ON READ
  122. Read Sector: 47 (addr = 1f5c0000) with PPB:0000000000000000 (0000)
  123. DMA Read Addr = 1f5e0000  Data = (00000000)ERROR ON READ
  124. Read Sector: 48 (addr = 1f5e0000) with PPB:0000000000000000 (0000)
  125. DMA Read Addr = 1f600000  Data = (00000000)ERROR ON READ
  126. Read Sector: 49 (addr = 1f600000) with PPB:0000000000000000 (0000)
  127. DMA Read Addr = 1f620000  Data = (00000000)ERROR ON READ
  128. Read Sector: 50 (addr = 1f620000) with PPB:0000000000000000 (0000)
  129. DMA Read Addr = 1f640000  Data = (00000000)ERROR ON READ
  130. Read Sector: 51 (addr = 1f640000) with PPB:0000000000000000 (0000)
  131. DMA Read Addr = 1f660000  Data = (00000000)ERROR ON READ
  132. Read Sector: 52 (addr = 1f660000) with PPB:0000000000000000 (0000)
  133. DMA Read Addr = 1f680000  Data = (00000000)ERROR ON READ
  134. Read Sector: 53 (addr = 1f680000) with PPB:0000000000000000 (0000)
  135. DMA Read Addr = 1f6a0000  Data = (00000000)ERROR ON READ
  136. Read Sector: 54 (addr = 1f6a0000) with PPB:0000000000000000 (0000)
  137. DMA Read Addr = 1f6c0000  Data = (00000000)ERROR ON READ
  138. Read Sector: 55 (addr = 1f6c0000) with PPB:0000000000000000 (0000)
  139. DMA Read Addr = 1f6e0000  Data = (00000000)ERROR ON READ
  140. Read Sector: 56 (addr = 1f6e0000) with PPB:0000000000000000 (0000)
  141. DMA Read Addr = 1f700000  Data = (00000000)ERROR ON READ
  142. Read Sector: 57 (addr = 1f700000) with PPB:0000000000000000 (0000)
  143. DMA Read Addr = 1f720000  Data = (00000000)ERROR ON READ
  144. Read Sector: 58 (addr = 1f720000) with PPB:0000000000000000 (0000)
  145. DMA Read Addr = 1f740000  Data = (00000000)ERROR ON READ
  146. Read Sector: 59 (addr = 1f740000) with PPB:0000000000000000 (0000)
  147. DMA Read Addr = 1f760000  Data = (00000000)ERROR ON READ
  148. Read Sector: 60 (addr = 1f760000) with PPB:0000000000000000 (0000)
  149. DMA Read Addr = 1f780000  Data = (00000000)ERROR ON READ
  150. Read Sector: 61 (addr = 1f780000) with PPB:0000000000000000 (0000)
  151. DMA Read Addr = 1f7a0000  Data = (00000000)ERROR ON READ
  152. Read Sector: 62 (addr = 1f7a0000) with PPB:0000000000000000 (0000)
  153. DMA Read Addr = 1f7c0000  Data = (00000000)ERROR ON READ
  154. Read Sector: 63 (addr = 1f7c0000) with PPB:0000000000000000 (0000)
  155. DMA Read Addr = 1f7e0000  Data = (00000000)ERROR ON READ
  156. Read Sector: 64 (addr = 1f7e0000) with PPB:0000000000000000 (0000)
  157. Read Sector: 65 (addr = 1f800000) with PPB:0000000000000000 (0001)
  158. Read Sector: 66 (addr = 1f820000) with PPB:0000000000000000 (0001)
  159. Read Sector: 67 (addr = 1f840000) with PPB:0000000000000000 (0001)
  160. Read Sector: 68 (addr = 1f860000) with PPB:0000000000000000 (0001)
  161. Read Sector: 69 (addr = 1f880000) with PPB:0000000000000000 (0001)
  162. Read Sector: 70 (addr = 1f8a0000) with PPB:0000000000000000 (0001)
  163. Read Sector: 71 (addr = 1f8c0000) with PPB:0000000000000000 (0001)
  164. Read Sector: 72 (addr = 1f8e0000) with PPB:0000000000000000 (0001)
  165. Read Sector: 73 (addr = 1f900000) with PPB:0000000000000000 (0001)
  166. Read Sector: 74 (addr = 1f920000) with PPB:0000000000000000 (0001)
  167. Read Sector: 75 (addr = 1f940000) with PPB:0000000000000000 (0001)
  168. Read Sector: 76 (addr = 1f960000) with PPB:0000000000000000 (0001)
  169. Read Sector: 77 (addr = 1f980000) with PPB:0000000000000000 (0001)
  170. Read Sector: 78 (addr = 1f9a0000) with PPB:0000000000000000 (0001)
  171. Read Sector: 79 (addr = 1f9c0000) with PPB:0000000000000000 (0001)
  172. Read Sector: 80 (addr = 1f9e0000) with PPB:0000000000000000 (0001)
  173. Read Sector: 81 (addr = 1fa00000) with PPB:0000000000000000 (0001)
  174. Read Sector: 82 (addr = 1fa20000) with PPB:0000000000000000 (0001)
  175. Read Sector: 83 (addr = 1fa40000) with PPB:0000000000000000 (0001)
  176. Read Sector: 84 (addr = 1fa60000) with PPB:0000000000000000 (0001)
  177. Read Sector: 85 (addr = 1fa80000) with PPB:0000000000000000 (0001)
  178. Read Sector: 86 (addr = 1faa0000) with PPB:0000000000000000 (0001)
  179. Read Sector: 87 (addr = 1fac0000) with PPB:0000000000000000 (0001)
  180. Read Sector: 88 (addr = 1fae0000) with PPB:0000000000000000 (0001)
  181. Read Sector: 89 (addr = 1fb00000) with PPB:0000000000000000 (0001)
  182. Read Sector: 90 (addr = 1fb20000) with PPB:0000000000000000 (0001)
  183. Read Sector: 91 (addr = 1fb40000) with PPB:0000000000000000 (0001)
  184. Read Sector: 92 (addr = 1fb60000) with PPB:0000000000000000 (0001)
  185. Read Sector: 93 (addr = 1fb80000) with PPB:0000000000000000 (0001)
  186. Read Sector: 94 (addr = 1fba0000) with PPB:0000000000000000 (0001)
  187. Read Sector: 95 (addr = 1fbc0000) with PPB:0000000000000000 (0001)
  188. Read Sector: 96 (addr = 1fbe0000) with PPB:0000000000000000 (0001)
  189. Read Sector: 97 (addr = 1fc00000) with PPB:0000000000000000 (0001)
  190. Read Sector: 98 (addr = 1fc20000) with PPB:0000000000000000 (0001)
  191. Read Sector: 99 (addr = 1fc40000) with PPB:0000000000000000 (0001)
  192. Read Sector: 100 (addr = 1fc60000) with PPB:0000000000000000 (0001)
  193. Read Sector: 101 (addr = 1fc80000) with PPB:0000000000000000 (0001)
  194. Read Sector: 102 (addr = 1fca0000) with PPB:0000000000000000 (0001)
  195. Read Sector: 103 (addr = 1fcc0000) with PPB:0000000000000000 (0001)
  196. Read Sector: 104 (addr = 1fce0000) with PPB:0000000000000000 (0001)
  197. Read Sector: 105 (addr = 1fd00000) with PPB:0000000000000000 (0001)
  198. Read Sector: 106 (addr = 1fd20000) with PPB:0000000000000000 (0001)
  199. Read Sector: 107 (addr = 1fd40000) with PPB:0000000000000000 (0001)
  200. Read Sector: 108 (addr = 1fd60000) with PPB:0000000000000000 (0001)
  201. Read Sector: 109 (addr = 1fd80000) with PPB:0000000000000000 (0001)
  202. Read Sector: 110 (addr = 1fda0000) with PPB:0000000000000000 (0001)
  203. Read Sector: 111 (addr = 1fdc0000) with PPB:0000000000000000 (0001)
  204. Read Sector: 112 (addr = 1fde0000) with PPB:0000000000000000 (0001)
  205. Read Sector: 113 (addr = 1fe00000) with PPB:0000000000000000 (0001)
  206. Read Sector: 114 (addr = 1fe20000) with PPB:0000000000000000 (0001)
  207. Read Sector: 115 (addr = 1fe40000) with PPB:0000000000000000 (0001)
  208. Read Sector: 116 (addr = 1fe60000) with PPB:0000000000000000 (0001)
  209. Read Sector: 117 (addr = 1fe80000) with PPB:0000000000000000 (0001)
  210. Read Sector: 118 (addr = 1fea0000) with PPB:0000000000000000 (0001)
  211. Read Sector: 119 (addr = 1fec0000) with PPB:0000000000000000 (0001)
  212. Read Sector: 120 (addr = 1fee0000) with PPB:0000000000000000 (0001)
  213. Read Sector: 121 (addr = 1ff00000) with PPB:0000000000000000 (0001)
  214. Read Sector: 122 (addr = 1ff20000) with PPB:0000000000000000 (0001)
  215. Read Sector: 123 (addr = 1ff40000) with PPB:0000000000000000 (0001)
  216. Read Sector: 124 (addr = 1ff60000) with PPB:0000000000000000 (0001)
  217. Read Sector: 125 (addr = 1ff80000) with PPB:0000000000000000 (0001)
  218. Read Sector: 126 (addr = 1ffa0000) with PPB:0000000000000000 (0001)
  219. Read Sector: 127 (addr = 1ffc0000) with PPB:0000000000000000 (0001)
  220. Read Sector: 128 (addr = 1ffe0000) with PPB:0000000000000000 (0001)

  221. *** REQUESTED OPERATION IS COMPLETE ***
复制代码


附件:

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
*滑块验证:
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|宽带技术网 |网站地图

粤公网安备 44152102000001号

GMT+8, 2024-4-26 11:04 , Processed in 0.030920 second(s), 4 queries , Redis On.

Powered by Discuz! X3.5 Licensed

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表