Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Proteus-ISIS Internal Exception error

Status
Not open for further replies.

18F4520

Junior Member level 1
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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top