Hello, I'm new to masm32 and need help, badly. I've installed it and these errors show up:
The ordinal 200/202 could not be located in the dynamic link library
C:\Windows\AppPatch\AcGeneral.DLL.
or AcLayers.DLL.
Will this affect the masm32's performance? I've an assignment to pass this friday and still have no clue on how to use masm.
I've tried some codes, not sure if they are masm32 codes and an error shows up:
Windows cannot find ':'. Make sure you typed the name correctly, and then try again.
This is the tester code that I used for hello word taken from this site
http://www.webalice.it/jj2006/Masm32_Tips_Tricks_and_Traps.htm to check if I've installed masm32 correctly.
include \masm32\include\masm32rt.inc
.data ; initialised variables
MyAppName db "Masm32:", 0
MyReal8 REAL8 123.456
.data? ; non-initialised (i.e. zeroed) variables
MyDword dd ?
.code
start:
invoke MessageBox, 0, chr$("A box, wow!"), addr MyAppName, MB_OK
mov eax, 123
exit
end start
Also, can I ask for tutorial sites, if you know any?
Is it not working because I'm using windows 8? or there's a problem with the code?
Thanks in advance...