offset就是把偏移地址取出来
;offset can get ip address in front of the : assume cs:code code segment start: mov ax,offset start s:mov ax,offset s code ends end start
可以看这段代码,offset start就是把start开始的偏移地址得到,offset s同理把s的偏移地址得到
这两句编译出来就是实打实的偏移地址
标签:汇编,code,用法,start,地址,偏移,offset,ax From: https://www.cnblogs.com/Frank-dev-blog/p/16921649.html