📄 sendmap.gml
字号:
.section END MAP Statement
.*
.mext begin
END MAP
.mext end
.np
The
.kw END MAP
statement is used in conjunction with the
.kw MAP
declarative statement.
The
.kw END MAP
statement marks the end of a
.kw MAP
structure.
The following example maps out a 4-byte integer on an Intel
80x86-based processor.
.exam begin
STRUCTURE /MAPINT/
UNION
MAP
INTEGER*4 LONG
END MAP
MAP
INTEGER*2 LO_WORD
INTEGER*2 HI_WORD
END MAP
MAP
INTEGER*1 BYTE_0
INTEGER*1 BYTE_1
INTEGER*1 BYTE_2
INTEGER*1 BYTE_3
END MAP
END UNION
END STRUCTURE
RECORD /MAPINT/ I
I%LONG = '01020304'x
PRINT '(2Z4)', I%LO_WORD, I%HI_WORD
END
.exam end
.np
For more information, see the chapter entitled :HDREF refid='frecord'..
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -