Skip to content

Commit 3f1d8ac

Browse files
committed
Proofread the comments
1 parent d1bf9a9 commit 3f1d8ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/io.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ static uint8_t *data_memory_base;
2121
/*
2222
* set memory size to 2^32 - 1 bytes
2323
*
24-
* The memory size is set to 2^32 - 1 bytes in order
25-
* to make rv32emu portable for both 32-bit and 64-bit platforms.
26-
* As a result, rv32emu can access any segment of the memory in
27-
* either platform. Furthermore, it is safe because most of the 
28-
* test cases' data memory usage will not exceed this memory size.
24+
* The memory size is set to 2^32 - 1 bytes in order to make this emulator
25+
* portable for both 32-bit and 64-bit platforms. As a result, it can access
26+
* any segment of the memory on either platform. Furthermore, it is safe
27+
* because most of the test cases' data memory usage will not exceed this
28+
* memory size.
2929
*/
3030
#define MEM_SIZE 0xFFFFFFFFULL
3131

0 commit comments

Comments
 (0)