summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorstefan <stefan@s00.xyz>2023-05-30 21:36:02 -0400
committerstefan <stefan@s00.xyz>2023-05-30 21:36:02 -0400
commitdee67951e09df94d05d2fa18c8fdbf93905cd788 (patch)
tree16c4a058ef615ebc7711d9f493558e0660ec8c31 /README.md
parent20621e073562ee5d423b636fae8b6aa8e38275fa (diff)
downloadevm-main.tar.gz
update readmeHEADmain
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9975517..b3ca33f 100644
--- a/README.md
+++ b/README.md
@@ -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
```