Skip to content

Commit

Permalink
Several problems misstate the range of memory offsets used for buffers (
Browse files Browse the repository at this point in the history
  • Loading branch information
blakelewis authored Dec 20, 2023
1 parent 014df74 commit 58ac6fc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/acronym/.docs/instructions.append.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

## Reserved Addresses

The buffer for the input string uses bytes 64-196 of linear memory.
The buffer for the input string uses bytes 64-191 of linear memory.

You may modify this buffer in place if you wish to avoid additional memory allocations.
2 changes: 1 addition & 1 deletion exercises/practice/hamming/.docs/instructions.append.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
## Reserved Addresses

The buffer for the first string uses bytes 1024-2047 of linear memory.
The buffer for the second string uses bytes 2048-3075 of linear memory.
The buffer for the second string uses bytes 2048-3071 of linear memory.

You should not have to modify these buffers or allocate additional memory.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Reserved Memory

The buffer for the input string uses bytes 64-189 of linear memory.
The buffer for the input string uses bytes 64-191 of linear memory.

## Arrays

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

## Reserved Memory

The buffer for the input string uses bytes 64-189 of linear memory.
The buffer for the input string uses bytes 64-191 of linear memory.

The input string can be modified in place if desired.
2 changes: 1 addition & 1 deletion exercises/practice/two-fer/.docs/instructions.append.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

## Reserved Addresses

The buffer for the input string uses bytes 64-192 of linear memory.
The buffer for the input string uses bytes 64-191 of linear memory.

0 comments on commit 58ac6fc

Please sign in to comment.