cos2000v1/programs/pmode.asm

16 lines
101 B
NASM
Raw Normal View History

.model tiny
.486p
smart
.code
org 0100h
start:
mov eax,cr0
or al,1
mov cr0,eax
db 0CBh
end start