Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleyedward authored Aug 4, 2024
1 parent 1e397ee commit d11c9fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
```

0 comments on commit d11c9fb

Please sign in to comment.