Commit 65b8ca07 authored by Ben Laurie's avatar Ben Laurie
Browse files

Tidy up asm stuff.

parent 55a9cc6e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -92,10 +92,10 @@ asm/bn86bsdi.o: asm/bn86unix.cpp
asm/co86bsdi.o: asm/co86unix.cpp
	$(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o

asm/bn86unix.cpp:
asm/bn86unix.cpp: asm/bn-586.pl
	(cd asm; perl bn-586.pl cpp >bn86unix.cpp )

asm/co86unix.cpp:
asm/co86unix.cpp: asm/co-586.pl
	(cd asm; perl co-586.pl cpp >co86unix.cpp )

# MIPS 64 bit assember 
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
push(@INC,"perlasm","../../perlasm");
require "x86asm.pl";

&asm_init($ARGV[0],"bn-586.pl");
&asm_init($ARGV[0],$0);

&bn_mul_add_words("bn_mul_add_words");
&bn_mul_words("bn_mul_words");

crypto/bn/asm/bn86unix.cpp

deleted100644 → 0
+0 −2201

File deleted.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ require "alpha/sqr_c4.pl";
require "alpha/sqr_c8.pl";
require "alpha/div.pl";

&asm_init($ARGV[0],"bn-586.pl");
&asm_init($ARGV[0],$0);

&bn_mul_words("bn_mul_words");
&bn_sqr_words("bn_sqr_words");
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
push(@INC,"perlasm","../../perlasm");
require "x86asm.pl";

&asm_init($ARGV[0],"bn-586.pl");
&asm_init($ARGV[0],$0);

&bn_mul_comba("bn_mul_comba8",8);
&bn_mul_comba("bn_mul_comba4",4);
Loading