Files
Gen4_R-Car_Trace32/2_Trunk/demo/practice/etc/toolbar_skipnextinstruction.cmm
2025-10-14 09:52:32 +09:00

23 lines
755 B
Plaintext

; --------------------------------------------------------------------------------
; @Title: Add toolbar button to skip next instruction
; @Description: Use to skip e.g. hard-coded breakpoints in memory.
; @Author: REI
; @Copyright: (C) 1989-2018 Lauterbach GmbH, licensed for use with TRACE32(R) only
; --------------------------------------------------------------------------------
; $Id: toolbar_skipnextinstruction.cmm 13040 2018-08-22 11:50:08Z rweiss $
MENU.ReProgram
(
ADD
TOOLBAR
(
TOOLITEM "Skip next instruction" "[=7VZXKRGuhn3Bd0E0WdvWNZoRjStUVUBj0]"
(
PRINT "Skipping over instruction """ STRING.TRIM(DISASSEMBLE.ADDRESS(PP())) """ at address " PP()
Register.Set PP PP()+ADDRESS.INSTR.LEN(PP())
)
)
)
ENDDO