diff code_part1/OSTC_code_asm_part1/customview.asm @ 119:f24137eb85de

Background debugger now shows STKPTR
author heinrichsweikamp
date Sun, 26 Dec 2010 18:34:28 +0100
parents 50a06adabc67
children 6a94f96e9cea
line wrap: on
line diff
--- a/code_part1/OSTC_code_asm_part1/customview.asm	Sun Dec 26 17:02:59 2010 +0100
+++ b/code_part1/OSTC_code_asm_part1/customview.asm	Sun Dec 26 18:34:28 2010 +0100
@@ -99,6 +99,7 @@
 	return
 
 customview_toggle:		; Yes, show next customview (and delete this flag)
+	ostc_debug	'X'		; Sends debug-information to screen if debugmode active
 	incf	menupos3,F			; Number of customview to show
 	movlw	d'4'				; Max number
 	cpfsgt	menupos3			; Max reached?
@@ -138,6 +139,7 @@
 
 customview_toggle_exit:
 	bcf		toggle_customview			; Clear flag
+	ostc_debug	'Y'		; Sends debug-information to screen if debugmode active
 	return