mylexer.v

来自「自动生成工具lex yacc构造的小计算器」· Verilog 代码 · 共 116 行

V
116
字号
#############################################################################
#                     U N R E G I S T E R E D   C O P Y
# 
# You are on day 604 of your 30 day trial period.
# 
# This file was produced by an UNREGISTERED COPY of Parser Generator. It is
# for evaluation purposes only. If you continue to use Parser Generator 30
# days after installation then you are required to purchase a license. For
# more information see the online help or go to the Bumble-Bee Software
# homepage at:
# 
# http://www.bumblebeesoftware.com
# 
# This notice must remain present in the file. It cannot be removed.
#############################################################################

#############################################################################
# mylexer.v
# Lex verbose file generated from mylexer.l.
# 
# Date: 12/05/07
# Time: 16:24:57
# 
# ALex Version: 2.07
#############################################################################


#############################################################################
# Expressions
#############################################################################

    1  [0-9]+

    2  "+"

    3  "-"

    4  "*"

    5  "("

    6  ")"

    7  "."


#############################################################################
# States
#############################################################################

state 1
	INITIAL

	0x28               goto 3
	0x29               goto 4
	0x2a               goto 5
	0x2b               goto 6
	0x2d               goto 7
	0x2e               goto 8
	0x30 - 0x39 (10)   goto 9


state 2
	^INITIAL

	0x28               goto 3
	0x29               goto 4
	0x2a               goto 5
	0x2b               goto 6
	0x2d               goto 7
	0x2e               goto 8
	0x30 - 0x39 (10)   goto 9


state 3
	match 5


state 4
	match 6


state 5
	match 4


state 6
	match 2


state 7
	match 3


state 8
	match 7


state 9
	0x30 - 0x39 (10)   goto 9

	match 1


#############################################################################
# Summary
#############################################################################

1 start state(s)
7 expression(s), 9 state(s)


#############################################################################
# End of File
#############################################################################

⌨️ 快捷键说明

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