clarify a sentence

This commit is contained in:
Bryan Bishop 2012-05-02 01:40:23 -05:00
parent 0406a12fdf
commit b6122070d9

View File

@ -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.