Proteus-ISIS Internal Exception error

Status
Not open for further replies.

18F4520

Junior Member level 1
Joined
Jan 29, 2014
Messages
15
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
82
Hi, i am getting this strange error:
Internal Exception: access violation in module 'UNKNOWN' 00000000.

It happens when i want to execute conversions library routines from mikroBasic (WordToStr, IntToStr...). I simulate MCU PIC 18F4520.

I have done it before successfully, but now i can't 8-O

So now whenever i put :

in declaration section:
dim aaaa as integer
dim eeee as string[6]

main section:
IntToStr(aaaa, eeee)

I get this error in ISIS.

Any ideas?
 

Solved:

in declaration section:
dim aaaa as integer
dim aaaa2 as integer
dim eeee as string[6]

main section:
aaaa2 = aaaa
IntToStr(aaaa2, eeee)

Now it works fine.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…