Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1782 → Rev 1783

/svarlang.lib/trunk/history.txt
1,5 → 1,5
2024xxxx
- replaced inline _asm by pragma aux for more compact code (open watcom only)
20240227
- replaced inline _asm by pragma aux (more compact code, open watcom only)
 
20230730
- dropped svarlang_autoload() (replaced by more specialized functions below)
/svarlang.lib/trunk/makefile
1,6 → 1,6
#
# make instructions to build svarlang and tlumacz.exe with OpenWatcom
# Copyright (C) 2021-2023 Mateusz Viste
# Copyright (C) 2021-2024 Mateusz Viste
#
 
ALLBIN = svarlngs.lib svarlngc.lib svarlngm.lib svarlngl.lib tlumacz.exe
/svarlang.lib/trunk/svarlang.c
89,7 → 89,7
"mov ax, 0x3D00" /* open file, read-only (fname at DS:DX) */ \
"int 0x21" \
"jnc DONE" \
"xor ax, ax" \
"xor ax, ax" /* return 0 on error */ \
"DONE:" \
"pop ds" \
parm [es dx] \
/svarlang.lib/trunk/svarlang.h
1,7 → 1,7
/* This file is part of the svarlang project and is published under the terms
* of the MIT license.
*
* Copyright (C) 2021-2023 Mateusz Viste
* Copyright (C) 2021-2024 Mateusz Viste
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
26,7 → 26,7
#define SVARLANG_H
 
/* library version */
#define SVARLANGVER "20230730"
#define SVARLANGVER "20240227"
 
/* returns a pointer to a string with the SvarLANG's library version,
* independently of the SVARLANGVER string above. */