一个表示地址的标志符(Specifiers),如果表示的是数据的地址,则称为变量(Variable);如果表示的是代码的地址,则称为标号(Label):
一、变量的定义:
1、变量的类型(根据变量的空间长度划分):
Byte(1 Byte)、Word(2 Bytes)、DWord(4 Bytes)、FWord(6 Bytes)、QWord(8 Bytes)、TByte(10 Bytes)。
2、变量的定义:
定义变量的语法:[name] directive initializer[,initializer]...
I、directive有下面6种:
DB(Define byte)
DW(Define word)
DD(Define doubleword)
DF(Define farword)
DQ(Define quadword)
DT(Define 10-byte)
II、整型的定义:
DW、DD、DQ可以定义整型,DF一般定义浮点型,DT定义BCD型。
DD表示整数的内存模型:
标签:标号,定义,Masm,Bytes,Define,DD,变量 From: https://www.cnblogs.com/meizhouxiang/p/16848160.html