News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

New Project

Started by Jokaste, December 15, 2017, 11:27:31 PM

Previous topic - Next topic

Jokaste


For my new project I need assembler initialization files like the ones RadAsm had.
I can't download RadAsm because all the links are broken.
I don't want to download it because it's to easy to copy...
The program is not finished again, there a great collection of bugs.
The program can Open, Save, Search, Replace, Compile (rc/asm), link and build.
I need files for :
AsmC, JWAsm, Masm (32/64), Yasm, FAsm, GoRc, NAsm, Gas...
I would like to understand CvtRes, why using it.
I created a project with ProStart and I found it. Why?
The program will store the files in it and then create them at the first run.
The program does not need any dll.
It is portable.


I thank You for Your collaboration.

Kenavo
---------------------------
Grincheux / Jokaste

nidud

#1
deleted

hutch--

The attached exe runs on my win10.

CVTRES.EXE converts a RES file to an object module which the linker then links into the finished exe. From memory LINK.EXE will directly call it but I have always preferred to do the conversion seperately.

Jokaste

Thanks Hutch & Nidud.


I made this project with in mind reducing source program size. For this I put tabs to special positions for *.asm files; I Explain:
Normal Source Line : [LABEL:]..................[MNEMONIC1].........[MNEMONIC2]..............;[COMMENT]
With E: [LABEL:]_[MNEMONIC1]_[MNEMONIC2]_;[COMMENT]
"_" is a tab char [0x09)
Kenavo
---------------------------
Grincheux / Jokaste