README.md in z80_disassembler-0.2.2 vs README.md in z80_disassembler-0.2.3
- old
+ new
@@ -26,11 +26,11 @@
```
- example: parse.C >> parse.C.txt and compare with parse.txt
```ruby
z = Z80Disassembler::Disassembler.new(params[:file], 32768)
-z.start # return [25114, "#621A", "LD IX,#6300", "DD 21 00 63", " ! c"
-z.text # return asm text " LD IX,link_1 ; #621A / 25114 ; DD 21 00 63 ; ! c ;"
+z.start # return [ [25114, "#621A", "LD IX,#6300", "DD 21 00 63", " ! c"], [...], ... ]
+z.text # return " LD IX,link_1 ; #621A / 25114 ; DD 21 00 63 ; ! c ;\n"
```
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.