News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Need help - could not open rsrc.rc

Started by v0x, May 30, 2006, 03:40:54 AM

Previous topic - Next topic

v0x

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.

hutch--

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.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

v0x

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

v0x

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 ?

hutch--

Sounds like you build it as gui rather than console mode. It must be built as a console mode app to show any output.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

v0x

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

Ossa

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
Website (very old): ossa.the-wot.co.uk

v0x

I've now finished to read the first tutorial thanks man !