mikroListExporter - bit position

Post your requests and ideas on the future development of mikroPascal PRO for PIC.
Post Reply
Author
Message
VCC
Posts: 463
Joined: 08 Jun 2009 18:31
Location: Romania

mikroListExporter - bit position

#1 Post by VCC » 01 Apr 2011 19:16

Hi mikroe team,
may we have the position of the bit variables listed ? At the moment, there is no way to get the position of each bit variable in a memory location, from the listing.
The following variables are declared in a particular order:

Code: Select all

var
  ABitVar1: Bit;
  ABitVar2: Bit;
  ABitVar3: Bit;
  ABitVar4: Bit;
  ABitVar5: Bit;
  ABitVar6: Bit;
and in the listing, they are shown in a different order:

Code: Select all

0x0015       [0]    _ABitVar2
0x0015       [0]    _ABitVar1
0x0015       [0]    _ABitVar6
0x0015       [0]    _ABitVar5
0x0015       [0]    _ABitVar3
0x0015       [0]    _ABitVar4
The bit position can be a number after address:

Code: Select all

0x0015.0     [0]    _ABitVar2
0x0015.1     [0]    _ABitVar1
0x0015.2     [0]    _ABitVar6
0x0015.3     [0]    _ABitVar5
0x0015.4     [0]    _ABitVar3
0x0015.5     [0]    _ABitVar4
or another column:

Code: Select all

0x0015       [0]<0> _ABitVar2
0x0015       [0]<1> _ABitVar1
0x0015       [0]<2> _ABitVar6
0x0015       [0]<3> _ABitVar5
0x0015       [0]<4> _ABitVar3
0x0015       [0]<5> _ABitVar4
Any solution is appreciated.
Thank you :D

User avatar
filip
mikroElektronika team
Posts: 11874
Joined: 25 Jan 2008 09:56

Re: mikroListExporter - bit position

#2 Post by filip » 04 Apr 2011 12:53

Hi,

I have passed this wish to our developers.
Thank you for your suggestion.

Regards,
Filip.

VCC
Posts: 463
Joined: 08 Jun 2009 18:31
Location: Romania

Re: mikroListExporter - bit position

#3 Post by VCC » 04 Apr 2011 16:33

Thank you Filip :D

Post Reply

Return to “mikroPascal PRO for PIC Wish List”