feat: mise à jour du code pour compilation sur LZASM en stdcall

This commit is contained in:
Nicolas Hordé 2007-03-23 16:53:04 +00:00
parent c83c7cf1fe
commit 3218661366
1 changed files with 16 additions and 9 deletions

View File

@ -1,15 +1,22 @@
.model tiny
.486p
smart
.code
model tiny,stdcall
p586N
locals
jumps
codeseg
option procalign:byte
include "..\include\mem.h"
include "..\include\divers.h"
org 0h
start:
mov eax,cr0
or al,1
mov cr0,eax
header exe <"CE",1,0,0,,,,offset realstart>
realstart:
mov eax,cr0
or al,1
mov cr0,eax
retf
db 0CBh
end start