diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-02 01:40:23 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-02 01:40:23 -0500 |
commit | b6122070d921f381df61b4caf8e985c98361b75a (patch) | |
tree | 6e159ed67a77cc1144af44b53c636264a809a8c3 | |
parent | 0406a12fdfaaa860336ad2bffb2411357dcd0448 (diff) |
clarify a sentence
-rw-r--r-- | extras/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/README.md b/extras/README.md index 00c2775c0..5e219cc93 100644 --- a/extras/README.md +++ b/extras/README.md @@ -24,5 +24,5 @@ asm.insert_multiple_with_dependencies(crystal.all_map_headers[:x]) asm.dump() ``` -After running those lines, `cp extras/output.asm main.asm` and run `git diff main.asm` to confirm that changes to `main.asm` have occurred. Then to test whether or not the inserted ASM compiles use: `make clean && make`. This will complain very loudly if something is broken. +After running those lines, `cp extras/output.asm main.asm` and run `git diff main.asm` to confirm that changes to `main.asm` have occurred. To test whether or not the newly inserted ASM compiles into the same ROM, use: `make clean && make`. This will complain very loudly if something is broken. |