Skip to content

Commit 458f359

Browse files
committed
fix typos CRD-575
1 parent 7a068ec commit 458f359

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ls8/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ the `CPU` object.
8989
`ram_read()` should accept the address to read and return the value stored
9090
there.
9191
92-
`raw_write()` should accept a value to write, and the address to write it to.
92+
`ram_write()` should accept a value to write, and the address to write it to.
9393
9494
> Inside the CPU, there are two internal registers used for memory operations:
9595
> the _Memory Address Register_ (MAR) and the _Memory Data Register_ (MDR). The
9696
> MAR contains the address that is being read or written to. The MDR contains
9797
> the data that was read or the data to write. You don't need to add the MAR or
98-
> MDR to your `CPU` class, but they would make handy paramter names for
98+
> MDR to your `CPU` class, but they would make handy parameter names for
9999
> `ram_read()` and `ram_write()`, if you wanted.
100100
101101
We'll make use of these helper function later.

0 commit comments

Comments
 (0)