flat assembler
Message board for the users of flat assembler.

Index > Projects and Ideas > FASMWADD 0.02d Keyword Highlighting (Updated 22/02/2007)

Goto page Previous  1, 2
Author
Thread Post new topic Reply to topic
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 03 Jan 2007, 08:54
Thanks ozzy, need to find some more time to do this. I was wondering what would be the best way of utilising memory - tomasz, should i use the FASMW allocated memory or allocate more on my own?
Post 03 Jan 2007, 08:54
View user's profile Send private message MSN Messenger Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 22 Feb 2007, 12:06
TmX, I've added the minimize to tray icon feature to 0.02d.

Cheers. (Download from first post)
Post 22 Feb 2007, 12:06
View user's profile Send private message MSN Messenger Reply with quote
TmX



Joined: 02 Mar 2006
Posts: 843
Location: Jakarta, Indonesia
TmX 22 Feb 2007, 13:50
Raedwulf wrote:
TmX, I've added the minimize to tray icon feature to 0.02d.

Cheers. (Download from first post)


Thanks Very Happy
BTW, I use WinMerge like you, but unfortunately my FASMW always crashes.
Probably it's not a mere copy-pasting problem Laughing
Post 22 Feb 2007, 13:50
View user's profile Send private message Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 22 Feb 2007, 16:28
TmX wrote:

Thanks Very Happy
BTW, I use WinMerge like you, but unfortunately my FASMW always crashes.
Probably it's not a mere copy-pasting problem Laughing


It was for me ^^ Very Happy

_________________
Raedwulf
Post 22 Feb 2007, 16:28
View user's profile Send private message MSN Messenger Reply with quote
hidden



Joined: 14 Feb 2007
Posts: 49
hidden 05 Mar 2007, 23:50
Greate addition!!! Smile , but...

1) Instructions doesn't get Highlighted if they follows the label, like this:
Code:
        call @f
 @@:    pop ebp    


2) Would be better, if labels after jmp, jxx & call be Highlighted.

And how to add user keywords? Is "_key_color_user_defined_1" for this? How to use it?

I would like to add different kind of jumps by different color, like in OllyDbg, and also macro-defined keywords.

Anyway, thanks greate addition!
Post 05 Mar 2007, 23:50
View user's profile Send private message Reply with quote
hidden



Joined: 14 Feb 2007
Posts: 49
hidden 06 Mar 2007, 19:00
It's crashes while I scrolling down my source Sad


Description:
Download
Filename: 111.ASM
Filesize: 7.72 KB
Downloaded: 824 Time(s)

Post 06 Mar 2007, 19:00
View user's profile Send private message Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 07 Mar 2007, 13:54
hidden wrote:
Greate addition!!! Smile , but...

1) Instructions doesn't get Highlighted if they follows the label, like this:
Code:
        call @f
 @@:    pop ebp    


2) Would be better, if labels after jmp, jxx & call be Highlighted.

And how to add user keywords? Is "_key_color_user_defined_1" for this? How to use it?

I would like to add different kind of jumps by different color, like in OllyDbg, and also macro-defined keywords.

Anyway, thanks greate addition!


1.) Yes, indeed -> I will fix that
2.) I haven't implemented a label-table so it won't work yet...

User keywords :S, work-in-progress ^^.

_________________
Raedwulf
Post 07 Mar 2007, 13:54
View user's profile Send private message MSN Messenger Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 07 Mar 2007, 13:57
hidden wrote:
It's crashes while I scrolling down my source Sad


Couldn't manage to duplicate it. My next minor-update should come soon.
That might fix it Razz. I'm implementing a recent-files list.

_________________
Raedwulf
Post 07 Mar 2007, 13:57
View user's profile Send private message MSN Messenger Reply with quote
vid
Verbosity in development


Joined: 05 Sep 2003
Posts: 7105
Location: Slovakia
vid 07 Mar 2007, 16:30
Quote:
I haven't implemented a label-table so it won't work yet...
you could do it like new IDA:
find which word you are on, and highlight all same words. So if you are on EAX, all "EAX" words will be highlighted.
Post 07 Mar 2007, 16:30
View user's profile Send private message Visit poster's website AIM Address MSN Messenger ICQ Number Reply with quote
hidden



Joined: 14 Feb 2007
Posts: 49
hidden 07 Mar 2007, 19:00
Quote:
2.) I haven't implemented a label-table so it won't work yet...
I mean highlight like label, anything after jmp, jxx and call except registers and delimiters.

Added:
I thick something wrong here:
Code:
        dec     edi ; *
        pop     ecx
        mov     ebx, characters
        add     ecx, edx
        jnz     .check_character ; is here should be? .scan_syntax    
Code:
        ;dec     edi
        pop     ecx
        mov     ebx, characters
        add     ecx, edx
        jnz     .scan_syntax;.check_character    

This highlights instructions like "rep stosb", but is doesn't fix problem with my source Sad

Added:
It crashes when line longer then 258 characters.
Post 07 Mar 2007, 19:00
View user's profile Send private message Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 16 Mar 2007, 10:13
Ok found it, in proc fasm_syntax , replace all instances of cmp dl with cmp edx. It will then work like a dream Very Happy.
Post 16 Mar 2007, 10:13
View user's profile Send private message MSN Messenger Reply with quote
hidden



Joined: 14 Feb 2007
Posts: 49
hidden 17 Mar 2007, 15:04
Raedwulf wrote:
Ok found it, in proc fasm_syntax , replace all instances of cmp dl with cmp edx. It will then work like a dream Very Happy.
Not really, it's still crashing, but I'm using it any way
Screen

_________________
Image Lang: (eng|рус)
Post 17 Mar 2007, 15:04
View user's profile Send private message Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 20 Mar 2007, 09:54
:S not sure why -> could you send me an example asm attachment? e.g. 111.asm?
Post 20 Mar 2007, 09:54
View user's profile Send private message MSN Messenger Reply with quote
hidden



Joined: 14 Feb 2007
Posts: 49
hidden 20 Mar 2007, 14:35
Raedwulf wrote:
:S not sure why -> could you send me an example asm attachment? e.g. 111.asm?
Already, 8 posts up Smile

_________________
Image Lang: (eng|рус)
Post 20 Mar 2007, 14:35
View user's profile Send private message Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  
Goto page Previous  1, 2

< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.