The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => Topic started by: 3070 on March 16, 2009, 03:52:01 PM

Title: Radasm preprocess
Post by: 3070 on March 16, 2009, 03:52:01 PM
Hi,

Is there any way to make Radasm passes the asm file's to some program before assembling it?

Thanks
Title: Re: Radasm preprocess
Post by: BogdanOntanu on March 16, 2009, 03:57:42 PM
Quote from: 3070 on March 16, 2009, 03:52:01 PM
Hi,

Is there any way to make Radasm passes the asm file's to some program before assembling it?

Thanks

RadAsm is and IDE not an assembler. Hence RadAsm does not assemble the .asm file. Instead RadAsm will invoke the traget assembler on the .asm file and show you the results.

RadAsm does support plug-ins and has the source of some sample simple plug-in to show how this is done.

AFAIK the plug-in can access the source and change it "as it likes"...


Title: Re: Radasm preprocess
Post by: Mark Jones on March 16, 2009, 06:14:45 PM
Quote from: 3070 on March 16, 2009, 03:52:01 PM
Is there any way to make Radasm [pass] the asm [file] to some program before assembling it?

Yes, create a batch file and call that from the Project Options (instead of the assembler.)
Title: Re: Radasm preprocess
Post by: 3070 on March 17, 2009, 12:59:49 AM
Thanks!