Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This package is a script that generates a Finite field Library in Intel64 / ARM6

## Usage

install g++ nasm ang gmp library if you don't have it.
install g++ and nasm if you don't have them.

```
npm install -g ffiasm
Expand All @@ -17,7 +17,7 @@ cd myProject
buildzqfield -q 21888242871839275222246405745257275088548364400416034343698204186575808495617 -n Fr
```

You now will have two files fr.cpp, fr.hpp and fr.asm
You now will have fr.cpp, fr.hpp, fr.asm, mp.cpp, and mp.hpp

```
ls
Expand Down Expand Up @@ -66,7 +66,7 @@ int main() {
Compile it

```
g++ main.cpp fr.o fr.cpp -o example -lgmp
g++ main.cpp fr.o fr.cpp mp.cpp -o example
```

Run it
Expand Down
Loading