EuroAssembler Index Manual Download Source Macros


Sitemap Links Forum Tests Projects

Test t8307: MZ program for 16bit DOS links LIBOMF library


Source & expected listing t8307.htm.lst
| | EUROASM AUTOSEGMENT=ON,CPU=086,DUMPWIDTH=24,PRIV=ENABLED |7438333037 |%test %SET t8307 ; MZ.D16 links LIBOMF.D16 |00000000: | | |;; Create the first auxilliary OMF module "%test.WB.obj". | |%test.WB PROGRAM FORMAT=OMF,WIDTH=16,MODEL=SMALL | |;; |[CODE] ::::Section changed. |0000: |Write.D16:: PROC ; Display ASCIIZ string pointed to by DS:SI using DOS. |0000:B402 | MOV AH,02h ; DOS service Teletype output. |0002:8A14 |.1:MOV DL,[SI] ; Load a character from string to DL, increment SI. |0004:80FA00 | CMP DL,0 ; Test if zero-terminator reached. |0007:7405 | JE .9: ; Exit the procedure if AL=0. |0009:CD21 | INT 21h ; Otherwise display the character DL and advance screen cursor. |000B:46 | INC SI ; Let DS:SI point to the next character. |000C:EBF4 | JMP .1: ; Repeat with following characters. |000E:C3 |.9:RET ; AX,BX,SI are clobbered. |000F: | ENDP Write.D16:: | |;; |000F: |Beep.D16:: PROC ; Display message "Beeping.." and play a sound using BIOS. |000F:BE[0000] | MOV SI,=B"Beeping..." ; Define a literal string. Assume DS=PARA# [RODATA}. |0012:E8EBFF | CALL Write.D16:: ; Display the notification "Beeping...". |0015:BE[0000] | MOV SI,=W(0x0007) ; Define ASCIIZ string with BEL character in [RODATA]. |0018:E8E5FF | CALL Write.D16:: ; Play the beep sound. |001B:C3 | RET ; AX,BX,SI are clobbered. |001C: | ENDP Beep.D16:: |[@LT2] ====ListLiterals in section [@LT2]. |0000:0700 =W(0x0007) |[@LT1] ====ListLiterals in section [@LT1]. |0000:42656570696E672E~=B"Beeping..." | | ENDPROGRAM %test.WB | **** ListMap "t8307.WB.obj",model=SMALL,groups=2,segments=2,entry=,stack= | [CGROUP],FA=0000008Eh,RVA=00000000h,size=0000001Ch=28,group [CODE] | [CODE],FA=0000008Eh,RVA=00000000h,size=0000001Ch=28,width=16,align=0010h,purpose=CODE | [DGROUP],FA=000000BFh,RVA=00000000h,size=0000000Dh=13,group [RODATA] | [RODATA],FA=000000BFh,RVA=00000000h,size=0000000Dh=13,width=16,align=0010h,purpose=RODATA+LITERAL | **** ListGlobals "t8307.WB.obj",Global=0,Public=2,Extern=0,eXport=0,Import=0 | Beep.D16,[CGROUP]:0000000Fh,scope='P' | Write.D16,[CGROUP]:00000000h,scope='P' | |;; | |;; Create the second auxilliary OMF module "%test.EX.obj". | |%test.EX PROGRAM FORMAT=OMF,WIDTH=16,MODEL=SMALL |[CODE] ::::Section changed. |0000: |Exit.D16:: PROC ; Display message "End", terminate Terminate the program. |0000:BE[0000] | MOV SI,.M: ; String "End" will be defined in segment [BSS] at DS:SI. |0003:C704456E | MOVW [SI+0],"En" ; Dynamically initialize the notification string. |0007:C744026420 | MOVW [SI+2],"d " ; Assume DS=PARA# [BSS]. |000C:C744040A0D | MOVW [SI+4],0x0D0A ; CR+LF. |0011:C6440600 | MOVB [SI+6],0 ; Zero-terminate the notification. |0015:E8(0000) | CALL Write.D16:: ; Display notification "End". |0018:B44C | MOV AH,4Ch ; DOS function EXIT. |001A:CD21 | INT 21h ; Terminate program and return to DOS. |[BSS] ::::Section changed. |0000:.............. |.M:DB 7*BYTE ; Reserve space for ASCIIZ string "End" in [BSS] segment. |[CODE] ::::Section changed. |001C: | ENDP Exit.D16:: | | ENDPROGRAM %test.EX | **** ListMap "t8307.EX.obj",model=SMALL,groups=2,segments=2,entry=,stack= | [CGROUP],FA=00000087h,RVA=00000000h,size=0000001Ch=28,group [CODE] | [CODE],FA=00000087h,RVA=00000000h,size=0000001Ch=28,width=16,align=0010h,purpose=CODE | [DGROUP],FA=00000000h,RVA=00000000h,size=00000007h=7,group [BSS] | [BSS],FA=00000000h,RVA=00000000h,size=00000007h=7,width=16,align=0010h,purpose=BSS | **** ListGlobals "t8307.EX.obj",Global=0,Public=1,Extern=1,eXport=0,Import=0 | Exit.D16,[CGROUP]:00000000h,scope='P' | Write.D16,[Write.D16]:00000000h,scope='E' | |;; | |;; Create auxilliary LIBOMF library "%test.lib". | |%test PROGRAM FORMAT=LIBOMF,WIDTH=16,MODEL=SMALL | | LINK %test.WB.obj, %test.EX.obj | | ENDPROGRAM %test |# I0560 Linking OMF module ".\t8307.WB.obj". |# I0560 Linking OMF module ".\t8307.EX.obj". | **** ListMap "t8307.lib",model=SMALL,groups=0,segments=0,entry=,stack= | **** ListGlobals "t8307.lib",Global=0,Public=0,Extern=0,eXport=0,Import=0 | |;; | |;; Create the main MZ program "%test.exe" from the LIBOMF library. | |%test PROGRAM FORMAT=MZ,WIDTH=16,MODEL=SMALL,ENTRY=Start |[CODE] ::::Section changed. |0000:90 |Start:NOP |0001:BE[0000] | MOV SI,Msg |0004:B8{0000} | MOV AX,PARA# Msg |0007:8ED8 | MOV DS,AX |0009:E8(0000) | CALL Write.D16:: |000C:E8(0000) | CALL Beep.D16:: |000F:E8(0000) | CALL Exit.D16:: | | LINK %test.lib |[DATA] ::::Section changed. |0000:313662697420534D~|Msg::DB '%^WIDTH[]bit %^MODEL %^FORMAT program "%^OUTFILE".',13,10,0 | | ENDPROGRAM %test |# I0561 Linking LIBOMF library ".\t8307.lib". | **** ListMap "t8307.exe",model=SMALL,groups=3,segments=5,entry=Start,stack=[SGROUP]:00002000h | [CGROUP],FA=00000060h,RVA=00000000h,size=0000005Ch=92,group [CODE] | [CODE],FA=00000060h,RVA=00000000h,size=0000005Ch=92,width=16,align=0010h,purpose=CODE | [DGROUP],FA=000000C0h,RVA=00000060h,size=00000047h=71,group [RODATA] [DATA] [BSS] | [RODATA],FA=000000C0h,RVA=00000060h,size=0000000Dh=13,width=16,align=0010h,purpose=RODATA | [DATA],FA=000000D0h,RVA=00000070h,size=00000026h=38,width=16,align=0010h,purpose=DATA | [BSS],FA=00000100h,RVA=000000A0h,size=00000007h=7,width=16,align=0010h,purpose=BSS | [SGROUP],FA=00000100h,RVA=000000B0h,size=00002000h=8192,group [STACK] | [STACK],FA=00000100h,RVA=000000B0h,size=00002000h=8192,width=16,align=0010h,purpose=STACK | **** ListGlobals "t8307.exe",Global=0,Public=5,Extern=0,eXport=0,Import=0 | Beep.D16,[CGROUP]:0000002Fh,RVA=0000002Fh,scope='P' | Exit.D16,[CGROUP]:00000040h,RVA=00000040h,scope='P' | Msg,[DGROUP]:00000010h,RVA=00000070h,scope='P' | Start,[CGROUP]:00000000h,RVA=00000000h,scope='P' | Write.D16,[CGROUP]:00000020h,RVA=00000020h,scope='P'
Expected messages t8307.out
I0180 Assembling source file "t8307.htm". I0270 Assembling source "t8307". I0310 Assembling source pass 1. I0330 Assembling source pass 2 - final. I0470 Assembling program "t8307.WB". "t8307.htm"{45} I0510 Assembling program pass 1. "t8307.htm"{45} I0510 Assembling program pass 2. "t8307.htm"{45} I0530 Assembling program pass 3 - final. "t8307.htm"{45} I0660 16bit SMALL OMF file "t8307.WB.obj" created, size=216. "t8307.htm"{70} I0650 Program "t8307.WB" assembled in 3 passes with errorlevel 0. "t8307.htm"{70} I0470 Assembling program "t8307.EX". "t8307.htm"{81} I0510 Assembling program pass 1. "t8307.htm"{81} I0510 Assembling program pass 2. "t8307.htm"{81} I0530 Assembling program pass 3 - final. "t8307.htm"{81} I0660 16bit SMALL OMF file "t8307.EX.obj" created, size=187. "t8307.htm"{96} I0650 Program "t8307.EX" assembled in 3 passes with errorlevel 0. "t8307.htm"{96} I0470 Assembling program "t8307". "t8307.htm"{107} I0510 Assembling program pass 1. "t8307.htm"{107} I0530 Assembling program pass 2 - final. "t8307.htm"{107} I0560 Linking OMF module ".\t8307.WB.obj". "t8307.htm"{109} I0560 Linking OMF module ".\t8307.EX.obj". "t8307.htm"{109} I0660 16bit SMALL LIBOMF file "t8307.lib" created, size=1536. "t8307.htm"{109} I0650 Program "t8307" assembled in 2 passes with errorlevel 0. "t8307.htm"{109} I0470 Assembling program "t8307". "t8307.htm"{116} I0510 Assembling program pass 1. "t8307.htm"{116} I0510 Assembling program pass 2. "t8307.htm"{116} I0530 Assembling program pass 3 - final. "t8307.htm"{116} I0561 Linking LIBOMF library ".\t8307.lib". "t8307.htm"{128} I0660 16bit SMALL MZ file "t8307.exe" created, size=246. "t8307.htm"{128} I0650 Program "t8307" assembled in 3 passes with errorlevel 0. "t8307.htm"{128} I0750 Source "t8307" (203 lines) assembled in 2 passes with errorlevel 0. I0860 Listing file "t8307.htm.lst" created, size=7278. I0990 EuroAssembler terminated with errorlevel 0.
Expected output file t8307. exe
0000: 4D 5A F6 00 01 00 01 00 06 00 02 02 FF FF 0B 00  MZ¤°·°·°·°··¤¤·°
0010: 00 20 63 82 00 00 00 00 40 00 00 00 00 00 00 00  °¯c¤°°°°@°°°°°°°
0020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  °°°°°°°°°°°°°°°°
0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  °°°°°°°°°°°°°°°°
0040: 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ·°°°°°°°°°°°°°°°
0050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  °°°°°°°°°°°°°°°°
0060: 90 BE 10 00 B8 06 00 8E D8 E8 14 00 E8 20 00 E8  ¤¤·°¤·°¤¤¤·°¤¯°¤
0070: 2E 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90  .°¤¤¤¤¤¤¤¤¤¤¤¤¤¤
0080: B4 02 8A 14 80 FA 00 74 05 CD 21 46 EB F4 C3 BE  ¤·¤·¤¤°t·¤!F¤¤¤¤
0090: 02 00 E8 EB FF BE 00 00 E8 E5 FF C3 90 90 90 90  ·°¤¤¤¤°°¤¤¤¤¤¤¤¤
00A0: BE 40 00 C7 04 45 6E C7 44 02 64 20 C7 44 04 0A  ¤@°¤·En¤D·d¯¤D·¬
00B0: 0D C6 44 06 00 E8 C8 FF B4 4C CD 21 00 00 00 00  ·¤D·°¤¤¤¤L¤!°°°°
00C0: 07 00 42 65 65 70 69 6E 67 2E 2E 2E 00 00 00 00  ·°Beeping...°°°°
00D0: 31 36 62 69 74 20 53 4D 41 4C 4C 20 4D 5A 20 70  16bit¯SMALL¯MZ¯p
00E0: 72 6F 67 72 61 6D 20 22 74 38 33 30 37 2E 65 78  rogram¯"t8307.ex
00F0: 65 22 2E 0D 0A 00                                e".·¬°

▲Back to the top▲