If you are not using a 64bit Windows, you can add the following two lines to your batch file
and you will be able to verify that the flash has worked fine.
Look for the label :PASS5X then add the following two lines:
chop now.bin 256000
chop mod.bin 256000
Just before the compare QFC line, so the complete section will look like this:
QUOTE
@echo.
@echo Checking FLASHed version...
@echo.
memdump %1 12200 8 8000 now.bin
copy now.bin X21-%2.OPA\now.bin /v /y > nul
patch a now.bin xtrmDK.ppf > nul
qfc now.bin was.bin > nul
if errorlevel 1 goto PASS5X
goto NOGO
:PASS5X
chop now.bin 256000
chop mod.bin 256000
qfc now.bin mod.bin > nul
if errorlevel 1 goto REDO5X
@echo.
@echo PASS: Flashing of XTREME firmware is 100
@echo.
@echo DONE: You can now shut-down your system!
@echo.
goto END