Handle all eight DMA channels

This commit is contained in:
Ernest Wong 2017-11-17 20:13:00 +13:00 committed by Fabian
parent 665e6bbeb8
commit 5f077989e2

View file

@ -9,18 +9,53 @@ function DMA(cpu)
/** @const @type {CPU} */
this.cpu = cpu;
this.channel_addr = new Int32Array(4);
this.channel_count = new Int32Array(4);
this.channel_addr = new Int32Array(8);
this.channel_count = new Int32Array(8);
this.channel_mask = new Uint8Array(8);
this.channel_mode = new Uint8Array(8);
this.channel_on_unmask = [];
this.lsb_msb_flipflop = 0;
var io = cpu.io;
io.register_write(0x04, this, this.port_write.bind(this, 0x04));
io.register_write(0x05, this, this.port_write.bind(this, 0x05));
io.register_write(0x0A, this, this.portA_write);
io.register_write(0x0B, this, this.portB_write);
io.register_write(0x00, this, this.port_addr_write.bind(this, 0));
io.register_write(0x02, this, this.port_addr_write.bind(this, 1));
io.register_write(0x04, this, this.port_addr_write.bind(this, 2));
io.register_write(0x06, this, this.port_addr_write.bind(this, 3));
io.register_write(0x01, this, this.port_count_write.bind(this, 0));
io.register_write(0x03, this, this.port_count_write.bind(this, 1));
io.register_write(0x05, this, this.port_count_write.bind(this, 2));
io.register_write(0x07, this, this.port_count_write.bind(this, 3));
io.register_write(0xC0, this, this.port_addr_write.bind(this, 4));
io.register_write(0xC4, this, this.port_addr_write.bind(this, 5));
io.register_write(0xC8, this, this.port_addr_write.bind(this, 6));
io.register_write(0xCC, this, this.port_addr_write.bind(this, 7));
io.register_write(0xC2, this, this.port_count_write.bind(this, 4));
io.register_write(0xC6, this, this.port_count_write.bind(this, 5));
io.register_write(0xCA, this, this.port_count_write.bind(this, 6));
io.register_write(0xCE, this, this.port_count_write.bind(this, 7));
io.register_write(0x87, this, this.port_page_write.bind(this, 0));
io.register_write(0x83, this, this.port_page_write.bind(this, 1));
io.register_write(0x81, this, this.port_page_write.bind(this, 2));
io.register_write(0x82, this, this.port_page_write.bind(this, 3));
io.register_write(0x8F, this, this.port_page_write.bind(this, 4));
io.register_write(0x8B, this, this.port_page_write.bind(this, 5));
io.register_write(0x89, this, this.port_page_write.bind(this, 6));
io.register_write(0x8A, this, this.port_page_write.bind(this, 7));
// io.register_write(0x0A, this, this.port_singlemask_write.bind(this, 0));
// io.register_write(0xD4, this, this.port_singlemask_write.bind(this, 4));
// io.register_write(0x0F, this, this.port_multimask_write.bind(this, 0));
// io.register_write(0xDE, this, this.port_multimask_write.bind(this, 4));
// io.register_write(0x0B, this, this.port_mode_write.bind(this, 0));
// io.register_write(0xD6, this, this.port_mode_write.bind(this, 4));
io.register_write(0x0C, this, this.portC_write);
io.register_write(0x81, this, this.port81_write);
io.register_write(0xD8, this, this.portC_write);
}
DMA.prototype.get_state = function()
@ -39,6 +74,90 @@ DMA.prototype.set_state = function(state)
this.lsb_msb_flipflop = state[2];
};
DMA.prototype.port_count_write = function(channel, data_byte)
{
dbg_log("count write [" + channel + "] = " + h(data_byte), LOG_DMA);
this.channel_count[channel] = this.flipflop_get(this.channel_count[channel], data_byte);
}
DMA.prototype.port_addr_write = function(channel, data_byte)
{
dbg_log("addr write [" + channel + "] = " + h(data_byte), LOG_DMA);
this.channel_addr[channel] = this.flipflop_get(this.channel_addr[channel], data_byte);
}
DMA.prototype.port_page_write = function(channel, data_byte)
{
dbg_log("page write [" + channel + "] = " + h(data_byte), LOG_DMA);
this.channel_addr[channel] = this.channel_addr[channel] & 0xFFFF | data_byte << 16;
}
DMA.prototype.port_page_read = function(channel)
{
dbg_log("page read [" + channel + "]", LOG_DMA);
return this.channel_addr[channel] >> 16;
}
DMA.prototype.port_singlemask_write = function(channel_offset, data_byte)
{
var channel = data_byte & 0x4 + channel_offset;
var value = !!(data_byte & 0x8);
dbg_log("singlechannel mask write [" + channel + "] = " + value, LOG_DMA);
this.update_mask(channel, value);
}
DMA.prototype.port_multimask_write = function(channel_offset, data_byte)
{
dbg_log("multichannel mask write: " + h(data_byte), LOG_DMA);
for(var i = 0; i < 4; i++)
{
this.update_mask(channel_offset + i, data_byte & (1 << i));
}
}
DMA.prototype.port_multimask_read = function(channel_offset)
{
var value = 0;
value |= this.channel_mask[channel_offset + 0] * 0x1;
value |= this.channel_mask[channel_offset + 1] * 0x2;
value |= this.channel_mask[channel_offset + 2] * 0x4;
value |= this.channel_mask[channel_offset + 3] * 0x8;
dbg_log("multichannel mask read: " + h(value), LOG_DMA);
return value;
}
DMA.prototype.port_mode_write = function(channel_offset, data_byte)
{
var channel = data_byte & 0x4 + channel_offset;
dbg_log("mode write [" + channel + "] = " + h(data_byte), LOG_DMA);
this.channel_mode[channel] = data_byte;
}
DMA.prototype.portC_write = function(data_byte)
{
dbg_log("flipflop reset", LOG_DMA);
this.lsb_msb_flipflop = 0;
}
DMA.prototype.on_unmask = function(channel, fn)
{
this.channel_on_unmask[channel] = fn;
}
DMA.prototype.update_mask = function(channel, value)
{
if(this.channel_mask[channel] !== value)
{
this.channel_mask[channel] ^= 1;
if(!value && this.channel_on_unmask[channel])
{
dbg_log("firing on_unmask[" + channel + "]", LOG_DMA);
this.channel_on_unmask[channel]();
}
}
}
/*
DMA.prototype.port_write = function(port, data_byte)
{
dbg_log("port " + port + " write " + data_byte, LOG_DMA);
@ -80,6 +199,7 @@ DMA.prototype.port_read = function(port)
}
};
DMA.prototype.portA_write = function(data_byte)
{
dbg_log("port A write: " + h(data_byte), LOG_DMA);
@ -99,6 +219,7 @@ DMA.prototype.port81_write = function(data_byte)
{
this.channel_addr[2] = this.channel_addr[2] & 0xFFFF | data_byte << 16;
}
*/
// read data, write to memory
DMA.prototype.do_read = function(buffer, start, len, channel, fn)