码迷,mamicode.com
首页 > 数据库 > 详细

oracle汇编01

时间:2019-05-28 11:11:25      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:ant   eric   word   after   symbol   ref   class   ast   def   

1: / define numeric label "1"
one: / define symbolic label "one"
/ ... assembler code ...
jmp 1f / jump to first numeric label "1" defined
/ after this instruction
/ (this reference is equivalent to label "two")
jmp 1b / jump to last numeric label "1" defined
/ before this instruction
/ (this reference is equivalent to label "one")
1: / redefine label "1"
two: / define symbolic label "two"
jmp 1b / jump to last numeric label "1" defined
/ before this instruction
/ (this reference is equivalent to label "two")

2.There are fve classes of tokens:

Identifers (symbols)

Keywords
Numerical constants
String Constants
Operators

oracle汇编01

标签:ant   eric   word   after   symbol   ref   class   ast   def   

原文地址:https://www.cnblogs.com/xpylovely/p/10935805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!