EuroAssembler Index Manual Download Source Macros


Sitemap Links Forum Tests Projects

Test t8206: COM program for 16bit BIOS links LIBOMF library.


Tested procedures
PflibomfCompile   PflibomfLoadPgm  
Source & expected listing t8206.htm.lst
| | EUROASM AUTOSEGMENT=ON,CPU=086,DUMPWIDTH=24,PRIV=ENABLED |7438323036 |%test %SET t8206 ; LIBOMF.B16 | |;; Create the first auxilliary OMF module "%test.WB.obj". | |%test.WB PROGRAM FORMAT=OMF,WIDTH=16,MODEL=TINY | |;; |[CODE] ::::Section changed. |0000: |Write.B16:: PROC ; Display ASCIIZ string pointed to by DS:SI using BIOS. |0000:31DB | XOR BX,BX ; Videopage=0. |0002:B40E | MOV AH,0Eh ; BIOS service Teletype output. |0004:FC | CLD ; Direction forward. |0005:AC |.1:LODSB ; Load a character from string to AL, increment SI. |0006:3C00 | CMP AL,0 ; Test if zero-terminator reached. |0008:7404 | JE .9: ; Exit the procedure if AL=0. |000A:CD10 | INT 10h ; Otherwise display the character AL and advance screen cursor. |000C:EBF7 | JMP .1: ; Repeat with following characters. |000E:C3 |.9:RET ; AX,BX,SI are clobbered. |000F: | ENDP Write.B16:: | |;; |000F: |Beep.B16:: 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.B16:: ; Display the notification "Beeping...". |0015:BE[0000] | MOV SI,=W(0x0007) ; Define ASCIIZ string with BEL character in [RODATA]. |0018:E8E5FF | CALL Write.B16:: ; Play the beep sound. |001B:C3 | RET ; AX,BX,SI are clobbered. |001C: | ENDP Beep.B16:: |[@LT2] ====ListLiterals in section [@LT2]. |0000:0700 =W(0x0007) |[@LT1] ====ListLiterals in section [@LT1]. |0000:42656570696E672E~=B"Beeping..." | | ENDPROGRAM %test.WB | **** ListMap "t8206.WB.obj",model=TINY,groups=1,segments=2,entry=,stack=[COMGROUP]:0000001Ch | [COMGROUP],FA=00000084h,RVA=00000000h,size=0000001Ch=28,group [CODE] [RODATA] | [CODE],FA=00000084h,RVA=00000000h,size=0000001Ch=28,width=16,align=0010h,purpose=CODE | [RODATA],FA=000000B5h,RVA=00000000h,size=0000000Dh=13,width=16,align=0010h,purpose=RODATA+LITERAL | **** ListGlobals "t8206.WB.obj",Global=0,Public=2,Extern=0,eXport=0,Import=0 | Beep.B16,[COMGROUP]:0000000Fh,scope='P' | Write.B16,[COMGROUP]:00000000h,scope='P' | |;; | |;; Create the second auxilliary OMF module "%test.EX.obj". | |%test.EX PROGRAM FORMAT=OMF,WIDTH=16,MODEL=TINY |[CODE] ::::Section changed. |0000: |Exit.B16:: PROC ; Display message "End", terminate Terminate the program by endless loop. |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.B16:: ; Display notification "End". |0018:F4 |.9:HLT ; Assume there is no OS to return. |0019:EBFD | JMP .9: ; Terminate in endless loop. |[BSS] ::::Section changed. |0000:.............. |.M:DB 7*BYTE ; Reserve space for ASCIIZ string "End" in [BSS] segment. |[CODE] ::::Section changed. |001B: | ENDP Exit.B16:: | | ENDPROGRAM %test.EX | **** ListMap "t8206.EX.obj",model=TINY,groups=1,segments=2,entry=,stack=[COMGROUP]:0000001Bh | [COMGROUP],FA=00000000h,RVA=00000000h,size=0000001Bh=27,group [CODE] [BSS] | [CODE],FA=0000007Dh,RVA=00000000h,size=0000001Bh=27,width=16,align=0010h,purpose=CODE | [BSS],FA=00000000h,RVA=00000000h,size=00000007h=7,width=16,align=0010h,purpose=BSS | **** ListGlobals "t8206.EX.obj",Global=0,Public=1,Extern=1,eXport=0,Import=0 | Exit.B16,[COMGROUP]:00000000h,scope='P' | Write.B16,[Write.B16]:00000000h,scope='E' | |;; | |;; Create auxilliary LIBOMF library "%test.lib" from two OMF modules. | |%test PROGRAM FORMAT=LIBOMF,WIDTH=16,MODEL=TINY | | LINK "%test.WB.obj", "%test.EX.obj" | | ENDPROGRAM %test |# I0560 Linking OMF module ".\t8206.WB.obj". |# I0560 Linking OMF module ".\t8206.EX.obj". | **** ListMap "t8206.lib",model=TINY,groups=0,segments=0,entry=,stack= | **** ListGlobals "t8206.lib",Global=0,Public=0,Extern=0,eXport=0,Import=0 | |;; | |;; Create the main COM program "%test.com". | |%test PROGRAM FORMAT=COM,WIDTH=16,MODEL=TINY |[CODE] ::::Section changed. |0000:90 | NOP ; Entry point of COM program is fixed at CS:100h. |0001:BE[0000] | MOV SI,Msg |0004:E8(0000) | CALL Write.B16:: |0007:E8(0000) | CALL Beep.B16:: |000A:E8(0000) | CALL Exit.B16:: | | LINK "%test.lib" | |;; Define Msg in [DATA] segment. |[DATA] ::::Section changed. |0000:3136626974205449~|Msg:DB '%^WIDTH[]bit %^MODEL %^FORMAT program "%^OUTFILE".',13,10,0 | | ENDPROGRAM %test |# I0561 Linking LIBOMF library ".\t8206.lib". | **** ListMap "t8206.com",model=TINY,groups=1,segments=5,entry=[COMGROUP]:00000100h,stack=[COMGROUP]:0000FFFEh | [COMGROUP],FA=00000000h,RVA=00000000h,size=00000197h=407,group [PSP] [CODE] [RODATA] [DATA] [BSS] | [PSP],FA=00000000h,RVA=00000000h,size=00000100h=256,width=0,align=0,purpose=PHDR | [CODE],FA=00000000h,RVA=00000100h,size=0000004Bh=75,width=16,align=0010h,purpose=CODE | [RODATA],FA=00000050h,RVA=00000150h,size=0000000Dh=13,width=16,align=0010h,purpose=RODATA | [DATA],FA=00000060h,RVA=00000160h,size=00000026h=38,width=16,align=0010h,purpose=DATA | [BSS],FA=00000090h,RVA=00000190h,size=00000007h=7,width=16,align=0010h,purpose=BSS | **** ListGlobals "t8206.com",Global=0,Public=3,Extern=0,eXport=0,Import=0 | Beep.B16,[COMGROUP]:0000011Fh,RVA=0000011Fh,scope='P' | Exit.B16,[COMGROUP]:00000130h,RVA=00000130h,scope='P' | Write.B16,[COMGROUP]:00000110h,RVA=00000110h,scope='P'
Expected messages t8206.out
I0180 Assembling source file "t8206.htm". I0270 Assembling source "t8206". I0310 Assembling source pass 1. I0330 Assembling source pass 2 - final. I0470 Assembling program "t8206.WB". "t8206.htm"{54} I0510 Assembling program pass 1. "t8206.htm"{54} I0510 Assembling program pass 2. "t8206.htm"{54} I0530 Assembling program pass 3 - final. "t8206.htm"{54} I0660 16bit TINY OMF file "t8206.WB.obj" created, size=206. "t8206.htm"{80} I0650 Program "t8206.WB" assembled in 3 passes with errorlevel 0. "t8206.htm"{80} I0470 Assembling program "t8206.EX". "t8206.htm"{90} I0510 Assembling program pass 1. "t8206.htm"{90} I0510 Assembling program pass 2. "t8206.htm"{90} I0530 Assembling program pass 3 - final. "t8206.htm"{90} I0660 16bit TINY OMF file "t8206.EX.obj" created, size=176. "t8206.htm"{105} I0650 Program "t8206.EX" assembled in 3 passes with errorlevel 0. "t8206.htm"{105} I0470 Assembling program "t8206". "t8206.htm"{115} I0510 Assembling program pass 1. "t8206.htm"{115} I0530 Assembling program pass 2 - final. "t8206.htm"{115} I0560 Linking OMF module ".\t8206.WB.obj". "t8206.htm"{117} I0560 Linking OMF module ".\t8206.EX.obj". "t8206.htm"{117} I0660 16bit TINY LIBOMF file "t8206.lib" created, size=1536. "t8206.htm"{117} I0650 Program "t8206" assembled in 2 passes with errorlevel 0. "t8206.htm"{117} I0470 Assembling program "t8206". "t8206.htm"{124} I0510 Assembling program pass 1. "t8206.htm"{124} I0510 Assembling program pass 2. "t8206.htm"{124} I0530 Assembling program pass 3 - final. "t8206.htm"{124} I0561 Linking LIBOMF library ".\t8206.lib". "t8206.htm"{135} I0660 16bit TINY COM file "t8206.com" created, size=134. "t8206.htm"{135} I0650 Program "t8206" assembled in 3 passes with errorlevel 0. "t8206.htm"{135} I0750 Source "t8206" (199 lines) assembled in 2 passes with errorlevel 0. I0860 Listing file "t8206.htm.lst" created, size=7013. I0990 EuroAssembler terminated with errorlevel 0.
Expected output file t8206. com
0000: 90 BE 60 01 E8 09 00 E8 15 00 E8 23 00 90 90 90  ¤¤`·¤·°¤·°¤#°¤¤¤
0010: 31 DB B4 0E FC AC 3C 00 74 04 CD 10 EB F7 C3 BE  1¤¤·¤¤<°t·¤·¤¤¤¤
0020: 52 01 E8 EB FF BE 50 01 E8 E5 FF C3 90 90 90 90  R·¤¤¤¤P·¤¤¤¤¤¤¤¤
0030: BE 90 01 C7 04 45 6E C7 44 02 64 20 C7 44 04 0A  ¤¤·¤·En¤D·d¯¤D·¬
0040: 0D C6 44 06 00 E8 C8 FF F4 EB FD 00 00 00 00 00  ·¤D·°¤¤¤¤¤¤°°°°°
0050: 07 00 42 65 65 70 69 6E 67 2E 2E 2E 00 00 00 00  ·°Beeping...°°°°
0060: 31 36 62 69 74 20 54 49 4E 59 20 43 4F 4D 20 70  16bit¯TINY¯COM¯p
0070: 72 6F 67 72 61 6D 20 22 74 38 32 30 36 2E 63 6F  rogram¯"t8206.co
0080: 6D 22 2E 0D 0A 00                                m".·¬°

▲Back to the top▲