News:

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

RadASM 3.0 bugtest

Started by KetilO, May 31, 2010, 12:28:11 PM

Previous topic - Next topic

qWord

hi KetilO
I'm missing these feature of opening includes files by the context menu (right click on the filename/path). Are you planing to (re)add this feature?

regards, qWord
FPU in a trice: SmplMath
It's that simple!

farrier

KetilO,

I'm just starting to use 3.004 with fasm.  When I press the Assemble button, I get a MessageBox with:

"Error during process creation"
"fasm MyFileName.asm"

I've tried changing the [Environment], path variable
and the Assemble string in the Project Options dialog.
But nothing changes!

How is the command string constructed so that I can point to my fasm.exe file?

I really like the new look and layout!!!

farrier
It is a GOOD day to code!
Some assembly required!
ASM me!
With every mistake, we must surely be learning. (George...Bush)

KetilO

Thanks qWord

It will be added.

KetilO

KetilO

Hi farrier

You will get this message if the path environment variable is wrong.
Verify that it is correct and that you are changing it for fasm (3'rd pane in statusbar).

KetilO

KetilO

New upload. If you are updating, use Tools / Check for Updates.

Version 3.0.0.4 2010-06-17
--------------------------
o The properties toolbar now works.
o Changed dialogs font to Tahoma.
o The second pane of the statusbar now shows current edit mode.
o Added Open Include (Ctrl+Alt+O) to edit menu.
o Added accelerators to make menu.
o Fixed a project bug. Changes to the project was not always saved.
o Fixed bug in the tasm parser. Locals could be inherited from previous proc.
o Fixed a bug where changing a filename in project browser crashed RadASM.
o Fixed a bug with Open Include.

KetilO

farrier

KetilO,

The third pane in the statusbar shows "Fasm".

When I click on "Option", "Environment" the "Path" variable value is "C:\Program Files (x86)\Fasm"
which is what I have in the fasm.ini file.  This is where my fasm program is located.

Is there another place to make the change in path so that RadASM can find my fasm.exe file?

Thanks,

farrier
It is a GOOD day to code!
Some assembly required!
ASM me!
With every mistake, we must surely be learning. (George...Bush)

KetilO

Weird

You cold modify fasm.ini

[Make]
Make=GoRC,fasm,GoLink,

To:

Make=GoRC,C:\Program Files (x86)\fasm\fasm.exe,GoLink,

KetilO

qWord

an other missing feature:
There was this littel feature, that shows the number of current selected characters in the status bar.

regards and many thanks for your great work
qWord 
FPU in a trice: SmplMath
It's that simple!

farrier

KetilO,

That worked!  This is what works for me:

[Environment]
0=path,$A\..\fasm
1=include,$A\..\fasm\Include


[Make]
Debug=0
Run=0,'Cmd /k',''
Make=,$A\..\fasm\fasm.exe,,
Help=
0=Window no link,'/r "$R"',"$R.res",'"$C"',"$C.exe",'',,'',

Option/Environment
path=$A\..\fasm
include=$A\..\fasm\include

Project Options
Assemble:   "$C"
Output:      "$C.exe"


It is a GOOD day to code!
Some assembly required!
ASM me!
With every mistake, we must surely be learning. (George...Bush)

Ficko

Hi KetilO,

great work! :U

Can you put some more "RA" icons in the resource with different shades to choose from to make the desktop more distinguishable for different versions, instances?

donkey

Hi Ketil,

Is there a limit to the number of data types I can define in a languages ini file ? I am talking about the entry [Parse]|Data=. Also is there a way to make them case sensitive like the ^ does in the keyword lists ?

Edgar
"Ahhh, what an awful dream. Ones and zeroes everywhere...[shudder] and I thought I saw a two." -- Bender
"It was just a dream, Bender. There's no such thing as two". -- Fry
-- Futurama

Donkey's Stable

KetilO

Hi Ficko

Sorry, I am not an pixel artist. All my attempts to create icons turns out ugly.

KetilO

KetilO

Hi Edgar

It is limitted to the max number of characters GetPrivateProfileString can handle (32767).
However adding too many will slow down the parsing.
The recomended way is to create an api file (see the winasmType.api).
There is no way to make them case sensitive.

KetilO

Ficko

Quote from: KetilO on June 21, 2010, 07:07:49 AM
Sorry, I am not an pixel artist. All my attempts to create icons turns out ugly.

Me either but may someone can give you a hand with more dexterousness. :bg

I actually just meant different "shades". Like make one green, blue etc. :wink

KetilO

New upload. If you are updating, use Tools / Check for Updates.

Version 3.0.0.5 2010-06-21
--------------------------
o Nicer looking menu.
o Added ProjectZip addin.
o Fixed a property tool bug. Scrolling behaved weird when using the mouse wheel
  to scroll the list.

KetilO