Epson S1C62 Family Computer Hardware User Manual


 
Format
ICE CONTROL SOFTWARE ICS62XX
VIII-68 EPSON S1C62 FAMILY
DEVELOPMENT TOOL REFERENCE MANUAL
BRKSEL BREAK ADDRESS MODE SELECT
#BRKSEL,REM
#BRKSEL,CLR
Function After setting the break address condition (BA), the program runs until stopped by a break
hit; the settings then remain or clear the previously set BA condition. The clear mode (CLR
mode) is operative at power on. The BA condition remain mode (REM mode) is used when
multiple break conditions are set and the program runs to consecutive break points. The BA
condition clear mode (CLR mode) is used to debug when the break point is changed with
each break.
#BA,0100
#BRKSEL,REM ... Remain mode is set
#BC
BA 0100
:
#G
*PC=100
*EMULATION END STATUS = BREAK HIT ... Break is generated when break
*RUN TIME=10mS condition hits
#BA,200 ... New break condition is set
#BC
BA 0100 ... Pre-break condition remains
BA 0200
:
#BRKSEL,CLR ... Clear mode is set
#G
*PC=101
*EMULATION END STATUS = BREAK HIT ... Break condition hits
*RUN TIME=30mS
#BA,300 ... New break condition is set
#BC
BA 0300 ... Pre-break condition is canceled
:
#BA,350,3A0
#BC
BA 0300 ... After break condition remains
BA 0350
BA 03A0
#
Examples