1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-06-07 12:29:27 +00:00
i6502/acia6551.go

69 lines
1.0 KiB
Go
Raw Normal View History

2014-08-17 14:49:22 +00:00
package i6502
2014-08-17 15:18:14 +00:00
const (
aciaData = iota
aciaStatus
aciaCommand
aciaControl
)
2014-08-17 14:49:22 +00:00
/*
ACIA 6551 Serial IO
*/
type Acia6551 struct {
2014-08-17 15:18:14 +00:00
Rx chan byte // Reading (Acia Input) line
Tx chan byte // Transmitting (Acia Output) line
rxData byte
txData byte
commandData byte
controlData byte
rxFull bool
txEmpty bool
rxIrqEnabled bool
txIrqEnabled bool
2014-08-17 14:49:22 +00:00
}
func NewAcia6551(rx chan byte, tx chan byte) (*Acia6551, error) {
2014-08-17 15:18:14 +00:00
acia := &Acia6551{Tx: tx, Rx: rx}
acia.Reset()
go func() {
// Handle rx data channel
}()
go func() {
// Handle tx data channel
}()
return acia, nil
2014-08-17 14:49:22 +00:00
}
2014-08-17 15:18:14 +00:00
func (a *Acia6551) Size() uint16 {
// We have a only 4 addresses, Data, Status, Command and Control
2014-08-17 14:49:22 +00:00
return 0x04
}
2014-08-17 15:18:14 +00:00
func (a *Acia6551) Reset() {
a.rxData = 0
a.rxFull = false
a.txData = 0
a.txEmpty = true
a.rxIrqEnabled = false
a.txIrqEnabled = false
}
2014-08-17 14:49:22 +00:00
/*
func (r *Rom) Read(address uint16) byte {
return r.data[address]
}
func (r *Rom) Write(address uint16, data byte) {
panic(fmt.Errorf("Trying to write to ROM at 0x%04X", address))
}
*/