Add comments

This commit is contained in:
Matthias Endler 2021-04-07 14:01:45 +02:00
parent abb01df4b4
commit 3830ccca27
1 changed files with 3 additions and 1 deletions

View File

@ -9,11 +9,12 @@ It builds on stable Rust and supports `#[no_std]` targets.
## Usage example
```rust
extern crate mos6502;
use mos6502::address::Address;
use mos6502::cpu;
fn main() {
// Calculate the greatest common divisor of 56 and 49
// using Euclid's algorithm.
let zero_page_data = [56, 49];
let program = [
@ -46,6 +47,7 @@ fn main() {
cpu.run();
// The expected GCD is 7
assert_eq!(7, cpu.registers.accumulator);
}
```