EuroAssembler Index Manual Download Source Macros


Sitemap Links Forum Tests Projects

Test t7923: Compile to MZ in MEDIUM model


Description
Executable MZ program with segments [CODE],[RODATA],[DATA],[BSS],[STACK]. In FARCODE memory models (COMPACT|LARGE|HUGE) instructions CALL and RET are by default FAR. In FARDATA memory models (MEDIUM|LARGE|HUGE) access to each data segment requires to update DS.
See also
t7921   t7922   t7923   t7924   t7925   t7926  
Tested procedures
PfomfCompile   PfmzCompile   PfomfLoadPgm   PgmLink  
Source & expected listing t7923.htm.lst
| | EUROASM AUTOSEGMENT=ON,CPU=086,DUMPWIDTH=24 |7437393233 |%TEST %SET t7923 ; Name of EuroAssembler test program. |4D454449554D |%MODEL %SET MEDIUM ; Memory model of the test program and its modules. |30 |%FARDATA %SETB "%MODEL"=="COMPACT" || "%MODEL"=="LARGE" || "%MODEL"=="HUGE" | |;; Boolean var %FARDATA is set when each of [RODATA],[DATA],[BSS] requires its own segment address. | |;; | |;; Create the first auxilliary OMF module with functions Write.D16 and Beep.D16. | |%TEST.WB PROGRAM FORMAT=OMF,MODEL=%MODEL |[CODE] ::::Section changed. |0000: |Write.D16:: PROC ; Display ASCIIZ string pointed to by DS:SI using DOS. |0000:B402 | MOV AH,02h ; DOS service Write character form DL to standard output. |0002:FC | CLD ; Direction forward. |0003:AC |.1:LODSB ; Load a character from string to AL, increment SI. |0004:3C00 | CMP AL,0 ; Test if zero-terminator reached. |0006:7406 | JE .9: ; Exit the procedure if AL=0. |0008:88C2 | MOV DL,AL |000A:CD21 | INT 21h ; Otherwise display the character AL and advance screen cursor. |000C:EBF5 | JMP .1: ; Repeat with following characters. |000E:CB |.9:RET ; AX,DL,SI are clobbered. |000F: | ENDP Write.D16:: | |;; |000F: |Beep.D16:: PROC ; Display message "Beeping.." and play a sound using DOS. |000F:BE[0000] | MOV SI,=B"Beeping..." ; Define a literal string in [RODATA]. |FALSE | %IF %FARDATA | | MOV AX,PARA# =B"Beeping..." | | MOV DS,AX ; Paragraph address of literal segment [RODATA]. | | %ENDIF |0012:9A[0000]{0000} | CALL Write.D16:: ; Display the notification "Beeping...". |0017:BE[0000] | MOV SI,=W(0x0007) ; Define ASCIIZ string with BEL character in [RODATA]. |001A:9A[0000]{0000} | CALL Write.D16:: ; Play the beep sound. |001F:CB | RET ; AX,DL,SI are clobbered. |0020: | 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 "t7923.WB.obj",model=MEDIUM,groups=1,segments=2,entry=,stack= | [CODE],FA=00000080h,RVA=00000000h,size=00000020h=32,width=16,align=0010h,purpose=CODE | [DGROUP],FA=000000C5h,RVA=00000000h,size=0000000Dh=13,group [RODATA] | [RODATA],FA=000000C5h,RVA=00000000h,size=0000000Dh=13,width=16,align=0010h,purpose=RODATA+LITERAL | **** ListGlobals "t7923.WB.obj",Global=0,Public=2,Extern=0,eXport=0,Import=0 | Beep.D16,[CODE]:0000000Fh,scope='P' | Write.D16,[CODE]:00000000h,scope='P' | |;; | |;; Create other auxilliary OMF module with function Exit.D16. | |%TEST.EX PROGRAM FORMAT=OMF,MODEL=%MODEL |[CODE] ::::Section changed. |0000: |Exit.D16:: PROC ; Display message "End", terminate the program and return to DOS. |0000:BE[0000] | MOV SI,.M: ; String "End" will be defined in segment [BSS] at DS:SI. |FALSE | %IF %FARDATA | | MOV AX,PARA# .M: | | MOV DS,AX ; Paragraph address of segment [BSS]. | | %ENDIF |0003:C704456E | MOVW [SI+0],"En" ; Dynamically initialize the notification string. |0007:C744026420 | MOVW [SI+2],"d " ; Assume DS=PARA# [BSS]. |000C:C744040D0A | MOVW [SI+4],0x0A0D ; CR+LF. |0011:C6440600 | MOVB [SI+6],0 ; Zero-terminate the notiofication string. |0015:9A[0000]{0000} | CALL Write.D16:: ; Display the notification "End". |001A:B44C | MOV AH,4Ch ; DOS service Terminate program. |001C:CD21 | INT 21h |[BSS] ::::Section changed. |0000:.............. |.M:DB 7*BYTE ; Reserve space for ASCIIZ string "End" in [BSS] segment. |[CODE] ::::Section changed. |001E: | ENDP Exit.D16:: | | ENDPROGRAM %TEST.EX | **** ListMap "t7923.EX.obj",model=MEDIUM,groups=1,segments=2,entry=,stack= | [CODE],FA=00000079h,RVA=00000000h,size=0000001Eh=30,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 "t7923.EX.obj",Global=0,Public=1,Extern=1,eXport=0,Import=0 | Exit.D16,[CODE]:00000000h,scope='P' | Write.D16,[Write.D16]:00000000h,scope='E' | |;; | |;; Create the main program which links auxilliary OMF modules. | |%TEST PROGRAM FORMAT=MZ, MODEL=%MODEL, ENTRY=Start |[CODE] ::::Section changed. |0000:90 |Start:NOP |0001:BE[0000] | MOV SI,Msg |0004:B8{0000} | MOV AX,PARA# Msg ; MZ program requires paragraph address of [DATA] segment |0007:8ED8 | MOV DS,AX ; in all realmode models, including TINY. |0009:9A[0000]{0000} | CALL Write.D16:: |000E:9A[0000]{0000} | CALL Beep.D16:: |0013:9A[0000]{0000} | CALL Exit.D16:: | | LINK %TEST.WB.obj, %TEST.EX.obj |[DATA] ::::Section changed. |0000:3136626974204D45~|Msg:DB '%^WIDTH[]bit %MODEL MZ program "%^OUTFILE" linked',13,10 |002C:2077697468204D45~| DB ' with %MODEL OMF module "%TEST.WB.obj" and "%TEST.EX.obj".',13,10,0 | | ENDPROGRAM %TEST |# I0560 Linking OMF module ".\t7923.WB.obj". |# I0560 Linking OMF module ".\t7923.EX.obj". | **** ListMap "t7923.exe",model=MEDIUM,groups=2,segments=5,entry=Start,stack=[SGROUP]:00002000h | [CODE],FA=00000060h,RVA=00000000h,size=0000005Eh=94,width=16,align=0010h,purpose=CODE | [DGROUP],FA=000000C0h,RVA=00000060h,size=00000087h=135,group [RODATA] [DATA] [BSS] | [RODATA],FA=000000C0h,RVA=00000060h,size=0000000Dh=13,width=16,align=0010h,purpose=RODATA | [DATA],FA=000000D0h,RVA=00000070h,size=00000069h=105,width=16,align=0010h,purpose=DATA | [BSS],FA=00000140h,RVA=000000E0h,size=00000007h=7,width=16,align=0010h,purpose=BSS | [SGROUP],FA=00000140h,RVA=000000F0h,size=00002000h=8192,group [STACK] | [STACK],FA=00000140h,RVA=000000F0h,size=00002000h=8192,width=16,align=0010h,purpose=STACK | **** ListGlobals "t7923.exe",Global=0,Public=4,Extern=0,eXport=0,Import=0 | Beep.D16,[CODE]:0000002Fh,RVA=0000002Fh,scope='P' | Exit.D16,[CODE]:00000040h,RVA=00000040h,scope='P' | Start,[CODE]:00000000h,RVA=00000000h,scope='P' | Write.D16,[CODE]:00000020h,RVA=00000020h,scope='P'
Expected messages t7923.out
I0180 Assembling source file "t7923.htm". I0270 Assembling source "t7923". I0310 Assembling source pass 1. I0330 Assembling source pass 2 - final. I0470 Assembling program "t7923.WB". "t7923.htm"{89} I0510 Assembling program pass 1. "t7923.htm"{89} I0510 Assembling program pass 2. "t7923.htm"{89} I0530 Assembling program pass 3 - final. "t7923.htm"{89} I0660 16bit MEDIUM OMF file "t7923.WB.obj" created, size=222. "t7923.htm"{118} I0650 Program "t7923.WB" assembled in 3 passes with errorlevel 0. "t7923.htm"{118} I0470 Assembling program "t7923.EX". "t7923.htm"{128} I0510 Assembling program pass 1. "t7923.htm"{128} I0510 Assembling program pass 2. "t7923.htm"{128} I0510 Assembling program pass 3. "t7923.htm"{128} I0530 Assembling program pass 4 - final. "t7923.htm"{128} I0660 16bit MEDIUM OMF file "t7923.EX.obj" created, size=179. "t7923.htm"{147} I0650 Program "t7923.EX" assembled in 4 passes with errorlevel 0. "t7923.htm"{147} I0470 Assembling program "t7923". "t7923.htm"{157} I0510 Assembling program pass 1. "t7923.htm"{157} I0510 Assembling program pass 2. "t7923.htm"{157} I0530 Assembling program pass 3 - final. "t7923.htm"{157} I0560 Linking OMF module ".\t7923.WB.obj". "t7923.htm"{170} I0560 Linking OMF module ".\t7923.EX.obj". "t7923.htm"{170} I0660 16bit MEDIUM MZ file "t7923.exe" created, size=313. "t7923.htm"{170} I0650 Program "t7923" assembled in 3 passes with errorlevel 0. "t7923.htm"{170} I0750 Source "t7923" (243 lines) assembled in 2 passes with errorlevel 0. I0860 Listing file "t7923.htm.lst" created, size=7475. I0990 EuroAssembler terminated with errorlevel 0.
Expected output file t7923. exe
0000: 4D 5A 39 01 01 00 07 00 06 00 02 02 FF FF 0F 00  MZ9··°·°·°··¤¤·°
0010: 00 20 19 81 00 00 00 00 40 00 00 00 00 00 00 00  °¯·¤°°°°@°°°°°°°
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 0C 00 00 00 11 00 00 00 16 00 00 00  ·°°°·°°°·°°°·°°°
0050: 35 00 00 00 3D 00 00 00 58 00 00 00 00 00 00 00  5°°°=°°°X°°°°°°°
0060: 90 BE 10 00 B8 06 00 8E D8 9A 20 00 00 00 9A 2F  ¤¤·°¤·°¤¤¤¯°°°¤/
0070: 00 00 00 9A 40 00 00 00 90 90 90 90 90 90 90 90  °°°¤@°°°¤¤¤¤¤¤¤¤
0080: B4 02 FC AC 3C 00 74 06 88 C2 CD 21 EB F5 CB BE  ¤·¤¤<°t·¤¤¤!¤¤¤¤
0090: 02 00 9A 20 00 00 00 BE 00 00 9A 20 00 00 00 CB  ·°¤¯°°°¤°°¤¯°°°¤
00A0: BE 80 00 C7 04 45 6E C7 44 02 64 20 C7 44 04 0D  ¤¤°¤·En¤D·d¯¤D··
00B0: 0A C6 44 06 00 9A 20 00 00 00 B4 4C CD 21 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 4D 45 44 49 55 4D 20 4D 5A 20  16bit¯MEDIUM¯MZ¯
00E0: 70 72 6F 67 72 61 6D 20 22 74 37 39 32 33 2E 65  program¯"t7923.e
00F0: 78 65 22 20 6C 69 6E 6B 65 64 0D 0A 20 77 69 74  xe"¯linked·¬¯wit
0100: 68 20 4D 45 44 49 55 4D 20 4F 4D 46 20 6D 6F 64  h¯MEDIUM¯OMF¯mod
0110: 75 6C 65 20 22 74 37 39 32 33 2E 57 42 2E 6F 62  ule¯"t7923.WB.ob
0120: 6A 22 20 61 6E 64 20 22 74 37 39 32 33 2E 45 58  j"¯and¯"t7923.EX
0130: 2E 6F 62 6A 22 2E 0D 0A 00                       .obj".·¬°

▲Back to the top▲