Hi coders!
I want to know the "real wanted result" of a simple ASM function:
DS &3318-&3301+4*14I used 3 emulators with 3 different results!!!

WinAPE:
WinAPE Z80 Assembler V1.0.13
000001 0000 00 00 00 00 DS &3318-&3301+4*14
0004 00 00 00 00
....
0174 00 00 00 00
0178 00 00
378x "00" !!!
WinCPC:
000001 8000 00 00 00 00 ds &3318-&3301+4*14
000001 8004 00 00 00 00
....
000001 8040 00 00 00 00
000001 8044 00 00 00 00
000001 8048 00 00 00 00
000001 804C 00 00 00 79x "00"!!! (most exact because * should be calculated first but why 79?)
JavaCPC:
000001 0000 DS &3318-&3301+4*14
00 00 00 00
00 00 00 00
.......
00 00 00 00
Assembled in 0.047s from &0000 to &0126 length is &0126
294x "00"
(When I enable exact math parsing I get 73x "00")
So which is the correct value now???
Please help...