EuroAssembler Index Manual Download Source Macros


Sitemap Links Forum Tests Projects

Test t9179: LIBCOF library for 64bit Windows links ELF object modules


Source & expected listing t9179.htm.lst
| | EUROASM AUTOSEGMENT=ON,CPU=X64,DUMPWIDTH=28 |7439313739 |%test %SET t9179 | |;; | |;; Create the first auxilliary ELF module. | |%test.WB PROGRAM FORMAT=ELF,MODEL=FLAT,WIDTH=64 |[.text] ::::Section changed. |00000000: |Write.W64:: PROC ; Write ASCIIZ string DS:RSI in 64bit Windows. | | IMPORT GetStdHandle:,WriteFile: ; Declare imported Windows kernel functions. |00000000:4889E5 | MOV RBP,RSP ; Save (perhaps unaligned) stack pointer. |00000003:4883E4F0 | AND RSP,-16 ; OWORD alignment downwards. |00000007:4883EC30 | SUB RSP,5*8+8 ; Allocate shadow space on stack for max 5 arguments. |0000000B:48C7C1F5FFFFFF | MOV RCX,-11 ; %1 Identifier of standard output STD_OUTPUT_HANDLE. |00000012:E8(00000000) | CALL GetStdHandle: ; Fastcall the imported Windows function with 1 argument. |00000017:4889C3 | MOV RBX,RAX ; Temporary save the returned StdOutput handle to RBX. |0000001A:4889F7 | MOV RDI,RSI ; Use RDI to find the end of input string. |0000001D:31C9 | XOR ECX,ECX ; Clear RCX to keep the size of input string. |0000001F:31C0 | XOR EAX,EAX ; Clear AL, the searched terminating character. |00000021:48F7D1 | NOT RCX ; Assume unlimited possible string size. |00000024:F2AE | REPNE SCASB ; Find the zero terminator. |00000026:48F7D1 | NOT RCX ; Get string size to RCX. |00000029:4889442420 | MOV [RSP+20h],RAX ; %5 Overlapped I/O is not used. |0000002E:4C8D4C2418 | LEA R9,[RSP+18h] ; %4 Local variable for the number of written bytes uses shadowed R9. |00000033:4989C8 | MOV R8,RCX ; %3 String size. |00000036:4889F2 | MOV RDX,RSI ; %2 String address. |00000039:4889D9 | MOV RCX,RBX ; %1 Standard output file handle. |0000003C:E8(00000000) | CALL WriteFile: ; Fastcall the imported function with 5 arguments. |00000041:4889EC | MOV RSP,RBP ; Restore the stack. |00000044:C3 | RET ; Return to caller. |00000045: | ENDPROC Write.W64: | |;; |00000045: |Beep.W64:: PROC ; Play a sound in 64bit Windows. |00000045:488D35(00000000) | LEA RSI,[=B"Beeping..."] ; Define a literal string in [.rodata]. |0000004C:E8AFFFFFFF | CALL Write.W64:: ; Display the notification "Beeping...". | | IMPORT Beep: ; Declare imported Windows kernel function. |00000051:4889E5 | MOV RBP,RSP ; Save (perhaps unaligned) stack pointer. |00000054:4883E4F0 | AND RSP,-16 ; OWORD alignment downwards. |00000058:4883EC20 | SUB RSP,4*8 ; Allocate shadow space on stack. |0000005C:BAC8000000 | MOV RDX,200 ; %2 Sound duration [ms]. |00000061:B9B8010000 | MOV RCX,440 ; %1 Sound frequency [Hz]. |00000066:E8(00000000) | CALL Beep: ; Fastcall the imported function with 2 arguments. |0000006B:BA90010000 | MOV RDX,400 ; %2 Sound duration [ms]. |00000070:B94B020000 | MOV RCX,587 ; %1 Sound frequency [Hz]. |00000075:E8(00000000) | CALL Beep: ; Fastcall the imported function with 2 arguments. |0000007A:4889EC | MOV RSP,RBP ; Restore the stack. |0000007D:C3 | RET ; Return to caller. |0000007E: | ENDPROC Beep.W64: |[@LT1] ====ListLiterals in section [@LT1]. |00000000:42656570696E672E~=B"Beeping..." | |ENDPROGRAM %test.WB | **** ListMap "t9179.WB.o",model=FLAT,groups=0,segments=8,entry=,stack= | [],FA=00000000h,RVA=00000000h,size=00000000h=0,width=0,align=0,purpose= | [.symtab],FA=00000240h,RVA=00000000h,size=00000150h=336,width=0,align=8,purpose=SYMBOLS | [.rela.text],FA=00000390h,RVA=00000000h,size=00000078h=120,width=0,align=8,purpose=RELOC | [.drectve],FA=00000408h,RVA=00000000h,size=00000054h=84,width=0,align=4,purpose=DRECTVE | [.strtab],FA=0000045Ch,RVA=00000000h,size=00000075h=117,width=0,align=1,purpose=STRINGS | [.shstrtab],FA=000004D1h,RVA=00000000h,size=0000003Dh=61,width=0,align=1,purpose=STRINGS | [.text],FA=00000510h,RVA=00000000h,size=0000007Eh=126,width=64,align=0010h,purpose=CODE | [.rodata],FA=00000590h,RVA=00000000h,size=0000000Bh=11,width=64,align=0010h,purpose=RODATA+LITERAL | **** ListGlobals "t9179.WB.o",Global=0,Public=2,Extern=0,eXport=0,Import=3 | Beep,[Beep]:00000000h,scope='I',lib="kernel32.dll" | Beep.W64,[.text]:00000045h,scope='P' | GetStdHandle,[GetStdHandle]:00000000h,scope='I',lib="kernel32.dll" | Write.W64,[.text]:00000000h,scope='P' | WriteFile,[WriteFile]:00000000h,scope='I',lib="kernel32.dll" | |;; | |;; Create the second auxilliary ELF module. | |%test.EX PROGRAM FORMAT=ELF,MODEL=FLAT,WIDTH=64 |[.text] ::::Section changed. |00000000: |Exit.W64:: PROC ; Terminate program in 64bit Windows. |00000000:488D35(00000000) | LEA RSI,[.M:] ; Address in segment [.bss] for the message. |00000007:C706456E6400 | MOVD [RSI+0],"End" ; Dynamically define the message "End". |0000000D:C746030D0A0000 | MOVD [RSI+3],0x0A0D ; CR+LF. |00000014:E8(00000000) | CALL Write.W64:: ; Display the notification "End". | | IMPORT ExitProcess ; Declare imported Windows kernel function. |00000019:4883E4F0 | AND RSP,-16 ; OWORD alignment downwards. |0000001D:4883EC20 | SUB RSP,4*8 ; Allocate shadow space on stack. |00000021:31C9 | XOR ECX,ECX ; %1 Terminate with errorlevel 0. |00000023:E9(00000000) | JMP ExitProcess: ; Use imported function with 1 argument. No return. |[.bss] ::::Section changed. |00000000:.............. |.M: DB 7*BYTE ; Reserve space for ASCIIZ string "End" in segment [.bss]. |[.text] ::::Section changed. |00000028: | ENDPROC Exit.W64: | |ENDPROGRAM %test.EX | **** ListMap "t9179.EX.o",model=FLAT,groups=0,segments=8,entry=,stack= | [],FA=00000000h,RVA=00000000h,size=00000000h=0,width=0,align=0,purpose= | [.symtab],FA=00000240h,RVA=00000000h,size=00000108h=264,width=0,align=8,purpose=SYMBOLS | [.rela.text],FA=00000348h,RVA=00000000h,size=00000048h=72,width=0,align=8,purpose=RELOC | [.drectve],FA=00000390h,RVA=00000000h,size=00000034h=52,width=0,align=4,purpose=DRECTVE | [.strtab],FA=000003C4h,RVA=00000000h,size=00000059h=89,width=0,align=1,purpose=STRINGS | [.shstrtab],FA=0000041Dh,RVA=00000000h,size=0000003Ah=58,width=0,align=1,purpose=STRINGS | [.text],FA=00000460h,RVA=00000000h,size=00000028h=40,width=64,align=0010h,purpose=CODE | [.bss],FA=00000490h,RVA=00000000h,size=00000007h=7,width=64,align=0010h,purpose=BSS | **** ListGlobals "t9179.EX.o",Global=0,Public=1,Extern=1,eXport=0,Import=1 | Exit.W64,[.text]:00000000h,scope='P' | ExitProcess,[ExitProcess]:00000000h,scope='I',lib="kernel32.dll" | Write.W64,[Write.W64]:00000000h,scope='E' | |;; | |;; Create the main LIBCOF library. | |%test PROGRAM FORMAT=LIBCOF,MODEL=FLAT,WIDTH=64 | | LINK %test.WB.o, %test.EX.o | |ENDPROGRAM %test |# I0560 Linking ELF module ".\t9179.WB.o". |# I0563 Accepting link directive '/IMPORT:GetStdHandle'. |# I0563 Accepting link directive '/IMPORT:WriteFile'. |# I0563 Accepting link directive '/IMPORT:Beep'. |# I0560 Linking ELF module ".\t9179.EX.o". |# I0563 Accepting link directive '/IMPORT:ExitProcess'. | **** ListMap "t9179.lib",model=FLAT,groups=0,segments=0,entry=,stack= | **** ListGlobals "t9179.lib",Global=0,Public=0,Extern=0,eXport=0,Import=0
Expected messages t9179.out
I0180 Assembling source file "t9179.htm". I0270 Assembling source "t9179". I0310 Assembling source pass 1. I0330 Assembling source pass 2 - final. I0470 Assembling program "t9179.WB". "t9179.htm"{45} I0510 Assembling program pass 1. "t9179.htm"{45} I0510 Assembling program pass 2. "t9179.htm"{45} I0530 Assembling program pass 3 - final. "t9179.htm"{45} I0660 64bit FLAT ELF file "t9179.WB.o" created, size=1435. "t9179.htm"{89} I0650 Program "t9179.WB" assembled in 3 passes with errorlevel 0. "t9179.htm"{89} I0470 Assembling program "t9179.EX". "t9179.htm"{107} I0510 Assembling program pass 1. "t9179.htm"{107} I0510 Assembling program pass 2. "t9179.htm"{107} I0530 Assembling program pass 3 - final. "t9179.htm"{107} I0660 64bit FLAT ELF file "t9179.EX.o" created, size=1160. "t9179.htm"{123} I0650 Program "t9179.EX" assembled in 3 passes with errorlevel 0. "t9179.htm"{123} I0470 Assembling program "t9179". "t9179.htm"{139} I0510 Assembling program pass 1. "t9179.htm"{139} I0530 Assembling program pass 2 - final. "t9179.htm"{139} I0560 Linking ELF module ".\t9179.WB.o". "t9179.htm"{141} I0563 Accepting link directive '/IMPORT:GetStdHandle'. "t9179.htm"{141} I0563 Accepting link directive '/IMPORT:WriteFile'. "t9179.htm"{141} I0563 Accepting link directive '/IMPORT:Beep'. "t9179.htm"{141} I0560 Linking ELF module ".\t9179.EX.o". "t9179.htm"{141} I0563 Accepting link directive '/IMPORT:ExitProcess'. "t9179.htm"{141} I0660 64bit FLAT LIBCOF file "t9179.lib" created, size=1975. "t9179.htm"{141} I0650 Program "t9179" assembled in 2 passes with errorlevel 0. "t9179.htm"{141} I0750 Source "t9179" (313 lines) assembled in 2 passes with errorlevel 0. I0860 Listing file "t9179.htm.lst" created, size=8714. I0990 EuroAssembler terminated with errorlevel 0.
Expected output file t9179. lib
0000: 21 3C 61 72 63 68 3E 0A 2F 20 20 20 20 20 20 20  !<arch>¬/¯¯¯¯¯¯¯
0010: 20 20 20 20 20 20 20 20 30 20 20 20 20 20 20 20  ¯¯¯¯¯¯¯¯0¯¯¯¯¯¯¯
0020: 20 20 20 20 30 20 20 20 20 20 30 20 20 20 20 20  ¯¯¯¯0¯¯¯¯¯0¯¯¯¯¯
0030: 31 30 30 36 36 36 20 20 31 34 32 20 20 20 20 20  100666¯¯142¯¯¯¯¯
0040: 20 20 60 0A 00 00 00 0B 00 00 01 E0 00 00 02 42  ¯¯`¬°°°·°°·¤°°·B
0050: 00 00 02 AC 00 00 03 14 00 00 03 14 00 00 03 14  °°·¤°°··°°··°°··
0060: 00 00 03 14 00 00 05 8E 00 00 05 F8 00 00 05 F8  °°··°°·¤°°·¤°°·¤
0070: 00 00 05 F8 42 65 65 70 00 47 65 74 53 74 64 48  °°·¤Beep°GetStdH
0080: 61 6E 64 6C 65 00 57 72 69 74 65 46 69 6C 65 00  andle°WriteFile°
0090: 2E 72 6F 64 61 74 61 00 2E 74 65 78 74 00 42 65  .rodata°.text°Be
00A0: 65 70 2E 57 36 34 00 57 72 69 74 65 2E 57 36 34  ep.W64°Write.W64
00B0: 00 45 78 69 74 50 72 6F 63 65 73 73 00 2E 62 73  °ExitProcess°.bs
00C0: 73 00 2E 74 65 78 74 00 45 78 69 74 2E 57 36 34  s°.text°Exit.W64
00D0: 00 0A 2F 20 20 20 20 20 20 20 20 20 20 20 20 20  °¬/¯¯¯¯¯¯¯¯¯¯¯¯¯
00E0: 20 20 30 20 20 20 20 20 20 20 20 20 20 20 30 20  ¯¯0¯¯¯¯¯¯¯¯¯¯¯0¯
00F0: 20 20 20 20 30 20 20 20 20 20 31 30 30 36 36 36  ¯¯¯¯0¯¯¯¯¯100666
0100: 20 20 31 34 38 20 20 20 20 20 20 20 60 0A 06 00  ¯¯148¯¯¯¯¯¯¯`¬·°
0110: 00 00 E0 01 00 00 42 02 00 00 AC 02 00 00 14 03  °°¤·°°B·°°¤·°°··
0120: 00 00 8E 05 00 00 F8 05 00 00 0B 00 00 00 06 00  °°¤·°°¤·°°·°°°·°
0130: 04 00 04 00 06 00 01 00 04 00 06 00 05 00 02 00  ·°·°·°·°·°·°·°·°
0140: 04 00 03 00 2E 62 73 73 00 2E 72 6F 64 61 74 61  ·°·°.bss°.rodata
0150: 00 2E 74 65 78 74 00 2E 74 65 78 74 00 42 65 65  °.text°.text°Bee
0160: 70 00 42 65 65 70 2E 57 36 34 00 45 78 69 74 2E  p°Beep.W64°Exit.
0170: 57 36 34 00 45 78 69 74 50 72 6F 63 65 73 73 00  W64°ExitProcess°
0180: 47 65 74 53 74 64 48 61 6E 64 6C 65 00 57 72 69  GetStdHandle°Wri
0190: 74 65 2E 57 36 34 00 57 72 69 74 65 46 69 6C 65  te.W64°WriteFile
01A0: 00 0A 2F 2F 20 20 20 20 20 20 20 20 20 20 20 20  °¬//¯¯¯¯¯¯¯¯¯¯¯¯
01B0: 20 20 30 20 20 20 20 20 20 20 20 20 20 20 30 20  ¯¯0¯¯¯¯¯¯¯¯¯¯¯0¯
01C0: 20 20 20 20 30 20 20 20 20 20 31 30 30 36 36 36  ¯¯¯¯0¯¯¯¯¯100666
01D0: 20 20 32 20 20 20 20 20 20 20 20 20 60 0A 00 0A  ¯¯2¯¯¯¯¯¯¯¯¯`¬°¬
01E0: 42 65 65 70 2F 20 20 20 20 20 20 20 20 20 20 20  Beep/¯¯¯¯¯¯¯¯¯¯¯
01F0: 30 20 20 20 20 20 20 20 20 20 20 20 30 20 20 20  0¯¯¯¯¯¯¯¯¯¯¯0¯¯¯
0200: 20 20 30 20 20 20 20 20 31 30 30 36 36 36 20 20  ¯¯0¯¯¯¯¯100666¯¯
0210: 33 38 20 20 20 20 20 20 20 20 60 0A 00 00 FF FF  38¯¯¯¯¯¯¯¯`¬°°¤¤
0220: 00 00 64 86 00 00 00 00 12 00 00 00 00 00 04 00  °°d¤°°°°·°°°°°·°
0230: 42 65 65 70 00 6B 65 72 6E 65 6C 33 32 2E 64 6C  Beep°kernel32.dl
0240: 6C 00 47 65 74 53 74 64 48 61 6E 64 6C 65 2F 20  l°GetStdHandle/¯
0250: 20 20 30 20 20 20 20 20 20 20 20 20 20 20 30 20  ¯¯0¯¯¯¯¯¯¯¯¯¯¯0¯
0260: 20 20 20 20 30 20 20 20 20 20 31 30 30 36 36 36  ¯¯¯¯0¯¯¯¯¯100666
0270: 20 20 34 36 20 20 20 20 20 20 20 20 60 0A 00 00  ¯¯46¯¯¯¯¯¯¯¯`¬°°
0280: FF FF 00 00 64 86 00 00 00 00 1A 00 00 00 00 00  ¤¤°°d¤°°°°·°°°°°
0290: 04 00 47 65 74 53 74 64 48 61 6E 64 6C 65 00 6B  ·°GetStdHandle°k
02A0: 65 72 6E 65 6C 33 32 2E 64 6C 6C 00 57 72 69 74  ernel32.dll°Writ
02B0: 65 46 69 6C 65 2F 20 20 20 20 20 20 30 20 20 20  eFile/¯¯¯¯¯¯0¯¯¯
02C0: 20 20 20 20 20 20 20 20 30 20 20 20 20 20 30 20  ¯¯¯¯¯¯¯¯0¯¯¯¯¯0¯
02D0: 20 20 20 20 31 30 30 36 36 36 20 20 34 33 20 20  ¯¯¯¯100666¯¯43¯¯
02E0: 20 20 20 20 20 20 60 0A 00 00 FF FF 00 00 64 86  ¯¯¯¯¯¯`¬°°¤¤°°d¤
02F0: 00 00 00 00 17 00 00 00 00 00 04 00 57 72 69 74  °°°°·°°°°°·°Writ
0300: 65 46 69 6C 65 00 6B 65 72 6E 65 6C 33 32 2E 64  eFile°kernel32.d
0310: 6C 6C 00 10 74 39 31 37 39 2E 57 42 2F 20 20 20  ll°·t9179.WB/¯¯¯
0320: 20 20 20 20 30 20 20 20 20 20 20 20 20 20 20 20  ¯¯¯¯0¯¯¯¯¯¯¯¯¯¯¯
0330: 30 20 20 20 20 20 30 20 20 20 20 20 31 30 30 36  0¯¯¯¯¯0¯¯¯¯¯1006
0340: 36 36 20 20 35 37 34 20 20 20 20 20 20 20 60 0A  66¯¯574¯¯¯¯¯¯¯`¬
0350: 64 86 02 00 00 00 00 00 20 01 00 00 0D 00 00 00  d¤·°°°°°¯·°°·°°°
0360: 00 00 20 00 2E 74 65 78 74 00 00 00 00 00 00 00  °°¯°.text°°°°°°°
0370: 00 00 00 00 7E 00 00 00 64 00 00 00 E2 00 00 00  °°°°~°°°d°°°¤°°°
0380: 00 00 00 00 05 00 00 00 20 00 50 60 2E 72 6F 64  °°°°·°°°¯°P`.rod
0390: 61 74 61 00 00 00 00 00 00 00 00 00 0B 00 00 00  ata°°°°°°°°°·°°°
03A0: 14 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ··°°°°°°°°°°°°°°
03B0: 40 00 50 40 48 89 E5 48 83 E4 F0 48 83 EC 30 48  @°P@H¤¤H¤¤¤H¤¤0H
03C0: C7 C1 F5 FF FF FF E8 00 00 00 00 48 89 C3 48 89  ¤¤¤¤¤¤¤°°°°H¤¤H¤
03D0: F7 31 C9 31 C0 48 F7 D1 F2 AE 48 F7 D1 48 89 44  ¤1¤1¤H¤¤¤¤H¤¤H¤D
03E0: 24 20 4C 8D 4C 24 18 49 89 C8 48 89 F2 48 89 D9  $¯L¤L$·I¤¤H¤¤H¤¤
03F0: E8 00 00 00 00 48 89 EC C3 48 8D 35 00 00 00 00  ¤°°°°H¤¤¤H¤5°°°°
0400: E8 AF FF FF FF 48 89 E5 48 83 E4 F0 48 83 EC 20  ¤¤¤¤¤H¤¤H¤¤¤H¤¤¯
0410: BA C8 00 00 00 B9 B8 01 00 00 E8 00 00 00 00 BA  ¤¤°°°¤¤·°°¤°°°°¤
0420: 90 01 00 00 B9 4B 02 00 00 E8 00 00 00 00 48 89  ¤·°°¤K·°°¤°°°°H¤
0430: EC C3 13 00 00 00 0A 00 00 00 04 00 3D 00 00 00  ¤¤·°°°¬°°°·°=°°°
0440: 0C 00 00 00 04 00 48 00 00 00 02 00 00 00 04 00  ·°°°·°H°°°·°°°·°
0450: 67 00 00 00 08 00 00 00 04 00 76 00 00 00 08 00  g°°°·°°°·°v°°°·°
0460: 00 00 04 00 42 65 65 70 69 6E 67 2E 2E 2E 00 00  °°·°Beeping...°°
0470: 2E 66 69 6C 65 00 00 00 00 00 00 00 FE FF 00 00  .file°°°°°°°¤¤°°
0480: 67 01 74 39 31 37 39 2E 68 74 6D 00 00 00 00 00  g·t9179.htm°°°°°
0490: 00 00 00 00 2E 72 6F 64 61 74 61 00 00 00 00 00  °°°°.rodata°°°°°
04A0: 02 00 00 00 03 01 0B 00 00 00 00 00 00 00 00 00  ·°°°···°°°°°°°°°
04B0: 00 00 00 00 00 00 00 00 2E 74 65 78 74 00 00 00  °°°°°°°°.text°°°
04C0: 00 00 00 00 01 00 00 00 03 01 7E 00 00 00 05 00  °°°°·°°°··~°°°·°
04D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  °°°°°°°°°°°°°°°°
04E0: 04 00 00 00 00 00 00 00 02 00 01 01 03 00 40 4C  ·°°°°°°°·°···°@L
04F0: 54 31 00 00 00 00 00 00 00 00 02 00 01 01 03 00  T1°°°°°°°°·°···°
0500: 42 65 65 70 00 00 00 00 00 00 00 00 00 00 01 01  Beep°°°°°°°°°°··
0510: 02 00 42 65 65 70 2E 57 36 34 45 00 00 00 01 00  ·°Beep.W64E°°°·°
0520: 01 02 02 00 00 00 00 00 13 00 00 00 00 00 00 00  ···°°°°°·°°°°°°°
0530: 00 00 01 01 02 00 00 00 00 00 20 00 00 00 00 00  °°···°°°°°¯°°°°°
0540: 00 00 01 00 01 02 02 00 00 00 00 00 2A 00 00 00  °°·°···°°°°°*°°°
0550: 00 00 00 00 00 00 01 01 02 00 34 00 00 00 3D 42  °°°°°°···°4°°°=B
0560: 22 42 65 65 70 69 6E 67 2E 2E 2E 22 00 47 65 74  "Beeping..."°Get
0570: 53 74 64 48 61 6E 64 6C 65 00 57 72 69 74 65 2E  StdHandle°Write.
0580: 57 36 34 00 57 72 69 74 65 46 69 6C 65 00 45 78  W64°WriteFile°Ex
0590: 69 74 50 72 6F 63 65 73 73 2F 20 20 20 20 30 20  itProcess/¯¯¯¯0¯
05A0: 20 20 20 20 20 20 20 20 20 20 30 20 20 20 20 20  ¯¯¯¯¯¯¯¯¯¯0¯¯¯¯¯
05B0: 30 20 20 20 20 20 31 30 30 36 36 36 20 20 34 35  0¯¯¯¯¯100666¯¯45
05C0: 20 20 20 20 20 20 20 20 60 0A 00 00 FF FF 00 00  ¯¯¯¯¯¯¯¯`¬°°¤¤°°
05D0: 64 86 00 00 00 00 19 00 00 00 00 00 04 00 45 78  d¤°°°°·°°°°°·°Ex
05E0: 69 74 50 72 6F 63 65 73 73 00 6B 65 72 6E 65 6C  itProcess°kernel
05F0: 33 32 2E 64 6C 6C 00 10 74 39 31 37 39 2E 45 58  32.dll°·t9179.EX
0600: 2F 20 20 20 20 20 20 20 30 20 20 20 20 20 20 20  /¯¯¯¯¯¯¯0¯¯¯¯¯¯¯
0610: 20 20 20 20 30 20 20 20 20 20 30 20 20 20 20 20  ¯¯¯¯0¯¯¯¯¯0¯¯¯¯¯
0620: 31 30 30 36 36 36 20 20 33 38 37 20 20 20 20 20  100666¯¯387¯¯¯¯¯
0630: 20 20 60 0A 64 86 02 00 00 00 00 00 AA 00 00 00  ¯¯`¬d¤·°°°°°¤°°°
0640: 0A 00 00 00 00 00 20 00 2E 74 65 78 74 00 00 00  ¬°°°°°¯°.text°°°
0650: 00 00 00 00 00 00 00 00 28 00 00 00 64 00 00 00  °°°°°°°°(°°°d°°°
0660: 8C 00 00 00 00 00 00 00 03 00 00 00 20 00 50 60  ¤°°°°°°°·°°°¯°P`
0670: 2E 62 73 73 00 00 00 00 00 00 00 00 00 00 00 00  .bss°°°°°°°°°°°°
0680: 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ·°°°°°°°°°°°°°°°
0690: 00 00 00 00 80 00 50 C0 48 8D 35 00 00 00 00 C7  °°°°¤°P¤H¤5°°°°¤
06A0: 06 45 6E 64 00 C7 46 03 0D 0A 00 00 E8 00 00 00  ·End°¤F··¬°°¤°°°
06B0: 00 48 83 E4 F0 48 83 EC 20 31 C9 E9 00 00 00 00  °H¤¤¤H¤¤¯1¤¤°°°°
06C0: 03 00 00 00 02 00 00 00 04 00 15 00 00 00 09 00  ·°°°·°°°·°·°°°·°
06D0: 00 00 04 00 24 00 00 00 08 00 00 00 04 00 2E 66  °°·°$°°°·°°°·°.f
06E0: 69 6C 65 00 00 00 00 00 00 00 FE FF 00 00 67 01  ile°°°°°°°¤¤°°g·
06F0: 74 39 31 37 39 2E 68 74 6D 00 00 00 00 00 00 00  t9179.htm°°°°°°°
0700: 00 00 2E 62 73 73 00 00 00 00 00 00 00 00 02 00  °°.bss°°°°°°°°·°
0710: 00 00 03 01 00 00 00 00 00 00 00 00 00 00 00 00  °°··°°°°°°°°°°°°
0720: 00 00 00 00 00 00 2E 74 65 78 74 00 00 00 00 00  °°°°°°.text°°°°°
0730: 00 00 01 00 00 00 03 01 28 00 00 00 03 00 00 00  °°·°°°··(°°°·°°°
0740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 00  °°°°°°°°°°°°°°·°
0750: 00 00 00 00 00 00 02 00 01 01 03 00 45 78 69 74  °°°°°°·°···°Exit
0760: 2E 57 36 34 00 00 00 00 01 00 01 02 02 00 00 00  .W64°°°°·°···°°°
0770: 00 00 0F 00 00 00 00 00 00 00 00 00 01 01 02 00  °°·°°°°°°°°°···°
0780: 00 00 00 00 1B 00 00 00 00 00 00 00 00 00 01 01  °°°°·°°°°°°°°°··
0790: 02 00 25 00 00 00 45 78 69 74 2E 57 36 34 2E 4D  ·°%°°°Exit.W64.M
07A0: 00 45 78 69 74 50 72 6F 63 65 73 73 00 57 72 69  °ExitProcess°Wri
07B0: 74 65 2E 57 36 34 00                             te.W64°

▲Back to the top▲