Proteus x Mplab Source Code

Thread Starter

Dragnovith

Joined Apr 16, 2021
22
Hi guys. What is the difference between these two procedures for the reset and interrupt vector. One in mplab and one in the Proteus?
Code:
org 0x00   ;reset vector
goto Start 

org 0x04   ;interruption vector
goto Start
Code:
PGM code 0x0
    Goto Start
ORG 4
;some code here
PGM code
Start
 
Top