2007-03-23 17:53:04 +01:00
|
|
|
model tiny,stdcall
|
|
|
|
p586N
|
|
|
|
locals
|
|
|
|
jumps
|
|
|
|
codeseg
|
|
|
|
option procalign:byte
|
|
|
|
|
|
|
|
include "..\include\mem.h"
|
|
|
|
include "..\include\divers.h"
|
2004-06-12 23:34:04 +02:00
|
|
|
|
2004-11-19 18:23:06 +01:00
|
|
|
org 0h
|
2004-06-12 23:34:04 +02:00
|
|
|
|
|
|
|
start:
|
2007-03-23 17:53:04 +01:00
|
|
|
header exe <"CE",1,0,0,,,,offset realstart>
|
|
|
|
|
|
|
|
realstart:
|
|
|
|
mov eax,cr0
|
|
|
|
or al,1
|
|
|
|
mov cr0,eax
|
|
|
|
retf
|
2004-06-12 23:34:04 +02:00
|
|
|
|
|
|
|
|