操作符offset
本文最后更新于 2020年4月7日 下午
offset是由编译器处理的符号,它的功能是获得标号的偏移地址
例1
2
3
4code segment
start: mov ax,offset start//相当于mov ax,0
s: mov ax,offset s//相当于mov ax,3
code ends
上面的程序中offset获得了start和s的偏移地址0和3
操作符offset
https://www.xinhecuican.tech/post/59431.html