debug_handler.cmd

来自「openocd是比较好的调试工具软件,支持wiggle调试arm,也支持其他调试」· CMD 代码 · 共 50 行

CMD
50
字号
/* identify the Entry Point  */ENTRY(reset_handler)/* specify the mini-ICache memory areas  */MEMORY {	mini_icache_0 (x)  				: ORIGIN = 0x0, LENGTH = 1024	/* first part of mini icache (sets 0-31) */	mini_icache_1 (x)  				: ORIGIN = 0x400, LENGTH = 1024	/* second part of mini icache (sets 0-31) */}/* now define the output sections  */SECTIONS {	.part1 :	{		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		*(.part1)	} >mini_icache_0	.part2 :	{		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		LONG(0)		*(.part2)		FILL(0x0)	} >mini_icache_1	/DISCARD/ :	{		*(.text)		*(.glue_7)		*(.glue_7t)		*(.data)		*(.bss)	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?