16 lines
116 B
NASM
16 lines
116 B
NASM
|
.model tiny
|
||
|
.486p
|
||
|
smart
|
||
|
.code
|
||
|
|
||
|
org 0100h
|
||
|
|
||
|
start:
|
||
|
mov eax,cr0
|
||
|
or al,1
|
||
|
mov cr0,eax
|
||
|
|
||
|
db 0CBh
|
||
|
|
||
|
end start
|