mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-11-14 03:19:24 +00:00
9ba1e6a2f9
Multiple minor fixes to existing instructions. Moved x86 decoding tests in a separate directory & improved the test script.
8 lines
180 B
NASM
8 lines
180 B
NASM
bits 32
|
|
|
|
; These should operate on CR8, as per AMD hack to make CR8 accessible outside long mode.
|
|
db 0xF0
|
|
mov eax, cr0
|
|
db 0xF0
|
|
mov cr0, eax
|
|
|