当前位置: 代码迷 >> 综合 >> 【转载】Source Insight 4.0配置支持汇编-实现函数跳转
  详细解决方案

【转载】Source Insight 4.0配置支持汇编-实现函数跳转

热度:94   发布时间:2023-09-14 04:41:04.0

第一步:

在官网下载arm汇编语言支持包ARM.CLF:https://www.sourceinsight.com/download/custom-languages/
【转载】Source Insight 4.0配置支持汇编-实现函数跳转

第二步:

导入下载的文件:点击工具栏Options -> Preference -> Language -> Import然后选择刚刚下载的文件(对应下图的第三步)
【转载】Source Insight 4.0配置支持汇编-实现函数跳转
再新建一个文本文档,输入以下内容,在上图的第6步导入该文件

!, Delimiter
#, Delimiter
%, Delimiter
&, Delimiter
', Delimiter
(, Delimiter
), Delimiter
*, Delimiter
+, Delimiter
",", Delimiter
-, Delimiter
.align, Keyword
.ascii, Keyword
.BREAK, Keyword
.bss, Keyword
.byte, Keyword
.CODE, Keyword
.CONST, Keyword
.CONTINUE, Keyword
.CREF, Keyword
.data, Keyword
.DATA?, Keyword
.define, Keyword
.ELSE, Keyword
.ELSEIF, Keyword
.ENDIF, Keyword
.ENDW, Keyword
.ERR, Keyword
.ERRB, Keyword
.ERRDEF, Keyword
.ERRDEFI, Keyword
.ERRE, Keyword
.ERRIDNI, Keyword
.ERRNB, Keyword
.ERRNDEF, Keyword
.ERRNZ, Keyword
.fill, Keyword
.globl, Keyword
.IF, Keyword
.long, Keyword
.MODEL, Keyword
.NOCREF, Keyword
.quad, Keyword
.RADIX, Keyword
.REPEAT, Keyword
.STACK, Keyword
.text, Keyword
.UNTIL, Keyword
.UNTILCXZ, Keyword
.WHILE, Keyword
.word, Keyword
/, Delimiter
:, Delimiter
;, Delimiter
<, Delimiter
=, Delimiter
>, Delimiter
?, Delimiter
@CATSTR, Keyword
@INSTR, Keyword
@SIZESTR, Keyword
@SUBSTR, Keyword
define, Keyword
elif, Directive
else, Directive
endif, Directive
if, Directive
ifdef, Directive
defined, Directive
ifndef, Directive
include, Keyword
pragma, Keyword
undef, Keyword

     
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73

第三步:

双击ARM Assembly配置汇编支持的注释符
【转载】Source Insight 4.0配置支持汇编-实现函数跳转

第四步:

自定义解析扩展

([a-zA-z_][A-Za-z0-9_]+):
#define[\s\t]+([\w]+)

     
  • 1
  • 2

【转载】Source Insight 4.0配置支持汇编-实现函数跳转
【转载】Source Insight 4.0配置支持汇编-实现函数跳转

第五步:

允许通过不同的语言类型搜索标签 (实现汇编函数跳转)
【转载】Source Insight 4.0配置支持汇编-实现函数跳转

第六步:

添加汇编规则:点击工具栏的Option -> File Type Options
【转载】Source Insight 4.0配置支持汇编-实现函数跳转

  相关解决方案