Browse Source

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

feature/test
Nicolas Hordé 17 years ago
parent
commit
85ea3e1514
  1. 37
      programs/exem-lib.asm

37
programs/exem-lib.asm

@ -1,25 +1,24 @@
.model tiny
.486
smart
.code
org 0h
include ..\include\mem.h
model tiny,stdcall
p586N
locals
jumps
codeseg
option procalign:byte
start:
header exe <,1,0,,,offset imports,offset exports,>
include "..\include\mem.h"
include "..\include\divers.h"
org 0h
getvar2:
mov ax,0
int 16h
retf
start:
header exe <"CE",1,0,0,offset exports,,,>
waitkey:
mov ax,0
int 16h
retf
imports:
exporting
exports:
db "waitkey",0
dw getvar2
dw 0
end start
declare waitkey
ende

Loading…
Cancel
Save