diff options
-rw-r--r-- | blob2xex.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/blob2xex.rst b/blob2xex.rst index 3f80a0b..6bbbefc 100644 --- a/blob2xex.rst +++ b/blob2xex.rst @@ -34,7 +34,7 @@ part of the input file. To read from standard input, use **-** for the input files are used, the resulting .xex file will have multiple segments. If *outfile* already exists, it will be overwritten. If *outfile* is a filename that begins with a **-**, prefix it with -"./", otherwise it'll be taken as an option. Use **-** to write to +"./", otherwise it'll be taken as an option. Use **-** to write to standard output. **blob2xex** will not write output to a terminal; **-** must be used with redirection or a pipe. @@ -90,7 +90,7 @@ code. To turn it into a runnable .xex file, use: Notice the use of quotes around the addresses? That's because the $ character must be quoted, or the shell will try to interpret it as a variable reference. You could also have typed **\$2000** or -**0x2000**. +**0x2000**. Or you could have used decimal (**4096**). More Complex Example -------------------- |