feat: mise à jour du code pour compilation sur LZASM en stdcall
This commit is contained in:
parent
c83c7cf1fe
commit
3218661366
|
@ -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:
|
||||
header exe <"CE",1,0,0,,,,offset realstart>
|
||||
|
||||
realstart:
|
||||
mov eax,cr0
|
||||
or al,1
|
||||
mov cr0,eax
|
||||
retf
|
||||
|
||||
db 0CBh
|
||||
|
||||
end start
|
||||
|
|
Loading…
Reference in New Issue