diff options
| author | stefan <stefan@s00.xyz> | 2023-05-30 21:36:02 -0400 |
|---|---|---|
| committer | stefan <stefan@s00.xyz> | 2023-05-30 21:36:02 -0400 |
| commit | dee67951e09df94d05d2fa18c8fdbf93905cd788 (patch) | |
| tree | 16c4a058ef615ebc7711d9f493558e0660ec8c31 /README.md | |
| parent | 20621e073562ee5d423b636fae8b6aa8e38275fa (diff) | |
| download | evm-dee67951e09df94d05d2fa18c8fdbf93905cd788.tar.gz | |
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,13 +29,13 @@ as you can assemble files by specifying the assembly file, and optionally the name of your output binary using the `-o` flag ```sh -./as test/add.src -o test/add.bin +./as/as test/add.easm -o test/add.bin ``` if you want to compare the output with something like the `evm` tool from geth, you can use xxd with the `-p` flag ```sh -evm compile test/add.src +evm compile test/add.easm xxd -p test/add.bin ``` |