Hello everyone, I have problem here.. I saw here topic which 1 guy posted and I though about it because it's really useful but compiler shows errors. Here's what I mean:
format PE GUI 4.0
include 'WIN32A.INC'
entry main
section '.data' data readable writeable
fbyte db "Hello",0x20
sbyte db "World!",0
result db fbyte,sbyte
section '.text' code readable executable
proc main
invoke MessageBox,0,result,result,MB_OK
ret
endp
section '.idata' import data readable
library user32,'user32.dll'
include 'API\USER32.INC'
why result variable can't define those two variables as one ?