1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Fix macro for n being an expression.

This commit is contained in:
Thomas Harte 2022-05-25 16:05:45 -04:00
parent f9d1c554b7
commit 4ad0e04c23

View File

@ -244,7 +244,7 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
// Performs no bus activity for the specified number of microcycles. // Performs no bus activity for the specified number of microcycles.
#define IdleBus(n) \ #define IdleBus(n) \
idle.length = HalfCycles(n * 4); \ idle.length = HalfCycles((n) << 2); \
PerformBusOperation(idle) PerformBusOperation(idle)
// Spin until DTACK, VPA or BERR is asserted (unless DTACK is implicit), // Spin until DTACK, VPA or BERR is asserted (unless DTACK is implicit),