📄 testcomplexasm2.obs
字号:
unit testcomplexasm2;interface uses sysutils;type tmyclass=class(TObject)procedure
doasm;virtual;end;implementation uses db;procedure tmyclass.doasm;asm
mov edx,[eax]
mov ecx,dword ptr tfield.getdata
cmp dword ptr[edx+vmtoffset tfield.isblob],ecx
je @@alreadydone
mov ecx,dword ptr[edx+vmtoffset tfield.isblob]
mov ecx,dword ptr tfield.isblob
mov dword ptr[edx],ecx
@@alreadydone:
end;end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -