diff --git a/README.md b/README.md index d95552b..8f39571 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,21 @@ -# goodbye-world script +# bye -### step 0 install nasm (varies from distributions-to-distributions) +### step 0 install nasm ```sh sudo pacman -S nasm ``` -### step 1 compiling the nasm file +### step 1 compile the nasm file ```sh nasm -f elf64 goodbye_world.nasm -o goodbye_world.o ``` -### step 2 linking +### step 2 link ```sh ld goodbye_world.o -o goodbye_world ``` -### step 3 run the script +### step 3 run the script :D ```sh ./goodbye_world ```