Commit 7dde4eb9 authored by Richard Levitte's avatar Richard Levitte
Browse files

nasm can compile for Borland C

parent 69c8c561
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ extern "C" {
#define BN_BYTES	4
#define BN_BITS2	32
#define BN_BITS4	16
#ifdef _MSC_VER
#if defined(_MSC_VER) || defined(__BORLANDC__)
/* VC++ doesn't like the LL suffix */
#define BN_MASK		(0xffffffffffffffffL)
#else
+2 −2
Original line number Diff line number Diff line
@@ -52,9 +52,9 @@ $lfile='';
$shlib_ex_obj="";
$app_ex_obj="c0x32.obj"; 

$asm='n_o_T_a_s_m';
$asm='nasmw -f obj';
$asm.=" /Zi" if $debug;
$afile='/Fo';
$afile='-o';

$bn_mulw_obj='';
$bn_mulw_src='';