t8345.asm
EUROASM DUMP=ON, DUMPALL=YES, DUMPWIDTH=32, \ LIST=ON, LISTVAR=YES, LISTMACRO=YES t8345 PROGRAM FORMAT=BIN, LISTMAP=OFF, LISTGLOBALS=OFF Fill %MACRO Where, Stuff=0 ; Definition of macro Fill. MOV %Where,%Stuff %ENDMACRO Fill ;; invocations of macro Fill: Fill [Counter], Stuff=255 ; Will be assembled as MOV [Counter],255 Fill EBX ; Will be assembled as MOV EBX,0 Counter DW ENDPROGRAM t8345
t8345.asm.lst
t8345.out
I0180 Assembling source file "t8345.asm".
I0270 Assembling source "t8345".
I0310 Assembling source pass 1.
I0330 Assembling source pass 2 - final.
I0470 Assembling program "t8345". "t8345.asm"{3}
I0510 Assembling program pass 1. "t8345.asm"{3}
I0510 Assembling program pass 2. "t8345.asm"{3}
I0510 Assembling program pass 3. "t8345.asm"{3}
I0530 Assembling program pass 4 - final. "t8345.asm"{3}
I0660 16bit TINY BIN file "t8345.bin" created, size=12. "t8345.asm"{11}
I0650 Program "t8345" assembled in 4 passes with errorlevel 0. "t8345.asm"{11}
I0750 Source "t8345" (11 lines) assembled in 2 passes with errorlevel 0.
I0860 Listing file "t8345.asm.lst" created, size=1357.
I0990 EuroAssembler terminated with errorlevel 0.