【发布时间】:2014-07-08 02:44:59
【问题描述】:
我们尝试在 ASN1 中创建一个宏,但编译器抛出以下错误:
line 6 (BIGINTMACRO): A0256W: 'BigIntValue' is referenced, but is not defined.
这是我们的代码:
BIGINTMACRO DEFINITIONS ::=
BEGIN
BIGINT MACRO ::=
BEGIN
TYPE NOTATION ::= <type ::= INTEGER>
VALUE NOTATION ::= value (VALUE BigIntValue)
BigIntValue ::= Int1 Int2
Int1 ::= number
Int2 ::= number
END
END
【问题讨论】: