Skip to content

Commit 2399b7e

Browse files
craigjbassISSOtmRangi42
authored
-L is now removed as of v0.8.0, and is default behaviour (#94)
Co-authored-by: Eldred Habert <me@eldred.fr> Co-authored-by: Sylvie <35663410+Rangi42@users.noreply.github.com>
1 parent 50b973d commit 2399b7e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/part1/hello_world.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To clarify where each individual command begins, I've added a `$` before each co
1919
:::
2020

2121
```console
22-
$ rgbasm -L -o hello-world.o hello-world.asm
22+
$ rgbasm -o hello-world.o hello-world.asm
2323
$ rgblink -o hello-world.gb hello-world.o
2424
$ rgbfix -v -p 0xFF hello-world.gb
2525
```
@@ -34,14 +34,13 @@ $ rgbfix -v -p 0xFF hello-world.gb
3434

3535
Be careful with arguments! Some options, such as `-o` here, use the argument after them as a parameter:
3636

37-
1. `rgbasm -L -o hello-world.asm hello-world.o` won't work (and may corrupt `hello-world.asm`!)
38-
2. `rgbasm -L hello-world.asm -o hello-world.o` will work
39-
3. `rgbasm hello-world.asm -o hello-world.o -L` will also work
37+
1. `rgbasm -o hello-world.asm hello-world.o` won't work (and may corrupt `hello-world.asm`!)
38+
2. `rgbasm hello-world.asm -o hello-world.o` will work
4039

4140
If you need whitespace within an argument, you must quote it:
4241

43-
1. `rgbasm -L -o hello world.o hello world.asm` won't work
44-
2. `rgbasm -L -o "hello world.o" "hello world.asm"` will work
42+
1. `rgbasm -o hello world.o hello world.asm` won't work
43+
2. `rgbasm -o "hello world.o" "hello world.asm"` will work
4544

4645
:::
4746

0 commit comments

Comments
 (0)