Changeset 588 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/StringsCompressed.asm
- Timestamp:
- Jun 3, 2015, 12:30:54 PM (10 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/StringsCompressed.asm
r568 r588 253 253 254 254 g_szDeviceTypeValues: 255 g_szDeviceTypeValues_16bit: ; db " 16",NULL 256 ; db 20h, 31h, 36h, 00h ; uncompressed 257 db 20h, 2bh, 0fh ; compressed 258 259 g_szDeviceTypeValues_32bit: ; db " 32",NULL 260 ; db 20h, 33h, 32h, 00h ; uncompressed 261 db 20h, 2dh, 0ch ; compressed 262 263 g_szDeviceTypeValues_8bit: ; db " 8",NULL 264 ; db 20h, 20h, 38h, 00h ; uncompressed 265 db 20h, 20h, 10h ; compressed 266 267 g_szDeviceTypeValues_XTIDEr1: ; db "D8 ",NULL ; Dual 8-bit 268 ; db 44h, 38h, 20h, 00h ; uncompressed 269 db 4ah, 30h, 00h ; compressed 270 271 g_szDeviceTypeValues_XTIDEr2: ; db "X8 ",NULL ; A0<->A3 swapped 8-bit 272 ; db 58h, 38h, 20h, 00h ; uncompressed 273 db 5eh, 30h, 00h ; compressed 274 275 g_szDeviceTypeValues_XTCFpio8: ; db "T8 ",NULL ; True 8-bit 276 ; db 54h, 38h, 20h, 00h ; uncompressed 277 db 5ah, 30h, 00h ; compressed 278 279 g_szDeviceTypeValues_XTCFdma: ; db "8MA",NULL ; DMA 8-bit 280 ; db 38h, 4dh, 41h, 00h ; uncompressed 281 db 30h, 53h, 87h ; compressed 282 283 g_szDeviceTypeValues_XTCFmem: ; db "M8 ",NULL ; Memory Mapped 8-bit 284 ; db 4dh, 38h, 20h, 00h ; uncompressed 285 db 53h, 30h, 00h ; compressed 286 287 g_szDeviceTypeValues_JrIde: ; db "M8 ",NULL 288 ; db 4dh, 38h, 20h, 00h ; uncompressed 289 db 53h, 30h, 00h ; compressed 290 291 g_szDeviceTypeValues_ADP50L: ; db "M8 ",NULL 292 ; db 4dh, 38h, 20h, 00h ; uncompressed 293 db 53h, 30h, 00h ; compressed 294 295 g_szDeviceTypeValues_Serial: ; db "SER",NULL 296 ; db 53h, 45h, 52h, 00h ; uncompressed 297 db 59h, 4bh, 98h ; compressed 255 g_szDeviceTypeValues_16bit: ; db " 16",NULL 256 ; db 20h, 31h, 36h, 00h ; uncompressed 257 db 20h, 2bh, 0fh ; compressed 258 259 g_szDeviceTypeValues_32bit: ; db " 32",NULL 260 ; db 20h, 33h, 32h, 00h ; uncompressed 261 db 20h, 2dh, 0ch ; compressed 262 263 g_szDeviceTypeValues_8bit: ; db " 8",NULL 264 ; db 20h, 20h, 38h, 00h ; uncompressed 265 db 20h, 20h, 10h ; compressed 266 267 g_szDeviceTypeValues_XTIDEr1: ; db "D8 ",NULL ; Dual 8-bit 268 ; db 44h, 38h, 20h, 00h ; uncompressed 269 db 4ah, 30h, 00h ; compressed 270 271 g_szDeviceTypeValues_XTIDEr2: ; db "X8 ",NULL ; A0<->A3 swapped 8-bit 272 ; db 58h, 38h, 20h, 00h ; uncompressed 273 db 5eh, 30h, 00h ; compressed 274 275 g_szDeviceTypeValues_XTCFpio8: ; db "T8 ",NULL ; True 8-bit 276 ; db 54h, 38h, 20h, 00h ; uncompressed 277 db 5ah, 30h, 00h ; compressed 278 279 g_szDeviceTypeValues_XTCFpio8BIU: ; db "T8B",NULL 280 ; db 54h, 38h, 42h, 00h ; uncompressed 281 db 5ah, 30h, 88h ; compressed 282 283 g_szDeviceTypeValues_XTCFpio16BIU: ; db "16B",NULL 284 ; db 31h, 36h, 42h, 00h ; uncompressed 285 db 2bh, 2fh, 88h ; compressed 286 287 g_szDeviceTypeValues_XTCFdma: ; db "8MA",NULL ; DMA 8-bit 288 ; db 38h, 4dh, 41h, 00h ; uncompressed 289 db 30h, 53h, 87h ; compressed 290 291 g_szDeviceTypeValues_JrIde: ; db "M8 ",NULL ; Memory Mapped 8-bit 292 ; db 4dh, 38h, 20h, 00h ; uncompressed 293 db 53h, 30h, 00h ; compressed 294 295 g_szDeviceTypeValues_ADP50L: ; db "M8 ",NULL ; Memory Mapped 8-bit 296 ; db 4dh, 38h, 20h, 00h ; uncompressed 297 db 53h, 30h, 00h ; compressed 298 299 g_szDeviceTypeValues_Serial: ; db "SER",NULL 300 ; db 53h, 45h, 52h, 00h ; uncompressed 301 db 59h, 4bh, 98h ; compressed 298 302 299 303 … … 310 314 %endif 311 315 %if g_szDeviceTypeValues_8bit <> g_szDeviceTypeValues_32bit + g_szDeviceTypeValues_Displacement 312 %error "g_szDeviceTypeValues Displacement Incorrect 2"316 %error "g_szDeviceTypeValues Displacement Incorrect 3" 313 317 %endif 314 318 %if g_szDeviceTypeValues_XTIDEr1 <> g_szDeviceTypeValues_8bit + g_szDeviceTypeValues_Displacement 315 %error "g_szDeviceTypeValues Displacement Incorrect 3"319 %error "g_szDeviceTypeValues Displacement Incorrect 4" 316 320 %endif 317 321 %if g_szDeviceTypeValues_XTIDEr2 <> g_szDeviceTypeValues_XTIDEr1 + g_szDeviceTypeValues_Displacement 318 %error "g_szDeviceTypeValues Displacement Incorrect 4"322 %error "g_szDeviceTypeValues Displacement Incorrect 5" 319 323 %endif 320 324 %if g_szDeviceTypeValues_XTCFpio8 <> g_szDeviceTypeValues_XTIDEr2 + g_szDeviceTypeValues_Displacement 321 %error "g_szDeviceTypeValues Displacement Incorrect 5"322 %endif323 %if g_szDeviceTypeValues_XTCFdma <> g_szDeviceTypeValues_XTCFpio8 + g_szDeviceTypeValues_Displacement324 325 %error "g_szDeviceTypeValues Displacement Incorrect 6" 325 326 %endif 326 %if g_szDeviceTypeValues_XTCF mem <> g_szDeviceTypeValues_XTCFdma+ g_szDeviceTypeValues_Displacement327 %if g_szDeviceTypeValues_XTCFpio8BIU <> g_szDeviceTypeValues_XTCFpio8 + g_szDeviceTypeValues_Displacement 327 328 %error "g_szDeviceTypeValues Displacement Incorrect 7" 328 329 %endif 329 %if g_szDeviceTypeValues_ JrIde <> g_szDeviceTypeValues_XTCFmem+ g_szDeviceTypeValues_Displacement330 %if g_szDeviceTypeValues_XTCFpio16BIU <> g_szDeviceTypeValues_XTCFpio8BIU + g_szDeviceTypeValues_Displacement 330 331 %error "g_szDeviceTypeValues Displacement Incorrect 8" 331 332 %endif 333 %if g_szDeviceTypeValues_XTCFdma <> g_szDeviceTypeValues_XTCFpio16BIU + g_szDeviceTypeValues_Displacement 334 %error "g_szDeviceTypeValues Displacement Incorrect 9" 335 %endif 336 %if g_szDeviceTypeValues_JrIde <> g_szDeviceTypeValues_XTCFdma + g_szDeviceTypeValues_Displacement 337 %error "g_szDeviceTypeValues Displacement Incorrect 10" 338 %endif 332 339 %if g_szDeviceTypeValues_ADP50L <> g_szDeviceTypeValues_JrIde + g_szDeviceTypeValues_Displacement 333 %error "g_szDeviceTypeValues Displacement Incorrect 9"340 %error "g_szDeviceTypeValues Displacement Incorrect 11" 334 341 %endif 335 342 %if g_szDeviceTypeValues_Serial <> g_szDeviceTypeValues_ADP50L + g_szDeviceTypeValues_Displacement 336 %error "g_szDeviceTypeValues Displacement Incorrect 1 0"343 %error "g_szDeviceTypeValues Displacement Incorrect 12" 337 344 %endif 338 345 %endif … … 560 567 561 568 ;; translated usage stats 562 ;; 54:1569 ;; 172:2 563 570 ;; 47:2 564 ;; 17 5:1565 ;; 4 9:1566 ;; 4 4:1567 ;; 50:2571 ;; 171:2 572 ;; 46:3 573 ;; 48:2 574 ;; 181:1 568 575 ;; 200:1 569 ;; 181:1 570 ;; 172:2 576 ;; 54:2 571 577 ;; 45:2 578 ;; 49:2 579 ;; 34:3 580 ;; 179:8 572 581 ;; 56:8 573 582 ;; 33:1 574 583 ;; 53:2 575 ;; 179:8 576 ;; 171:2 584 ;; 32:34 585 ;; 175:1 586 ;; 44:1 587 ;; 50:2 577 588 ;; 51:3 578 ;; 34:3579 ;; 48:2580 ;; 46:3581 ;; 32:35582 589 ;; total translated: 20 583 590 584 591 ;; format usage stats 592 ;; z:2 585 593 ;; nl:12 594 ;; u:6 595 ;; 5-x:1 596 ;; c:13 597 ;; A:4 598 ;; s:14 599 ;; 5-u:2 586 600 ;; x:5 587 ;; A:4588 ;; 5-x:1589 601 ;; 2-u:1 590 ;; z:2591 ;; 5-u:2592 ;; s:14593 602 ;; 2-I:1 594 ;; u:6595 ;; c:13596 603 ;; total format: 11 597 604 … … 605 612 ;; 64,@:1 606 613 ;; 65,A:5 607 ;; 66,B: 9614 ;; 66,B:11 608 615 ;; 67,C:3 609 616 ;; 68,D:11 … … 616 623 ;; 75,K:1 617 624 ;; 76,L:4 618 ;; 77,M: 8625 ;; 77,M:7 619 626 ;; 78,N:2 620 627 ;; 79,O:2 … … 623 630 ;; 82,R:7 624 631 ;; 83,S:3 625 ;; 84,T: 1632 ;; 84,T:2 626 633 ;; 85,U:2 627 634 ;; 86,V:
Note:
See TracChangeset
for help on using the changeset viewer.