News:

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

newbe - question i dont understand

Started by umen, September 10, 2005, 03:27:00 PM

Previous topic - Next topic

umen

as part of my learning curve ( im learing alone ) i got this question i dont understand mybe you could help me here .

write macro that its call is :
LIST 100,SPACE

and the macro extension is :
SPACE DW ?
            DW OFFSET SPACE +4
            DW ?
            DW OFFSET SPACE +8
            .
            .
            .
            .
            .
            .
            DW ?
            DW OFFSET SPACE +396
            DW ?
            SW -1


what that means?
thanks

ToutEnMasm

Hello,
LIST seems to be a MACRO and you have to search something like that:
            LIST MACRO Number:REQ,Label:REG
            ......
           LIST ENDM

SPACE seems to be a label,not a macro,it is the adress of an adress table.
                   
                  ToutEnmasm

umen

can i find somewhere example of this kind of macro?

ToutEnMasm

Begin with the masm reference help file and study the examples of masm.
Study the macro before to know the langage is vasted time.
The directory masm32\macros  is the place where to find usefull macros.
                          ToutEnmasm