From 74fea4138fd788eddeb726440c872937de56fd1c Mon Sep 17 00:00:00 2001 From: "5684185+vsariola@users.noreply.github.com" <5684185+vsariola@users.noreply.github.com> Date: Wed, 13 Aug 2025 15:18:39 +0300 Subject: [PATCH] docs: Update README.md (-o . is not needed; it's the default behavior) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 824b9ce..7a301ca 100644 --- a/README.md +++ b/README.md @@ -181,14 +181,14 @@ The compiler can then be used to compile a .yml song into .asm and .h files. For example: ``` -sointu-compile -o . -arch=386 tests/test_chords.yml +sointu-compile -arch=386 tests/test_chords.yml nasm -f win32 test_chords.asm ``` WebAssembly example: ``` -sointu-compile -o . -arch=wasm tests/test_chords.yml +sointu-compile -arch=wasm tests/test_chords.yml wat2wasm test_chords.wat ```