操作符offset
offset是由编译器处理的符号,它的功能是获得标号的偏移地址
例code
start: mov ax,offset start//相当于mov ax,0
s: mov ax,offset s//相当于mov ax,3
code ends
上面的程序中offset获得了start和s的偏移地址0和3
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment