diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-09-29 04:53:21 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-09-29 04:53:21 -0600 |
| commit | 231f61c7a07c41ff5b66aff400e7022310e6ec8b (patch) | |
| tree | a808d4c36a83e56f0cd19b93ff06a4f97017ca4e /tb/mem.cpp | |
| parent | 24daea338920944133a394bcb85b2c459ccd1352 (diff) | |
tb: read line-sized reads of word-sized I/O slaves
Diffstat (limited to '')
| -rw-r--r-- | tb/mem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ namespace taller::avalon block(std::make_unique<line[]>(size >> 4)) {} - bool mem::read_line(std::uint32_t addr, line &data) + bool mem::read_line(std::uint32_t addr, line &data, unsigned byte_enable [[maybe_unused]]) { data = block[addr]; return true;/*ready();*/ |
