Hi,
I found a book about assembly. This is my very first attempt in asm and i wanted to use MASM32. I just open the DEMO1 provided in your package and when I compile it it says:
http://www.geocities.com/voacrew/error.JPG
Could you help me to solve that problem? I really want to begin practicing asm! :)
Thank you.
Hi v0x,
Welcome on board. The example you tried to build does not have a resource file. Just look at the top of the source file for this info,
Quote
; Build this with the "Project" menu using
; "Console Assemble and Link"
Do this and it will build OK.
hello.exe :)
hey thank you ! :)
Do you have any good ressource for a beginner? I am competent at C but i've never done asm before. Do you have something up to date that would be good tutorial ? :)
Thx again hutch!
v0xy
lilttle quesiton again, about this program.
when i run it from ms dos using hello.exe it shows nothing to stdout.
however if i redirect the flow to a .txt using like: hello.ex >> lol.txt
i can see the "Hey, this actually works."
which comes from
; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
start: ; The CODE entry point to the program
print chr$("Hey, this actually works.",13,10)
exit
; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
How come there's nothing print on the screen using the first method ?
Sounds like you build it as gui rather than console mode. It must be built as a console mode app to show any output.
working just fine! there was other options in Project.
:thumbu :thumbu
Do you have any good ressource for a beginner? I am competent at C but i've never done asm before. Do you have something up to date that would be good tutorial ? :)
thx again,
v0x
Have you had a look at Iczelion's tutorials - they are aimed at people like yourself who have come from HLLs: http://win32assembly.online.fr/
Ossa
I've now finished to read the first tutorial thanks man !