Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用带有 AFD 调试器的 NASM 分析 8086 代码。我正在尝试使用 RDTSC(0x0f31) 指令,但是通过从旧时间戳中减去新时间戳获得的值非常大,并且一直在增加。我不知道问题是什么。这是代码:
[org 0x100] CPUID RDTSC xor bx,bx MOV ECX,EAX RDTSC SUB EAX,ECX mov ax,4c00h int 21h