Commodore bus


The Commodore serial IEEE-488 bus, is Commodore's interface for primarily magnetic disk data storage and printers for the Commodore 8-bit home/personal computers, notably the VIC-20, C64, C128, Plus/4, C16 and C65.

Description and history

The parallel IEEE-488 interface used on the Commodore PET computer line was too costly, so a cost reduced version was developed, which consisted of a stripped down, serial version of the IEEE-488 interface, with only a few signals remaining; however, the general protocol layout was kept. Commodore began using this bus with the VIC-20. Connection to the computer utilizes a DIN-6 connector.

Transfer speed

Interface

PinNameFunction
1/SRQINService request input to let peripherals request being served by the host. Used by the C128 for fast transfers.
2GNDGround
3/ATNSerial ATN In/Out. Set low by the host to indicate the beginning of a serial data transfer.
4/CLKSerial CLK In/Out. Used for software handshaking.
5/DATASerial DATA In/Out. Data bit transfer.
6/RESETResets peripherals and also resets an older C64.

Protocol description

The bus signals are digital single-ended open collector TTL and active when low. Bus devices have to provide their own power.
Because the bus lines are electrically open collector it works like a long OR gate between all device line drivers. The logical value for ground is true and vice versa. Any device may set a line "true". A line only becomes "false" if all devices signal false.
Transmission begins with the bus talker holding the Clock line true, and the listener holding the Data line true. To begin the talker releases the Clock line to false. When all bus listeners are ready to receive they release the Data line to false. If the talker waits more than 200 µs without the Clock line going true, listeners have to perform End-or-Identify.
If the Data line being false isn't acknowledged by the talker within 200 µs, the listener knows that the talker is in the process of EOI that means "this character will be the last one." When the listener detects the 200 µs timeout, it must acknowledge this by pulling the Data line true for at least 60 µs, and then release it. The talker can revert to transmitting again within 60 µs by pulling the Clock line true.
Data is eight bits starting with the least significant bit. The Data line is set according to the bit to send. Once the Data line is set, the Clock line is released to false. The Clock and Data lines will be held steady for at least 20 µs. After 8 bits has been sent, the talker releases the Data line to false and the listener then acknowledge the talker by pulling the Data line true within 1000 µs. After this the talker sets the Clock line true and listener sets the Data line true thus back where the transmission begun. If an EOI is signaled by holding the Clock line false the transmission is ended and the listener acknowledge this by pulling the Data line true for 200 µs.
The ATN line is set to true and bytes are sent like above to all devices, but the byte is interpreted as one of the commands "Talk," "Listen," "Untalk," and "Unlisten". That tell a specific device to become a talker or listener. Only devices with matching device numbers switch into talk and listen mode. A secondary address may also follow.
On higher logical level the host will set the ATN line to true and transmit the bytes "Device number 8, listen", "Secondary address 2, open". Next it will set the ATN line false and the host then becomes the talker, holding the Clock line true. The device will be the listener, holding the Data line true. The host will transmit the specific open command and end it with an EOI signal sequence. After this the host will set with ATN line true, "Device number 8, unlisten". Followed up by ATN line true and "Device number 8, listen", "Secondary address 2, data". Then the host sets the ATN line false and sends the data. When the host has finished sending data the ATN line is set to true and "Device number 8, unlisten" is sent.
When it is necessary to switch roles and make the host a listener and the device a talker the occurs after a talk command has been sent to the device. The host sets the Data line true and releases the Clock line to false. The device waits for the Clock line to go false and then pulls it to true and release the Data line to false. After this sequence the standard talk-listener interaction may follow.
CodeMeaning
device | 0x20Listen, device
0x3FUnlisten, all devices
device | 0x40Talk, device
0x5FUntalk, all devices
channel | 0x60Reopen, channel
channel | 0xE0Close, channel
channel | 0xF0Open, channel

To read a normal file from the floppy device number 8 the command LOAD "filename",8,1 is issued on a Commodore 64. That causes the following high level communication to take place:
The Commodore 1541 floppy drive uses a slower Commodore 64 compatible mode which can be deactivated for faster speed by using the command OPEN 15,8,15,"UI-":CLOSE 15.

Device numbering

Device number 0–3 are not associated with the Commodore bus.

Host implementation

The Commodore VIC-20 computer and the Commodore 1540 and 1541 floppy drives use the MOS Technology 6522 VIA to handle IEC Bus transmissions. The Commodore 64 and 128 computers and the Commodore 1571 drive use the Complex Interface Adapter.

Common devices

Devices