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:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user