The multiplexed address/data design of the Zorro III bus has some definite advantages. It allows Zorro III cards to use the same 100-pin connector as the Zorro II cards, which results in every bus slot being a 32-bit slot, even if there's an alternate connector in-line with any or all of the system slots; current alternate connectors include amiga video and pc-at (now sometimes called isa, for industry standard architecture, now that it's basically beyond the control of IBM) compatible connectors . This design also makes implementation of the bus controller for a system such as the A3000 simpler. And it can result in lower cost for Zorro III PICs in many cases. The main disadvantage of the multiplexed bus is that the multiplexing can waste time. The address access time is the same for multiplexed and non-multiplexed buses, but because of the multiplexing time, Zorro III PICs must wait until data time to assert data, which places a fixed limit on how soon data can be valid. The Zorro III Multiple Transfer Cycle is a special mode designed to allow the bus to approach the speed of a non-multiplexed design. This mode is especially effective for high speed transfers between memory and I/O cards. As the name implies, the Multiple Transfer Cycle is an extension of the basic full cycle that results in multiple 32-bit transfers. It starts with a normal full cycle address phase transaction, where the bus master drives the 32-bit address and asserts the /fcs signal. a master capable of supporting a Multiple Transfer Cycle will also assert /mtcr at the same time as /fcs . the slave latches the address and responds by asserting its /slaven line. if the slave is capable of multiple transfers, it'll also assert /mtack , indicating to the bus master that it's capable of this extended cycle form. If either /mtcr or /mtack is negated for a cycle, that cycle will be a basic full cycle. ______ ________ /FCS \ / \_____________________________________________/ address data from slave data from master ___|__ _____|_______|_________|___________|___ AD31..AD8 __/ | \___/ / | \ / | \ / | \ / | \_________ \______/ \___\___/___\___/___\_______/___\_______/ _______________ ___ ___ ___ ___________ /MTCR \ / \ / \ / \ / \___/ \___/ \___/ \___/ _______________________________________________ SA7..SA2 __/ \ / \ / \ / \____________ FC2..FC0 \_________________/___\_____/___\_____/___\_____/ ________________________________ __________ READ \ / \_________________/ ______________________________________ DOE / \ ___________/ \__________ _______________ ___ ___ ___ ___________ /DS3../DS0 \ / \ / \ / \ / \___/ \___/ \___/ \___/ ___________ ___________________ /MTACK \ / \_____________________________/ __________________ ____ ____ ____ _________ /DTACK \ / \ / \ / \ / \__/ \__/ \__/ \__/ Figure K-6: Multiple Transfer Cycles Assuming the multiple transfer handshake goes through, the multiple cycle continues to look similar to the basic cycle into the data phase. The bus master asserts doe (possibly with write data) and the appropriate /dsn , then the slave responds with /dtack (possibly with read data at the same time), just as usual. Following this, however, the cycle's character changes. Instead of terminating the cycle by negating /fcs , /dsn , and doe , the master negates /dsn and /mtcr , but maintains /fcs and doe . the slave continues to assert /slaven , and the bus goes into what's called a short cycle. The short cycle begins with the bus master driving the low order address lines a7-a2 ; these are the non-multiplexed addresses and can change without a new address phase being required (this is essentially a page mode, fully random accesses on this 256-byte page). The read line may also change at this time. The master will then assert /mtcr to indicate to the slave that the short cycle is starting. For reads, the appropriate /dsn are asserted simultaneously with /mtcr , for writes, data and /dsn are asserted slightly after /mtcr . the slave will supply data for reads, then assert /dtack , and the bus will terminate the short cycle and start into either another short cycle or a full cycle, depending on the multiple cycle handshaking that has taken place. The question of whether a subsequent cycle will be a full cycle or a short cycle is answered by multiple cycle arbitration. If the master can't sustain another short cycle, it will negate /fcs and doe along with /mtcr at the end of the current short cycle, terminating the full cycle as well. The master always samples the state of /mtack on the falling edge of /mtcr . if a slave can't support additional short cycles, it negates /mtack one short cycle ahead of time. on the following short cycle, the bus master will see that no more short cycles can be handled by the slave, and fully terminate the multiple transfer cycle once this last short cycle is done. PICs aren't absolutely required to support Multiple Transfer Cycles, though it is a highly recommended feature, especially for memory boards. And of course, all PICs must act intelligently about such cycles on the bus; a card doesn't request or acknowledge any Multiple Transfer Cycle it can't support.