2011-01-28 14:00:06 +01:00
|
|
|
use32
|
2020-11-02 19:44:51 +01:00
|
|
|
org 0
|
2011-01-28 14:00:06 +01:00
|
|
|
db 'MENUET01'
|
2020-11-02 19:44:51 +01:00
|
|
|
dd 1
|
|
|
|
dd @Kolibri@Main$qv
|
2011-01-28 14:00:06 +01:00
|
|
|
dd I_END
|
2020-11-24 16:42:12 +01:00
|
|
|
dd U_END+STACKSIZE ;+HEAPSIZE
|
2011-01-28 14:00:06 +01:00
|
|
|
dd U_END+STACKSIZE
|
2020-11-24 16:42:12 +01:00
|
|
|
if defined @Kolibri@CommandLine
|
|
|
|
dd @Kolibri@CommandLine
|
|
|
|
else
|
|
|
|
dd 0
|
|
|
|
end if
|
|
|
|
if defined @Kolibri@CurrentDirectoryPath
|
|
|
|
dd @Kolibri@CurrentDirectoryPath
|
|
|
|
else
|
|
|
|
dd 0
|
|
|
|
end if
|
2011-01-28 14:00:06 +01:00
|
|
|
|
2020-11-13 12:22:40 +01:00
|
|
|
include "..\..\KOSfuncs.inc"
|
2020-11-10 13:19:15 +01:00
|
|
|
include "..\..\proc32.inc"
|
2020-11-24 16:42:12 +01:00
|
|
|
include "..\..\macros.inc"
|
|
|
|
include "..\..\dll.inc"
|
|
|
|
include "..\..\load_lib.mac"
|
2020-11-10 13:19:15 +01:00
|
|
|
|
2011-01-28 14:00:06 +01:00
|
|
|
ptr equ
|
|
|
|
offset equ
|
|
|
|
short equ
|
|
|
|
tbyte equ tword
|
|
|
|
|
|
|
|
PTR equ
|
|
|
|
OFFSET equ
|
|
|
|
SHORT equ
|
|
|
|
TBYTE equ TWORD
|
|
|
|
|
|
|
|
macro movsb a,b
|
|
|
|
{
|
|
|
|
if a eq & b eq
|
|
|
|
movsb
|
|
|
|
else
|
|
|
|
movsx a,b
|
|
|
|
end if
|
|
|
|
}
|
|
|
|
|
|
|
|
macro movsw a,b
|
|
|
|
{
|
|
|
|
if a eq & b eq
|
|
|
|
movsw
|
|
|
|
else
|
|
|
|
movsx a,b
|
|
|
|
end if
|
|
|
|
}
|
|
|
|
|
|
|
|
macro segment name {}
|
|
|
|
|
|
|
|
macro endseg name {}
|