libm_strtoull.S 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128
  1. /*
  2. * Math library
  3. *
  4. * Copyright (C) 2016 Intel Corporation. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * * Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * * Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in
  14. * the documentation and/or other materials provided with the
  15. * distribution.
  16. * * Neither the name of Intel Corporation nor the names of its
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. *
  33. * Author Name <jingwei.zhang@intel.com>
  34. * History:
  35. * 03-14-2016 Initial version. numerics svn rev. 12864
  36. */
  37. .file "libm_strtoull.c"
  38. .text
  39. ..TXTST0:
  40. # -- Begin __libm_conv_strtoull
  41. .text
  42. .align 16,0x90
  43. .hidden __libm_conv_strtoull
  44. .globl __libm_conv_strtoull
  45. __libm_conv_strtoull:
  46. # parameter 1: 64 + %esp
  47. ..B1.1:
  48. ..L1:
  49. pushl %esi
  50. pushl %edi
  51. pushl %ebx
  52. pushl %ebp
  53. subl $44, %esp
  54. movl 64(%esp), %eax
  55. testl %eax, %eax
  56. je ..B1.21
  57. ..B1.2:
  58. movsbl (%eax), %ebx
  59. testl %ebx, %ebx
  60. je ..B1.21
  61. ..B1.3:
  62. xorl %edx, %edx
  63. movl %eax, %ecx
  64. ..B1.4:
  65. incl %ecx
  66. incl %edx
  67. cmpb $0, (%ecx)
  68. jne ..B1.4
  69. ..B1.5:
  70. testl %edx, %edx
  71. je ..B1.21
  72. ..B1.6:
  73. lea -48(%ebx), %ebp
  74. cmpl $9, %ebp
  75. ja ..B1.21
  76. ..B1.8:
  77. cmpl $48, %ebx
  78. je ..B1.25
  79. ..B1.9:
  80. cmpl $1, %edx
  81. jle ..B1.14
  82. ..B1.10:
  83. movl $1, %ebx
  84. ..B1.11:
  85. movsbl (%ebx,%eax), %ebp
  86. addl $-48, %ebp
  87. cmpl $9, %ebp
  88. ja ..B1.21
  89. ..B1.12:
  90. incl %ebx
  91. cmpl %edx, %ebx
  92. jl ..B1.11
  93. ..B1.14:
  94. cmpl $64, %edx
  95. movl %edx, %ebx
  96. jb ..L2
  97. movl $64, %ebx
  98. ..L2:
  99. testl %edx, %edx
  100. jle ..B1.21
  101. ..B1.15:
  102. movl %ebx, %edx
  103. xorl %ebp, %ebp
  104. shrl $1, %edx
  105. xorl %esi, %esi
  106. call ..L3
  107. ..L3:
  108. popl %edi
  109. lea _GLOBAL_OFFSET_TABLE_+[. - ..L3](%edi), %edi
  110. testl %edx, %edx
  111. jbe ..B1.23
  112. ..B1.16:
  113. movl %ecx, (%esp)
  114. xorl %eax, %eax
  115. movl %edx, 12(%esp)
  116. movl %ebx, 8(%esp)
  117. movl %ecx, 4(%esp)
  118. movl (%esp), %edx
  119. ..B1.17:
  120. movzbl -1(%edx), %ebx
  121. addl $-48, %ebx
  122. movsbl %bl, %ecx
  123. lea (%eax,%eax,4), %ebx
  124. shll $5, %ebx
  125. incl %eax
  126. lea _C_MUL_10_POW_I@GOTOFF(%edi,%ecx,8), %ecx
  127. addl (%ecx,%ebx), %ebp
  128. adcl 4(%ecx,%ebx), %esi
  129. movzbl -2(%edx), %ecx
  130. addl $-2, %edx
  131. addl $-48, %ecx
  132. movsbl %cl, %ecx
  133. lea _C_MUL_10_POW_I@GOTOFF(%edi,%ecx,8), %ecx
  134. addl 80(%ecx,%ebx), %ebp
  135. adcl 84(%ecx,%ebx), %esi
  136. cmpl 12(%esp), %eax
  137. jb ..B1.17
  138. ..B1.18:
  139. movl 8(%esp), %ebx
  140. lea 1(%eax,%eax), %eax
  141. movl 4(%esp), %ecx
  142. ..B1.19:
  143. lea -1(%eax), %edx
  144. cmpl %edx, %ebx
  145. jbe ..B1.22
  146. ..B1.20:
  147. subl %eax, %ecx
  148. lea (%eax,%eax,4), %ebx
  149. shll $4, %ebx
  150. movzbl (%ecx), %ecx
  151. addl $-48, %ecx
  152. movsbl %cl, %ecx
  153. lea (%ebx,%ecx,8), %ecx
  154. addl -80+_C_MUL_10_POW_I@GOTOFF(%edi,%ecx), %ebp
  155. adcl -76+_C_MUL_10_POW_I@GOTOFF(%edi,%ecx), %esi
  156. jmp ..B1.22
  157. ..B1.21:
  158. xorl %ebp, %ebp
  159. xorl %esi, %esi
  160. ..B1.22:
  161. movl %ebp, %eax
  162. movl %esi, %edx
  163. addl $44, %esp
  164. popl %ebp
  165. popl %ebx
  166. popl %edi
  167. popl %esi
  168. ret
  169. ..B1.23:
  170. movl $1, %eax
  171. jmp ..B1.19
  172. ..B1.25:
  173. cmpl $3, %edx
  174. jl ..B1.27
  175. ..B1.26:
  176. movsbl 1(%eax), %ebx
  177. andl $-33, %ebx
  178. cmpl $88, %ebx
  179. je ..B1.51
  180. jmp ..B1.28
  181. ..B1.27:
  182. cmpl $1, %edx
  183. jle ..B1.32
  184. ..B1.28:
  185. movl $1, %ebx
  186. ..B1.29:
  187. movsbl (%ebx,%eax), %ebp
  188. addl $-48, %ebp
  189. cmpl $7, %ebp
  190. ja ..B1.21
  191. ..B1.30:
  192. incl %ebx
  193. cmpl %edx, %ebx
  194. jl ..B1.29
  195. ..B1.32:
  196. decl %edx
  197. cmpl $22, %edx
  198. movl %edx, %edi
  199. jb ..L4
  200. movl $22, %edi
  201. ..L4:
  202. testl %edx, %edx
  203. jle ..B1.21
  204. ..B1.33:
  205. movl %edi, %eax
  206. xorl %ebp, %ebp
  207. shrl $1, %eax
  208. xorl %esi, %esi
  209. testl %eax, %eax
  210. jbe ..B1.49
  211. ..B1.34:
  212. movl %ecx, %ebx
  213. movl %ebp, 16(%esp)
  214. movl %eax, 8(%esp)
  215. movl %edi, (%esp)
  216. movl %ecx, 4(%esp)
  217. ..B1.35:
  218. movl 16(%esp), %edi
  219. movzbl -1(%ebx), %ecx
  220. addl $-48, %ecx
  221. movsbl %cl, %eax
  222. lea (%edi,%edi,2), %ecx
  223. movl %ecx, 12(%esp)
  224. addl %ecx, %ecx
  225. cmpl $31, %ecx
  226. cltd
  227. jbe ..B1.37
  228. ..B1.36:
  229. movl %eax, %edx
  230. xorl %edi, %edi
  231. shll %cl, %edx
  232. jmp ..B1.38
  233. ..B1.37:
  234. movl %eax, %edi
  235. shldl %cl, %edi, %edx
  236. shll %cl, %edi
  237. ..B1.38:
  238. addl %edi, %ebp
  239. movl 12(%esp), %edi
  240. movzbl -2(%ebx), %ecx
  241. adcl %edx, %esi
  242. addl $-48, %ecx
  243. movsbl %cl, %eax
  244. lea 3(%edi,%edi), %ecx
  245. cltd
  246. cmpl $31, %ecx
  247. jbe ..B1.40
  248. ..B1.39:
  249. movl %eax, %edx
  250. xorl %edi, %edi
  251. shll %cl, %edx
  252. jmp ..B1.41
  253. ..B1.40:
  254. movl %eax, %edi
  255. shldl %cl, %eax, %edx
  256. shll %cl, %edi
  257. ..B1.41:
  258. addl %edi, %ebp
  259. movl 16(%esp), %ecx
  260. adcl %edx, %esi
  261. incl %ecx
  262. addl $-2, %ebx
  263. movl %ecx, 16(%esp)
  264. cmpl 8(%esp), %ecx
  265. jb ..B1.35
  266. ..B1.42:
  267. movl %ecx, %edx
  268. lea 1(%edx,%edx), %ebx
  269. movl (%esp), %edi
  270. movl 4(%esp), %ecx
  271. ..B1.43:
  272. lea -1(%ebx), %eax
  273. cmpl %eax, %edi
  274. jbe ..B1.22
  275. ..B1.44:
  276. subl %ebx, %ecx
  277. movzbl (%ecx), %ecx
  278. addl $-48, %ecx
  279. movsbl %cl, %eax
  280. lea -3(%ebx,%ebx,2), %ecx
  281. cltd
  282. cmpl $31, %ecx
  283. jbe ..B1.46
  284. ..B1.45:
  285. movl %eax, %edx
  286. xorl %ebx, %ebx
  287. shll %cl, %edx
  288. ..B1.47:
  289. addl %ebx, %ebp
  290. adcl %edx, %esi
  291. jmp ..B1.22
  292. ..B1.46:
  293. movl %eax, %ebx
  294. shldl %cl, %eax, %edx
  295. shll %cl, %ebx
  296. jmp ..B1.47
  297. ..B1.49:
  298. movl $1, %ebx
  299. jmp ..B1.43
  300. ..B1.51:
  301. addl $-2, %edx
  302. xorl %ebx, %ebx
  303. ..B1.52:
  304. movsbl 2(%ebx,%eax), %esi
  305. lea -48(%esi), %ebp
  306. cmpl $9, %ebp
  307. jbe ..B1.55
  308. ..B1.53:
  309. lea -97(%esi), %ebp
  310. cmpl $5, %ebp
  311. jbe ..B1.55
  312. ..B1.54:
  313. addl $-65, %esi
  314. cmpl $5, %esi
  315. ja ..B1.21
  316. ..B1.55:
  317. incl %ebx
  318. cmpl %edx, %ebx
  319. jb ..B1.52
  320. ..B1.56:
  321. cmpl $16, %edx
  322. movl %edx, %eax
  323. jb ..L5
  324. movl $16, %eax
  325. ..L5:
  326. testl %edx, %edx
  327. jle ..B1.21
  328. ..B1.57:
  329. movl %eax, %edx
  330. xorl %ebp, %ebp
  331. shrl $1, %edx
  332. xorl %esi, %esi
  333. testl %edx, %edx
  334. jbe ..B1.89
  335. ..B1.58:
  336. movl %ecx, %edi
  337. xorl %ebx, %ebx
  338. movl %edi, 32(%esp)
  339. movl %edx, 28(%esp)
  340. movl %eax, (%esp)
  341. movl %ecx, 4(%esp)
  342. ..B1.59:
  343. movl 32(%esp), %edi
  344. movsbl -1(%edi), %ecx
  345. movl %ecx, 20(%esp)
  346. lea -48(%ecx), %ecx
  347. movl %ecx, 8(%esp)
  348. cmpl $9, %ecx
  349. ja ..B1.61
  350. ..B1.60:
  351. movsbl 8(%esp), %eax
  352. jmp ..B1.64
  353. ..B1.61:
  354. movl 20(%esp), %ecx
  355. lea -97(%ecx), %edi
  356. cmpl $5, %edi
  357. ja ..B1.63
  358. ..B1.62:
  359. addl $-87, %ecx
  360. movsbl %cl, %eax
  361. jmp ..B1.64
  362. ..B1.63:
  363. addl $-55, %ecx
  364. movsbl %cl, %eax
  365. ..B1.64:
  366. cltd
  367. lea (,%ebx,8), %ecx
  368. cmpl $31, %ecx
  369. jbe ..B1.66
  370. ..B1.65:
  371. movl %eax, %edx
  372. movl $0, 16(%esp)
  373. shll %cl, %edx
  374. jmp ..B1.67
  375. ..B1.66:
  376. shldl %cl, %eax, %edx
  377. shll %cl, %eax
  378. movl %eax, 16(%esp)
  379. ..B1.67:
  380. movl 32(%esp), %edi
  381. addl 16(%esp), %ebp
  382. movsbl -2(%edi), %ecx
  383. adcl %edx, %esi
  384. movl %ecx, 24(%esp)
  385. lea -48(%ecx), %ecx
  386. movl %ecx, 12(%esp)
  387. cmpl $9, %ecx
  388. ja ..B1.69
  389. ..B1.68:
  390. movsbl 12(%esp), %eax
  391. jmp ..B1.72
  392. ..B1.69:
  393. movl 24(%esp), %ecx
  394. lea -97(%ecx), %edi
  395. cmpl $5, %edi
  396. ja ..B1.71
  397. ..B1.70:
  398. addl $-87, %ecx
  399. movsbl %cl, %eax
  400. jmp ..B1.72
  401. ..B1.71:
  402. addl $-55, %ecx
  403. movsbl %cl, %eax
  404. ..B1.72:
  405. cltd
  406. lea 4(,%ebx,8), %ecx
  407. cmpl $31, %ecx
  408. jbe ..B1.74
  409. ..B1.73:
  410. movl %eax, %edx
  411. xorl %edi, %edi
  412. shll %cl, %edx
  413. jmp ..B1.75
  414. ..B1.74:
  415. movl %eax, %edi
  416. shldl %cl, %eax, %edx
  417. shll %cl, %edi
  418. ..B1.75:
  419. addl %edi, %ebp
  420. adcl %edx, %esi
  421. incl %ebx
  422. addl $-2, 32(%esp)
  423. cmpl 28(%esp), %ebx
  424. jb ..B1.59
  425. ..B1.76:
  426. movl (%esp), %eax
  427. lea 1(%ebx,%ebx), %edi
  428. movl 4(%esp), %ecx
  429. ..B1.77:
  430. lea -1(%edi), %ebx
  431. cmpl %ebx, %eax
  432. jbe ..B1.22
  433. ..B1.78:
  434. subl %edi, %ecx
  435. movsbl (%ecx), %ebx
  436. lea -48(%ebx), %ecx
  437. cmpl $9, %ecx
  438. ja ..B1.80
  439. ..B1.79:
  440. movsbl %cl, %eax
  441. jmp ..B1.83
  442. ..B1.80:
  443. lea -97(%ebx), %ecx
  444. cmpl $5, %ecx
  445. ja ..B1.82
  446. ..B1.81:
  447. addl $-87, %ebx
  448. movsbl %bl, %eax
  449. jmp ..B1.83
  450. ..B1.82:
  451. addl $-55, %ebx
  452. movsbl %bl, %eax
  453. ..B1.83:
  454. cltd
  455. lea -4(,%edi,4), %ecx
  456. cmpl $31, %ecx
  457. jbe ..B1.85
  458. ..B1.84:
  459. movl %eax, %edx
  460. xorl %ebx, %ebx
  461. shll %cl, %edx
  462. ..B1.86:
  463. addl %ebx, %ebp
  464. adcl %edx, %esi
  465. jmp ..B1.22
  466. ..B1.85:
  467. movl %eax, %ebx
  468. shldl %cl, %eax, %edx
  469. shll %cl, %ebx
  470. jmp ..B1.86
  471. ..B1.89:
  472. movl $1, %edi
  473. jmp ..B1.77
  474. .align 16,0x90
  475. .type __libm_conv_strtoull,@function
  476. .size __libm_conv_strtoull,.-__libm_conv_strtoull
  477. .data
  478. # -- End __libm_conv_strtoull
  479. .section .rodata, "a"
  480. .align 8
  481. .align 8
  482. _C_MUL_10_POW_I:
  483. .long 0x00000000,0x00000000
  484. .long 0x00000001,0x00000000
  485. .long 0x00000002,0x00000000
  486. .long 0x00000003,0x00000000
  487. .long 0x00000004,0x00000000
  488. .long 0x00000005,0x00000000
  489. .long 0x00000006,0x00000000
  490. .long 0x00000007,0x00000000
  491. .long 0x00000008,0x00000000
  492. .long 0x00000009,0x00000000
  493. .long 0x00000000,0x00000000
  494. .long 0x0000000a,0x00000000
  495. .long 0x00000014,0x00000000
  496. .long 0x0000001e,0x00000000
  497. .long 0x00000028,0x00000000
  498. .long 0x00000032,0x00000000
  499. .long 0x0000003c,0x00000000
  500. .long 0x00000046,0x00000000
  501. .long 0x00000050,0x00000000
  502. .long 0x0000005a,0x00000000
  503. .long 0x00000000,0x00000000
  504. .long 0x00000064,0x00000000
  505. .long 0x000000c8,0x00000000
  506. .long 0x0000012c,0x00000000
  507. .long 0x00000190,0x00000000
  508. .long 0x000001f4,0x00000000
  509. .long 0x00000258,0x00000000
  510. .long 0x000002bc,0x00000000
  511. .long 0x00000320,0x00000000
  512. .long 0x00000384,0x00000000
  513. .long 0x00000000,0x00000000
  514. .long 0x000003e8,0x00000000
  515. .long 0x000007d0,0x00000000
  516. .long 0x00000bb8,0x00000000
  517. .long 0x00000fa0,0x00000000
  518. .long 0x00001388,0x00000000
  519. .long 0x00001770,0x00000000
  520. .long 0x00001b58,0x00000000
  521. .long 0x00001f40,0x00000000
  522. .long 0x00002328,0x00000000
  523. .long 0x00000000,0x00000000
  524. .long 0x00002710,0x00000000
  525. .long 0x00004e20,0x00000000
  526. .long 0x00007530,0x00000000
  527. .long 0x00009c40,0x00000000
  528. .long 0x0000c350,0x00000000
  529. .long 0x0000ea60,0x00000000
  530. .long 0x00011170,0x00000000
  531. .long 0x00013880,0x00000000
  532. .long 0x00015f90,0x00000000
  533. .long 0x00000000,0x00000000
  534. .long 0x000186a0,0x00000000
  535. .long 0x00030d40,0x00000000
  536. .long 0x000493e0,0x00000000
  537. .long 0x00061a80,0x00000000
  538. .long 0x0007a120,0x00000000
  539. .long 0x000927c0,0x00000000
  540. .long 0x000aae60,0x00000000
  541. .long 0x000c3500,0x00000000
  542. .long 0x000dbba0,0x00000000
  543. .long 0x00000000,0x00000000
  544. .long 0x000f4240,0x00000000
  545. .long 0x001e8480,0x00000000
  546. .long 0x002dc6c0,0x00000000
  547. .long 0x003d0900,0x00000000
  548. .long 0x004c4b40,0x00000000
  549. .long 0x005b8d80,0x00000000
  550. .long 0x006acfc0,0x00000000
  551. .long 0x007a1200,0x00000000
  552. .long 0x00895440,0x00000000
  553. .long 0x00000000,0x00000000
  554. .long 0x00989680,0x00000000
  555. .long 0x01312d00,0x00000000
  556. .long 0x01c9c380,0x00000000
  557. .long 0x02625a00,0x00000000
  558. .long 0x02faf080,0x00000000
  559. .long 0x03938700,0x00000000
  560. .long 0x042c1d80,0x00000000
  561. .long 0x04c4b400,0x00000000
  562. .long 0x055d4a80,0x00000000
  563. .long 0x00000000,0x00000000
  564. .long 0x05f5e100,0x00000000
  565. .long 0x0bebc200,0x00000000
  566. .long 0x11e1a300,0x00000000
  567. .long 0x17d78400,0x00000000
  568. .long 0x1dcd6500,0x00000000
  569. .long 0x23c34600,0x00000000
  570. .long 0x29b92700,0x00000000
  571. .long 0x2faf0800,0x00000000
  572. .long 0x35a4e900,0x00000000
  573. .long 0x00000000,0x00000000
  574. .long 0x3b9aca00,0x00000000
  575. .long 0x77359400,0x00000000
  576. .long 0xb2d05e00,0x00000000
  577. .long 0xee6b2800,0x00000000
  578. .long 0x2a05f200,0x00000001
  579. .long 0x65a0bc00,0x00000001
  580. .long 0xa13b8600,0x00000001
  581. .long 0xdcd65000,0x00000001
  582. .long 0x18711a00,0x00000002
  583. .long 0x00000000,0x00000000
  584. .long 0x540be400,0x00000002
  585. .long 0xa817c800,0x00000004
  586. .long 0xfc23ac00,0x00000006
  587. .long 0x502f9000,0x00000009
  588. .long 0xa43b7400,0x0000000b
  589. .long 0xf8475800,0x0000000d
  590. .long 0x4c533c00,0x00000010
  591. .long 0xa05f2000,0x00000012
  592. .long 0xf46b0400,0x00000014
  593. .long 0x00000000,0x00000000
  594. .long 0x4876e800,0x00000017
  595. .long 0x90edd000,0x0000002e
  596. .long 0xd964b800,0x00000045
  597. .long 0x21dba000,0x0000005d
  598. .long 0x6a528800,0x00000074
  599. .long 0xb2c97000,0x0000008b
  600. .long 0xfb405800,0x000000a2
  601. .long 0x43b74000,0x000000ba
  602. .long 0x8c2e2800,0x000000d1
  603. .long 0x00000000,0x00000000
  604. .long 0xd4a51000,0x000000e8
  605. .long 0xa94a2000,0x000001d1
  606. .long 0x7def3000,0x000002ba
  607. .long 0x52944000,0x000003a3
  608. .long 0x27395000,0x0000048c
  609. .long 0xfbde6000,0x00000574
  610. .long 0xd0837000,0x0000065d
  611. .long 0xa5288000,0x00000746
  612. .long 0x79cd9000,0x0000082f
  613. .long 0x00000000,0x00000000
  614. .long 0x4e72a000,0x00000918
  615. .long 0x9ce54000,0x00001230
  616. .long 0xeb57e000,0x00001b48
  617. .long 0x39ca8000,0x00002461
  618. .long 0x883d2000,0x00002d79
  619. .long 0xd6afc000,0x00003691
  620. .long 0x25226000,0x00003faa
  621. .long 0x73950000,0x000048c2
  622. .long 0xc207a000,0x000051da
  623. .long 0x00000000,0x00000000
  624. .long 0x107a4000,0x00005af3
  625. .long 0x20f48000,0x0000b5e6
  626. .long 0x316ec000,0x000110d9
  627. .long 0x41e90000,0x00016bcc
  628. .long 0x52634000,0x0001c6bf
  629. .long 0x62dd8000,0x000221b2
  630. .long 0x7357c000,0x00027ca5
  631. .long 0x83d20000,0x0002d798
  632. .long 0x944c4000,0x0003328b
  633. .long 0x00000000,0x00000000
  634. .long 0xa4c68000,0x00038d7e
  635. .long 0x498d0000,0x00071afd
  636. .long 0xee538000,0x000aa87b
  637. .long 0x931a0000,0x000e35fa
  638. .long 0x37e08000,0x0011c379
  639. .long 0xdca70000,0x001550f7
  640. .long 0x816d8000,0x0018de76
  641. .long 0x26340000,0x001c6bf5
  642. .long 0xcafa8000,0x001ff973
  643. .long 0x00000000,0x00000000
  644. .long 0x6fc10000,0x002386f2
  645. .long 0xdf820000,0x00470de4
  646. .long 0x4f430000,0x006a94d7
  647. .long 0xbf040000,0x008e1bc9
  648. .long 0x2ec50000,0x00b1a2bc
  649. .long 0x9e860000,0x00d529ae
  650. .long 0x0e470000,0x00f8b0a1
  651. .long 0x7e080000,0x011c3793
  652. .long 0xedc90000,0x013fbe85
  653. .long 0x00000000,0x00000000
  654. .long 0x5d8a0000,0x01634578
  655. .long 0xbb140000,0x02c68af0
  656. .long 0x189e0000,0x0429d069
  657. .long 0x76280000,0x058d15e1
  658. .long 0xd3b20000,0x06f05b59
  659. .long 0x313c0000,0x0853a0d2
  660. .long 0x8ec60000,0x09b6e64a
  661. .long 0xec500000,0x0b1a2bc2
  662. .long 0x49da0000,0x0c7d713b
  663. .long 0x00000000,0x00000000
  664. .long 0xa7640000,0x0de0b6b3
  665. .long 0x4ec80000,0x1bc16d67
  666. .long 0xf62c0000,0x29a2241a
  667. .long 0x9d900000,0x3782dace
  668. .long 0x44f40000,0x45639182
  669. .long 0xec580000,0x53444835
  670. .long 0x93bc0000,0x6124fee9
  671. .long 0x3b200000,0x6f05b59d
  672. .long 0xe2840000,0x7ce66c50
  673. .long 0x00000000,0x00000000
  674. .long 0x89e80000,0x8ac72304
  675. .long 0x13d00000,0x158e4609
  676. .long 0x9db80000,0xa055690d
  677. .long 0x27a00000,0x2b1c8c12
  678. .long 0xb1880000,0xb5e3af16
  679. .long 0x3b700000,0x40aad21b
  680. .long 0xc5580000,0xcb71f51f
  681. .long 0x4f400000,0x56391824
  682. .long 0xd9280000,0xe1003b28
  683. .long 0x00000000,0x00000000
  684. .long 0x63100000,0x6bc75e2d
  685. .long 0xc6200000,0xd78ebc5a
  686. .long 0x29300000,0x43561a88
  687. .long 0x8c400000,0xaf1d78b5
  688. .long 0xef500000,0x1ae4d6e2
  689. .long 0x52600000,0x86ac3510
  690. .long 0xb5700000,0xf273933d
  691. .long 0x18800000,0x5e3af16b
  692. .long 0x7b900000,0xca024f98
  693. .long 0x00000000,0x00000000
  694. .long 0xdea00000,0x35c9adc5
  695. .long 0xbd400000,0x6b935b8b
  696. .long 0x9be00000,0xa15d0951
  697. .long 0x7a800000,0xd726b717
  698. .long 0x59200000,0x0cf064dd
  699. .long 0x37c00000,0x42ba12a3
  700. .long 0x16600000,0x7883c069
  701. .long 0xf5000000,0xae4d6e2e
  702. .long 0xd3a00000,0xe4171bf4
  703. .long 0x00000000,0x00000000
  704. .long 0xb2400000,0x19e0c9ba
  705. .long 0x64800000,0x33c19375
  706. .long 0x16c00000,0x4da25d30
  707. .long 0xc9000000,0x678326ea
  708. .long 0x7b400000,0x8163f0a5
  709. .long 0x2d800000,0x9b44ba60
  710. .long 0xdfc00000,0xb525841a
  711. .long 0x92000000,0xcf064dd5
  712. .long 0x44400000,0xe8e71790
  713. .long 0x00000000,0x00000000
  714. .long 0xf6800000,0x02c7e14a
  715. .long 0xed000000,0x058fc295
  716. .long 0xe3800000,0x0857a3e0
  717. .long 0xda000000,0x0b1f852b
  718. .long 0xd0800000,0x0de76676
  719. .long 0xc7000000,0x10af47c1
  720. .long 0xbd800000,0x1377290c
  721. .long 0xb4000000,0x163f0a57
  722. .long 0xaa800000,0x1906eba2
  723. .long 0x00000000,0x00000000
  724. .long 0xa1000000,0x1bcecced
  725. .long 0x42000000,0x379d99db
  726. .long 0xe3000000,0x536c66c8
  727. .long 0x84000000,0x6f3b33b6
  728. .long 0x25000000,0x8b0a00a4
  729. .long 0xc6000000,0xa6d8cd91
  730. .long 0x67000000,0xc2a79a7f
  731. .long 0x08000000,0xde76676d
  732. .long 0xa9000000,0xfa45345a
  733. .long 0x00000000,0x00000000
  734. .long 0x4a000000,0x16140148
  735. .long 0x94000000,0x2c280290
  736. .long 0xde000000,0x423c03d8
  737. .long 0x28000000,0x58500521
  738. .long 0x72000000,0x6e640669
  739. .long 0xbc000000,0x847807b1
  740. .long 0x06000000,0x9a8c08fa
  741. .long 0x50000000,0xb0a00a42
  742. .long 0x9a000000,0xc6b40b8a
  743. .long 0x00000000,0x00000000
  744. .long 0xe4000000,0xdcc80cd2
  745. .long 0xc8000000,0xb99019a5
  746. .long 0xac000000,0x96582678
  747. .long 0x90000000,0x7320334b
  748. .long 0x74000000,0x4fe8401e
  749. .long 0x58000000,0x2cb04cf1
  750. .long 0x3c000000,0x097859c4
  751. .long 0x20000000,0xe6406697
  752. .long 0x04000000,0xc308736a
  753. .long 0x00000000,0x00000000
  754. .long 0xe8000000,0x9fd0803c
  755. .long 0xd0000000,0x3fa10079
  756. .long 0xb8000000,0xdf7180b6
  757. .long 0xa0000000,0x7f4200f3
  758. .long 0x88000000,0x1f128130
  759. .long 0x70000000,0xbee3016d
  760. .long 0x58000000,0x5eb381aa
  761. .long 0x40000000,0xfe8401e7
  762. .long 0x28000000,0x9e548224
  763. .long 0x00000000,0x00000000
  764. .long 0x10000000,0x3e250261
  765. .long 0x20000000,0x7c4a04c2
  766. .long 0x30000000,0xba6f0723
  767. .long 0x40000000,0xf8940984
  768. .long 0x50000000,0x36b90be5
  769. .long 0x60000000,0x74de0e46
  770. .long 0x70000000,0xb30310a7
  771. .long 0x80000000,0xf1281308
  772. .long 0x90000000,0x2f4d1569
  773. .long 0x00000000,0x00000000
  774. .long 0xa0000000,0x6d7217ca
  775. .long 0x40000000,0xdae42f95
  776. .long 0xe0000000,0x4856475f
  777. .long 0x80000000,0xb5c85f2a
  778. .long 0x20000000,0x233a76f5
  779. .long 0xc0000000,0x90ac8ebf
  780. .long 0x60000000,0xfe1ea68a
  781. .long 0x00000000,0x6b90be55
  782. .long 0xa0000000,0xd902d61f
  783. .long 0x00000000,0x00000000
  784. .long 0x40000000,0x4674edea
  785. .long 0x80000000,0x8ce9dbd4
  786. .long 0xc0000000,0xd35ec9be
  787. .long 0x00000000,0x19d3b7a9
  788. .long 0x40000000,0x6048a593
  789. .long 0x80000000,0xa6bd937d
  790. .long 0xc0000000,0xed328167
  791. .long 0x00000000,0x33a76f52
  792. .long 0x40000000,0x7a1c5d3c
  793. .long 0x00000000,0x00000000
  794. .long 0x80000000,0xc0914b26
  795. .long 0x00000000,0x8122964d
  796. .long 0x80000000,0x41b3e173
  797. .long 0x00000000,0x02452c9a
  798. .long 0x80000000,0xc2d677c0
  799. .long 0x00000000,0x8367c2e7
  800. .long 0x80000000,0x43f90e0d
  801. .long 0x00000000,0x048a5934
  802. .long 0x80000000,0xc51ba45a
  803. .long 0x00000000,0x00000000
  804. .long 0x00000000,0x85acef81
  805. .long 0x00000000,0x0b59df02
  806. .long 0x00000000,0x9106ce83
  807. .long 0x00000000,0x16b3be04
  808. .long 0x00000000,0x9c60ad85
  809. .long 0x00000000,0x220d9d06
  810. .long 0x00000000,0xa7ba8c87
  811. .long 0x00000000,0x2d677c08
  812. .long 0x00000000,0xb3146b89
  813. .long 0x00000000,0x00000000
  814. .long 0x00000000,0x38c15b0a
  815. .long 0x00000000,0x7182b614
  816. .long 0x00000000,0xaa44111e
  817. .long 0x00000000,0xe3056c28
  818. .long 0x00000000,0x1bc6c732
  819. .long 0x00000000,0x5488223c
  820. .long 0x00000000,0x8d497d46
  821. .long 0x00000000,0xc60ad850
  822. .long 0x00000000,0xfecc335a
  823. .long 0x00000000,0x00000000
  824. .long 0x00000000,0x378d8e64
  825. .long 0x00000000,0x6f1b1cc8
  826. .long 0x00000000,0xa6a8ab2c
  827. .long 0x00000000,0xde363990
  828. .long 0x00000000,0x15c3c7f4
  829. .long 0x00000000,0x4d515658
  830. .long 0x00000000,0x84dee4bc
  831. .long 0x00000000,0xbc6c7320
  832. .long 0x00000000,0xf3fa0184
  833. .long 0x00000000,0x00000000
  834. .long 0x00000000,0x2b878fe8
  835. .long 0x00000000,0x570f1fd0
  836. .long 0x00000000,0x8296afb8
  837. .long 0x00000000,0xae1e3fa0
  838. .long 0x00000000,0xd9a5cf88
  839. .long 0x00000000,0x052d5f70
  840. .long 0x00000000,0x30b4ef58
  841. .long 0x00000000,0x5c3c7f40
  842. .long 0x00000000,0x87c40f28
  843. .long 0x00000000,0x00000000
  844. .long 0x00000000,0xb34b9f10
  845. .long 0x00000000,0x66973e20
  846. .long 0x00000000,0x19e2dd30
  847. .long 0x00000000,0xcd2e7c40
  848. .long 0x00000000,0x807a1b50
  849. .long 0x00000000,0x33c5ba60
  850. .long 0x00000000,0xe7115970
  851. .long 0x00000000,0x9a5cf880
  852. .long 0x00000000,0x4da89790
  853. .long 0x00000000,0x00000000
  854. .long 0x00000000,0x00f436a0
  855. .long 0x00000000,0x01e86d40
  856. .long 0x00000000,0x02dca3e0
  857. .long 0x00000000,0x03d0da80
  858. .long 0x00000000,0x04c51120
  859. .long 0x00000000,0x05b947c0
  860. .long 0x00000000,0x06ad7e60
  861. .long 0x00000000,0x07a1b500
  862. .long 0x00000000,0x0895eba0
  863. .long 0x00000000,0x00000000
  864. .long 0x00000000,0x098a2240
  865. .long 0x00000000,0x13144480
  866. .long 0x00000000,0x1c9e66c0
  867. .long 0x00000000,0x26288900
  868. .long 0x00000000,0x2fb2ab40
  869. .long 0x00000000,0x393ccd80
  870. .long 0x00000000,0x42c6efc0
  871. .long 0x00000000,0x4c511200
  872. .long 0x00000000,0x55db3440
  873. .long 0x00000000,0x00000000
  874. .long 0x00000000,0x5f655680
  875. .long 0x00000000,0xbecaad00
  876. .long 0x00000000,0x1e300380
  877. .long 0x00000000,0x7d955a00
  878. .long 0x00000000,0xdcfab080
  879. .long 0x00000000,0x3c600700
  880. .long 0x00000000,0x9bc55d80
  881. .long 0x00000000,0xfb2ab400
  882. .long 0x00000000,0x5a900a80
  883. .long 0x00000000,0x00000000
  884. .long 0x00000000,0xb9f56100
  885. .long 0x00000000,0x73eac200
  886. .long 0x00000000,0x2de02300
  887. .long 0x00000000,0xe7d58400
  888. .long 0x00000000,0xa1cae500
  889. .long 0x00000000,0x5bc04600
  890. .long 0x00000000,0x15b5a700
  891. .long 0x00000000,0xcfab0800
  892. .long 0x00000000,0x89a06900
  893. .long 0x00000000,0x00000000
  894. .long 0x00000000,0x4395ca00
  895. .long 0x00000000,0x872b9400
  896. .long 0x00000000,0xcac15e00
  897. .long 0x00000000,0x0e572800
  898. .long 0x00000000,0x51ecf200
  899. .long 0x00000000,0x9582bc00
  900. .long 0x00000000,0xd9188600
  901. .long 0x00000000,0x1cae5000
  902. .long 0x00000000,0x60441a00
  903. .long 0x00000000,0x00000000
  904. .long 0x00000000,0xa3d9e400
  905. .long 0x00000000,0x47b3c800
  906. .long 0x00000000,0xeb8dac00
  907. .long 0x00000000,0x8f679000
  908. .long 0x00000000,0x33417400
  909. .long 0x00000000,0xd71b5800
  910. .long 0x00000000,0x7af53c00
  911. .long 0x00000000,0x1ecf2000
  912. .long 0x00000000,0xc2a90400
  913. .long 0x00000000,0x00000000
  914. .long 0x00000000,0x6682e800
  915. .long 0x00000000,0xcd05d000
  916. .long 0x00000000,0x3388b800
  917. .long 0x00000000,0x9a0ba000
  918. .long 0x00000000,0x008e8800
  919. .long 0x00000000,0x67117000
  920. .long 0x00000000,0xcd945800
  921. .long 0x00000000,0x34174000
  922. .long 0x00000000,0x9a9a2800
  923. .long 0x00000000,0x00000000
  924. .long 0x00000000,0x011d1000
  925. .long 0x00000000,0x023a2000
  926. .long 0x00000000,0x03573000
  927. .long 0x00000000,0x04744000
  928. .long 0x00000000,0x05915000
  929. .long 0x00000000,0x06ae6000
  930. .long 0x00000000,0x07cb7000
  931. .long 0x00000000,0x08e88000
  932. .long 0x00000000,0x0a059000
  933. .long 0x00000000,0x00000000
  934. .long 0x00000000,0x0b22a000
  935. .long 0x00000000,0x16454000
  936. .long 0x00000000,0x2167e000
  937. .long 0x00000000,0x2c8a8000
  938. .long 0x00000000,0x37ad2000
  939. .long 0x00000000,0x42cfc000
  940. .long 0x00000000,0x4df26000
  941. .long 0x00000000,0x59150000
  942. .long 0x00000000,0x6437a000
  943. .long 0x00000000,0x00000000
  944. .long 0x00000000,0x6f5a4000
  945. .long 0x00000000,0xdeb48000
  946. .long 0x00000000,0x4e0ec000
  947. .long 0x00000000,0xbd690000
  948. .long 0x00000000,0x2cc34000
  949. .long 0x00000000,0x9c1d8000
  950. .long 0x00000000,0x0b77c000
  951. .long 0x00000000,0x7ad20000
  952. .long 0x00000000,0xea2c4000
  953. .long 0x00000000,0x00000000
  954. .long 0x00000000,0x59868000
  955. .long 0x00000000,0xb30d0000
  956. .long 0x00000000,0x0c938000
  957. .long 0x00000000,0x661a0000
  958. .long 0x00000000,0xbfa08000
  959. .long 0x00000000,0x19270000
  960. .long 0x00000000,0x72ad8000
  961. .long 0x00000000,0xcc340000
  962. .long 0x00000000,0x25ba8000
  963. .long 0x00000000,0x00000000
  964. .long 0x00000000,0x7f410000
  965. .long 0x00000000,0xfe820000
  966. .long 0x00000000,0x7dc30000
  967. .long 0x00000000,0xfd040000
  968. .long 0x00000000,0x7c450000
  969. .long 0x00000000,0xfb860000
  970. .long 0x00000000,0x7ac70000
  971. .long 0x00000000,0xfa080000
  972. .long 0x00000000,0x79490000
  973. .long 0x00000000,0x00000000
  974. .long 0x00000000,0xf88a0000
  975. .long 0x00000000,0xf1140000
  976. .long 0x00000000,0xe99e0000
  977. .long 0x00000000,0xe2280000
  978. .long 0x00000000,0xdab20000
  979. .long 0x00000000,0xd33c0000
  980. .long 0x00000000,0xcbc60000
  981. .long 0x00000000,0xc4500000
  982. .long 0x00000000,0xbcda0000
  983. .long 0x00000000,0x00000000
  984. .long 0x00000000,0xb5640000
  985. .long 0x00000000,0x6ac80000
  986. .long 0x00000000,0x202c0000
  987. .long 0x00000000,0xd5900000
  988. .long 0x00000000,0x8af40000
  989. .long 0x00000000,0x40580000
  990. .long 0x00000000,0xf5bc0000
  991. .long 0x00000000,0xab200000
  992. .long 0x00000000,0x60840000
  993. .long 0x00000000,0x00000000
  994. .long 0x00000000,0x15e80000
  995. .long 0x00000000,0x2bd00000
  996. .long 0x00000000,0x41b80000
  997. .long 0x00000000,0x57a00000
  998. .long 0x00000000,0x6d880000
  999. .long 0x00000000,0x83700000
  1000. .long 0x00000000,0x99580000
  1001. .long 0x00000000,0xaf400000
  1002. .long 0x00000000,0xc5280000
  1003. .long 0x00000000,0x00000000
  1004. .long 0x00000000,0xdb100000
  1005. .long 0x00000000,0xb6200000
  1006. .long 0x00000000,0x91300000
  1007. .long 0x00000000,0x6c400000
  1008. .long 0x00000000,0x47500000
  1009. .long 0x00000000,0x22600000
  1010. .long 0x00000000,0xfd700000
  1011. .long 0x00000000,0xd8800000
  1012. .long 0x00000000,0xb3900000
  1013. .long 0x00000000,0x00000000
  1014. .long 0x00000000,0x8ea00000
  1015. .long 0x00000000,0x1d400000
  1016. .long 0x00000000,0xabe00000
  1017. .long 0x00000000,0x3a800000
  1018. .long 0x00000000,0xc9200000
  1019. .long 0x00000000,0x57c00000
  1020. .long 0x00000000,0xe6600000
  1021. .long 0x00000000,0x75000000
  1022. .long 0x00000000,0x03a00000
  1023. .long 0x00000000,0x00000000
  1024. .long 0x00000000,0x92400000
  1025. .long 0x00000000,0x24800000
  1026. .long 0x00000000,0xb6c00000
  1027. .long 0x00000000,0x49000000
  1028. .long 0x00000000,0xdb400000
  1029. .long 0x00000000,0x6d800000
  1030. .long 0x00000000,0xffc00000
  1031. .long 0x00000000,0x92000000
  1032. .long 0x00000000,0x24400000
  1033. .long 0x00000000,0x00000000
  1034. .long 0x00000000,0xb6800000
  1035. .long 0x00000000,0x6d000000
  1036. .long 0x00000000,0x23800000
  1037. .long 0x00000000,0xda000000
  1038. .long 0x00000000,0x90800000
  1039. .long 0x00000000,0x47000000
  1040. .long 0x00000000,0xfd800000
  1041. .long 0x00000000,0xb4000000
  1042. .long 0x00000000,0x6a800000
  1043. .long 0x00000000,0x00000000
  1044. .long 0x00000000,0x21000000
  1045. .long 0x00000000,0x42000000
  1046. .long 0x00000000,0x63000000
  1047. .long 0x00000000,0x84000000
  1048. .long 0x00000000,0xa5000000
  1049. .long 0x00000000,0xc6000000
  1050. .long 0x00000000,0xe7000000
  1051. .long 0x00000000,0x08000000
  1052. .long 0x00000000,0x29000000
  1053. .long 0x00000000,0x00000000
  1054. .long 0x00000000,0x4a000000
  1055. .long 0x00000000,0x94000000
  1056. .long 0x00000000,0xde000000
  1057. .long 0x00000000,0x28000000
  1058. .long 0x00000000,0x72000000
  1059. .long 0x00000000,0xbc000000
  1060. .long 0x00000000,0x06000000
  1061. .long 0x00000000,0x50000000
  1062. .long 0x00000000,0x9a000000
  1063. .long 0x00000000,0x00000000
  1064. .long 0x00000000,0xe4000000
  1065. .long 0x00000000,0xc8000000
  1066. .long 0x00000000,0xac000000
  1067. .long 0x00000000,0x90000000
  1068. .long 0x00000000,0x74000000
  1069. .long 0x00000000,0x58000000
  1070. .long 0x00000000,0x3c000000
  1071. .long 0x00000000,0x20000000
  1072. .long 0x00000000,0x04000000
  1073. .long 0x00000000,0x00000000
  1074. .long 0x00000000,0xe8000000
  1075. .long 0x00000000,0xd0000000
  1076. .long 0x00000000,0xb8000000
  1077. .long 0x00000000,0xa0000000
  1078. .long 0x00000000,0x88000000
  1079. .long 0x00000000,0x70000000
  1080. .long 0x00000000,0x58000000
  1081. .long 0x00000000,0x40000000
  1082. .long 0x00000000,0x28000000
  1083. .long 0x00000000,0x00000000
  1084. .long 0x00000000,0x10000000
  1085. .long 0x00000000,0x20000000
  1086. .long 0x00000000,0x30000000
  1087. .long 0x00000000,0x40000000
  1088. .long 0x00000000,0x50000000
  1089. .long 0x00000000,0x60000000
  1090. .long 0x00000000,0x70000000
  1091. .long 0x00000000,0x80000000
  1092. .long 0x00000000,0x90000000
  1093. .long 0x00000000,0x00000000
  1094. .long 0x00000000,0xa0000000
  1095. .long 0x00000000,0x40000000
  1096. .long 0x00000000,0xe0000000
  1097. .long 0x00000000,0x80000000
  1098. .long 0x00000000,0x20000000
  1099. .long 0x00000000,0xc0000000
  1100. .long 0x00000000,0x60000000
  1101. .long 0x00000000,0x00000000
  1102. .long 0x00000000,0xa0000000
  1103. .long 0x00000000,0x00000000
  1104. .long 0x00000000,0x40000000
  1105. .long 0x00000000,0x80000000
  1106. .long 0x00000000,0xc0000000
  1107. .long 0x00000000,0x00000000
  1108. .long 0x00000000,0x40000000
  1109. .long 0x00000000,0x80000000
  1110. .long 0x00000000,0xc0000000
  1111. .long 0x00000000,0x00000000
  1112. .long 0x00000000,0x40000000
  1113. .long 0x00000000,0x00000000
  1114. .long 0x00000000,0x80000000
  1115. .long 0x00000000,0x00000000
  1116. .long 0x00000000,0x80000000
  1117. .long 0x00000000,0x00000000
  1118. .long 0x00000000,0x80000000
  1119. .long 0x00000000,0x00000000
  1120. .long 0x00000000,0x80000000
  1121. .long 0x00000000,0x00000000
  1122. .long 0x00000000,0x80000000
  1123. .type _C_MUL_10_POW_I,@object
  1124. .size _C_MUL_10_POW_I,5120
  1125. .data
  1126. .section .note.GNU-stack, ""
  1127. # End