mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
Neaten, slightly.
This commit is contained in:
parent
76e9fcc94a
commit
fdd02ad6a6
@ -256,10 +256,7 @@ template <int cycle, bool stop_if_cpu> bool Chipset::perform_cycle() {
|
|||||||
|
|
||||||
// Down here: give first refusal to the Blitter, otherwise
|
// Down here: give first refusal to the Blitter, otherwise
|
||||||
// pass on to the CPU.
|
// pass on to the CPU.
|
||||||
if((dma_control_ & BlitterFlag) == BlitterFlag) {
|
return (dma_control_ & BlitterFlag) != BlitterFlag || !blitter_.advance();
|
||||||
return !blitter_.advance();
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <bool stop_on_cpu> int Chipset::advance_slots(int first_slot, int last_slot) {
|
template <bool stop_on_cpu> int Chipset::advance_slots(int first_slot, int last_slot) {
|
||||||
|
Loading…
Reference in New Issue
Block a user