PIC 18C Microcontoller Program Flow Method

Exception handling

Bob Ammerman [rammerman at prodigy.net] of RAm Systems says

The PIC18Cxx2 chips contain quite a few nice new features. One of the neatest is programmable access to the stack. This feature allows many powerful tricks.

Notes:

  1. this code has _NOT_ been tested!
  2. all multi-byte values are little-endian
  3. I assume the code space never exceeds 16 bits worth (which it never will on the 242, 252, 442 or 452 chips).
Exception handling (like C++) (or C's setjmp/longjmp)
; establish an exception handler
 CBLOCK
 EXCEPT_SP
 ENDC
some_routine:
; 'establish' the exception handler
 push ; make room for exception handler
 movlw low(exception_handler)
 movwf TOSL,A
 movlw high(exception_handler)
 movwf TOSH,A
 movff STKPTR,EXCEPT_SP
 .
 .
 rcall another_routine
; 'tear-down' the exception handler
 pop ; couldn't be simpler!
; at this point we can either return, or 'fall_thru' into the
; exception handler to perform actions that are needed whether
; or not an exception occurs
exception_handler:
 .
 .
 .
 return ; Returns to caller of 'some_routine'
another_routine:
 .
 .
 call yet_another
 .
 .
 btfsc SOMEVALUE,somebit,A ; Exceptional condition?
 bra not_except
 ; Next two instructions 'raise' the exception
 movff EXCEPT_SP,STKPTR
 return
not_except:
 return
yet_another:
 .
 .
 bc oops ; Ran into trouble
 return ; Normal return
oops:
 ; Next two instructions 'raise' the exception
 movff EXCEPT_SP,STKPTR
 return

file: /Techref/microchip/18c/excepts.htm, 1KB, , updated: 2000年6月30日 12:53, local time: 2025年9月3日 20:56,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/techref/microchip/18c/excepts.htm"> PIC 18C Microcontoller Program Flow Method for Exception handling</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here:
if you want a response, please enter your email address:
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /