1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Ensures a proper size handoff and implements a ripple feature I happened to find a forum post about.

This commit is contained in:
Thomas Harte
2019-12-19 22:58:07 -05:00
parent 0007dc23b3
commit 3d83f5ab49
2 changed files with 25 additions and 12 deletions
+1 -1
View File
@@ -507,7 +507,7 @@ class ConcreteMachine:
// that's implemented, just offers magical zero-cost DMA insertion and
// extrication.
if(dma_->get_bus_request_line()) {
dma_->bus_grant(reinterpret_cast<uint16_t *>(ram_.data()), ram_.size());
dma_->bus_grant(reinterpret_cast<uint16_t *>(ram_.data()), ram_.size() >> 1);
}
}
void set_gpip_input() {