2016-06-05 14:51:07 +00:00
|
|
|
|
//
|
|
|
|
|
// 6560.cpp
|
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
|
|
|
|
// Created by Thomas Harte on 05/06/2016.
|
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include "6560.hpp"
|
|
|
|
|
|
|
|
|
|
using namespace MOS;
|
|
|
|
|
|
|
|
|
|
MOS6560::MOS6560() :
|
2016-06-12 21:57:52 +00:00
|
|
|
|
_crt(new Outputs::CRT::CRT(65*4, 4, Outputs::CRT::NTSC60, 1)),
|
2016-06-05 21:06:10 +00:00
|
|
|
|
_horizontal_counter(0),
|
2016-06-13 02:27:58 +00:00
|
|
|
|
_vertical_counter(0),
|
2016-06-13 23:30:52 +00:00
|
|
|
|
_cycles_since_speaker_update(0),
|
2016-06-13 02:27:58 +00:00
|
|
|
|
_is_odd_frame(false)
|
2016-06-05 14:51:07 +00:00
|
|
|
|
{
|
2016-06-07 00:18:24 +00:00
|
|
|
|
_crt->set_composite_sampling_function(
|
|
|
|
|
"float composite_sample(usampler2D texID, vec2 coordinate, vec2 iCoordinate, float phase, float amplitude)"
|
2016-06-05 14:51:07 +00:00
|
|
|
|
"{"
|
2016-06-07 00:18:24 +00:00
|
|
|
|
"uint c = texture(texID, coordinate).r;"
|
2016-06-12 21:27:57 +00:00
|
|
|
|
"float y = float(c >> 4) / 4.0;"
|
2016-06-12 21:41:52 +00:00
|
|
|
|
"uint yC = c & 15u;"
|
|
|
|
|
"float phaseOffset = 6.283185308 * float(yC) / 16.0;"
|
2016-06-07 00:18:24 +00:00
|
|
|
|
|
2016-06-13 22:20:21 +00:00
|
|
|
|
"float chroma = step(mod(phase + phaseOffset + 0.785398163397448, 6.283185308), 3.141592654);"
|
|
|
|
|
// "float chroma = cos(phase + phaseOffset);"
|
2016-06-12 21:57:52 +00:00
|
|
|
|
"return mix(y, step(yC, 14) * chroma, amplitude);"
|
2016-06-05 14:51:07 +00:00
|
|
|
|
"}");
|
2016-06-12 21:29:44 +00:00
|
|
|
|
|
|
|
|
|
// set up colours table
|
|
|
|
|
// 0
|
|
|
|
|
// 2, 6, 9, B,
|
|
|
|
|
// 4, 5, 8, A, C, E
|
|
|
|
|
// 3, 7, D, F
|
|
|
|
|
// 1
|
|
|
|
|
uint8_t luminances[16] = { // range is 0–4
|
|
|
|
|
0, 4, 1, 3,
|
|
|
|
|
2, 2, 1, 3,
|
|
|
|
|
2, 1, 2, 1,
|
|
|
|
|
2, 3, 2, 3
|
|
|
|
|
};
|
2016-06-12 21:57:52 +00:00
|
|
|
|
// uint8_t pal_chrominances[16] = { // range is 0–15; 15 is a special case meaning "no chrominance"
|
|
|
|
|
// 15, 15, 5, 13, 2, 10, 0, 8,
|
|
|
|
|
// 6, 7, 5, 13, 2, 10, 0, 8,
|
|
|
|
|
// };
|
|
|
|
|
uint8_t ntsc_chrominances[16] = {
|
|
|
|
|
15, 15, 2, 10, 4, 12, 6, 14,
|
|
|
|
|
0, 8, 2, 10, 4, 12, 6, 14,
|
2016-06-12 21:29:44 +00:00
|
|
|
|
};
|
|
|
|
|
for(int c = 0; c < 16; c++)
|
|
|
|
|
{
|
2016-06-12 21:57:52 +00:00
|
|
|
|
_colours[c] = (uint8_t)((luminances[c] << 4) | ntsc_chrominances[c]);
|
2016-06-12 21:29:44 +00:00
|
|
|
|
}
|
2016-06-12 22:01:38 +00:00
|
|
|
|
|
|
|
|
|
// show the middle 90%
|
|
|
|
|
_crt->set_visible_area(Outputs::CRT::Rect(0.05f, 0.05f, 0.9f, 0.9f));
|
2016-06-13 23:30:52 +00:00
|
|
|
|
_speaker.set_input_rate(63920.4375); // assuming NTSC; clock rate / 16
|
2016-06-05 14:51:07 +00:00
|
|
|
|
}
|
2016-06-05 16:11:12 +00:00
|
|
|
|
|
|
|
|
|
void MOS6560::set_register(int address, uint8_t value)
|
|
|
|
|
{
|
2016-06-09 02:15:24 +00:00
|
|
|
|
address &= 0xf;
|
2016-06-07 00:29:39 +00:00
|
|
|
|
_registers[address] = value;
|
2016-06-05 18:05:31 +00:00
|
|
|
|
switch(address)
|
|
|
|
|
{
|
|
|
|
|
case 0x0:
|
|
|
|
|
_interlaced = !!(value&0x80);
|
|
|
|
|
_first_column_location = value & 0x7f;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x1:
|
|
|
|
|
_first_row_location = value;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x2:
|
|
|
|
|
_number_of_columns = value & 0x7f;
|
|
|
|
|
_video_matrix_start_address = (uint16_t)((_video_matrix_start_address & 0x3c00) | ((value & 0x80) << 2));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x3:
|
|
|
|
|
_number_of_rows = (value >> 1)&0x3f;
|
2016-06-12 15:23:57 +00:00
|
|
|
|
_tall_characters = !!(value&0x01);
|
2016-06-05 18:05:31 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x5:
|
|
|
|
|
_character_cell_start_address = (uint16_t)((value & 0x0f) << 10);
|
2016-06-10 22:12:21 +00:00
|
|
|
|
_video_matrix_start_address = (uint16_t)((_video_matrix_start_address & 0x0200) | ((value & 0xf0) << 6));
|
2016-06-05 18:05:31 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2016-06-13 23:30:52 +00:00
|
|
|
|
case 0xa:
|
|
|
|
|
case 0xb:
|
|
|
|
|
case 0xc:
|
|
|
|
|
case 0xd:
|
|
|
|
|
update_audio();
|
|
|
|
|
_speaker.set_control(address - 0xa, value);
|
|
|
|
|
break;
|
|
|
|
|
|
2016-06-07 00:18:24 +00:00
|
|
|
|
case 0xe:
|
2016-06-13 23:30:52 +00:00
|
|
|
|
update_audio();
|
2016-06-12 21:27:57 +00:00
|
|
|
|
_auxiliary_colour = _colours[value >> 4];
|
2016-06-13 23:30:52 +00:00
|
|
|
|
_speaker.set_volume(value & 0xf);
|
2016-06-07 00:18:24 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2016-06-05 18:05:31 +00:00
|
|
|
|
case 0xf:
|
2016-06-05 22:02:49 +00:00
|
|
|
|
if(_this_state == State::Border)
|
|
|
|
|
{
|
|
|
|
|
output_border(_cycles_in_state * 4);
|
|
|
|
|
_cycles_in_state = 0;
|
|
|
|
|
}
|
2016-06-05 21:06:10 +00:00
|
|
|
|
_invertedCells = !!((value >> 3)&1);
|
2016-06-12 21:27:57 +00:00
|
|
|
|
_borderColour = _colours[value & 0x07];
|
|
|
|
|
_backgroundColour = _colours[value >> 4];
|
2016-06-05 18:05:31 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2016-06-05 21:06:10 +00:00
|
|
|
|
// TODO: audio, primarily
|
|
|
|
|
|
2016-06-05 18:05:31 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-06-05 16:11:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-07 00:29:39 +00:00
|
|
|
|
uint8_t MOS6560::get_register(int address)
|
|
|
|
|
{
|
2016-06-09 02:15:24 +00:00
|
|
|
|
address &= 0xf;
|
|
|
|
|
switch(address)
|
|
|
|
|
{
|
|
|
|
|
default: return _registers[address];
|
2016-06-10 02:37:59 +00:00
|
|
|
|
case 0x03: return (uint8_t)(_vertical_counter << 7) | (_registers[3] & 0x7f);
|
|
|
|
|
case 0x04: return (_vertical_counter >> 1) & 0xff;
|
2016-06-09 02:15:24 +00:00
|
|
|
|
}
|
2016-06-07 00:29:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-05 22:02:49 +00:00
|
|
|
|
void MOS6560::output_border(unsigned int number_of_cycles)
|
|
|
|
|
{
|
|
|
|
|
uint8_t *colour_pointer = _crt->allocate_write_area(1);
|
|
|
|
|
if(colour_pointer) *colour_pointer = _borderColour;
|
|
|
|
|
_crt->output_level(number_of_cycles);
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-05 16:11:12 +00:00
|
|
|
|
uint16_t MOS6560::get_address()
|
|
|
|
|
{
|
2016-06-13 23:30:52 +00:00
|
|
|
|
_cycles_since_speaker_update++;
|
|
|
|
|
|
2016-06-05 21:06:10 +00:00
|
|
|
|
_horizontal_counter++;
|
|
|
|
|
if(_horizontal_counter == 65)
|
|
|
|
|
{
|
|
|
|
|
_horizontal_counter = 0;
|
|
|
|
|
_vertical_counter++;
|
|
|
|
|
_column_counter = -1;
|
|
|
|
|
|
2016-06-13 23:34:01 +00:00
|
|
|
|
if(_vertical_counter == (_interlaced ? (_is_odd_frame ? 262 : 263) : 261))
|
2016-06-05 21:06:10 +00:00
|
|
|
|
{
|
2016-06-13 02:27:58 +00:00
|
|
|
|
_is_odd_frame ^= true;
|
2016-06-05 21:06:10 +00:00
|
|
|
|
_vertical_counter = 0;
|
|
|
|
|
_row_counter = -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(_row_counter >= 0)
|
|
|
|
|
{
|
|
|
|
|
_row_counter++;
|
2016-06-12 15:23:57 +00:00
|
|
|
|
if(_row_counter == _number_of_rows*(_tall_characters ? 16 : 8)) _row_counter = -1;
|
2016-06-05 21:06:10 +00:00
|
|
|
|
}
|
2016-06-07 00:33:06 +00:00
|
|
|
|
else if(_vertical_counter == _first_row_location * 2)
|
2016-06-06 11:35:35 +00:00
|
|
|
|
{
|
|
|
|
|
_video_matrix_line_address_counter = _video_matrix_start_address;
|
|
|
|
|
_row_counter = 0;
|
|
|
|
|
}
|
2016-06-05 21:06:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(_column_counter >= 0)
|
|
|
|
|
{
|
|
|
|
|
_column_counter++;
|
|
|
|
|
if(_column_counter == _number_of_columns*2)
|
2016-06-06 11:35:35 +00:00
|
|
|
|
{
|
2016-06-05 21:06:10 +00:00
|
|
|
|
_column_counter = -1;
|
2016-06-12 15:23:57 +00:00
|
|
|
|
if((_row_counter&(_tall_characters ? 15 : 7)) == (_tall_characters ? 15 : 7))
|
2016-06-06 11:35:35 +00:00
|
|
|
|
{
|
|
|
|
|
_video_matrix_line_address_counter = _video_matrix_address_counter;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(_horizontal_counter == _first_column_location)
|
|
|
|
|
{
|
|
|
|
|
_column_counter = 0;
|
|
|
|
|
_video_matrix_address_counter = _video_matrix_line_address_counter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// determine output state; colour burst and sync timing are currently a guess
|
|
|
|
|
if(_horizontal_counter > 61) _this_state = State::ColourBurst;
|
|
|
|
|
else if(_horizontal_counter > 57) _this_state = State::Sync;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_this_state = (_column_counter >= 0 && _row_counter >= 0) ? State::Pixels : State::Border;
|
2016-06-05 21:06:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-12 21:57:52 +00:00
|
|
|
|
// apply vertical sync
|
2016-06-13 02:27:58 +00:00
|
|
|
|
if(
|
|
|
|
|
(_vertical_counter < 3 && (_is_odd_frame || !_interlaced)) ||
|
|
|
|
|
(_interlaced &&
|
|
|
|
|
(
|
|
|
|
|
(_vertical_counter == 0 && _horizontal_counter > 32) ||
|
|
|
|
|
(_vertical_counter == 1) || (_vertical_counter == 2) ||
|
|
|
|
|
(_vertical_counter == 3 && _horizontal_counter <= 32)
|
|
|
|
|
)
|
|
|
|
|
))
|
|
|
|
|
_this_state = State::Sync;
|
2016-06-12 21:57:52 +00:00
|
|
|
|
|
2016-06-05 22:02:49 +00:00
|
|
|
|
// update the CRT
|
|
|
|
|
if(_this_state != _output_state)
|
|
|
|
|
{
|
|
|
|
|
switch(_output_state)
|
|
|
|
|
{
|
2016-06-13 02:27:58 +00:00
|
|
|
|
case State::Sync: _crt->output_sync(_cycles_in_state * 4); break;
|
|
|
|
|
case State::ColourBurst: _crt->output_colour_burst(_cycles_in_state * 4, _is_odd_frame ? 128 : 0, 0); break;
|
|
|
|
|
case State::Border: output_border(_cycles_in_state * 4); break;
|
|
|
|
|
case State::Pixels: _crt->output_data(_cycles_in_state * 4, 1); break;
|
2016-06-05 22:02:49 +00:00
|
|
|
|
}
|
|
|
|
|
_output_state = _this_state;
|
|
|
|
|
_cycles_in_state = 0;
|
|
|
|
|
|
|
|
|
|
pixel_pointer = nullptr;
|
|
|
|
|
if(_output_state == State::Pixels)
|
|
|
|
|
{
|
|
|
|
|
pixel_pointer = _crt->allocate_write_area(260);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_cycles_in_state++;
|
|
|
|
|
|
|
|
|
|
// compute the address
|
|
|
|
|
if(_this_state == State::Pixels)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
Per http://tinyvga.com/6561 :
|
|
|
|
|
|
|
|
|
|
The basic video timing is very simple. For
|
|
|
|
|
every character the VIC-I is about to display, it first fetches the
|
|
|
|
|
character code and colour, then the character appearance (from the
|
|
|
|
|
character generator memory). The character codes are read on every
|
|
|
|
|
raster line, thus making every line a "bad line". When the raster
|
|
|
|
|
beam is outside of the text window, the videochip reads from $001c for
|
|
|
|
|
most time. (Some videochips read from $181c instead.) The address
|
|
|
|
|
occasionally varies, but it might also be due to a flaky bus. (By
|
|
|
|
|
reading from unconnected address space, such as $9100-$910f, you can
|
|
|
|
|
read the data fetched by the videochip on the previous clock cycle.)
|
|
|
|
|
*/
|
|
|
|
|
if(_column_counter&1)
|
2016-06-06 11:35:35 +00:00
|
|
|
|
{
|
2016-06-12 15:23:57 +00:00
|
|
|
|
return _character_cell_start_address + (_character_code*(_tall_characters ? 16 : 8)) + (_row_counter&(_tall_characters ? 15 : 7));
|
2016-06-06 11:35:35 +00:00
|
|
|
|
}
|
2016-06-05 22:02:49 +00:00
|
|
|
|
else
|
2016-06-06 11:35:35 +00:00
|
|
|
|
{
|
|
|
|
|
uint16_t result = _video_matrix_address_counter;
|
|
|
|
|
_video_matrix_address_counter++;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2016-06-05 22:02:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-05 18:05:31 +00:00
|
|
|
|
return 0x1c;
|
2016-06-05 16:11:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-05 20:28:06 +00:00
|
|
|
|
void MOS6560::set_graphics_value(uint8_t value, uint8_t colour_value)
|
2016-06-05 16:11:12 +00:00
|
|
|
|
{
|
2016-06-06 11:47:30 +00:00
|
|
|
|
// TODO: this isn't correct, as _character_value will be
|
|
|
|
|
// accessed second, then output will roll over. Probably it's
|
2016-06-07 00:18:24 +00:00
|
|
|
|
// correct (given the delays upstream) to output all 8 on an &1
|
2016-06-06 11:47:30 +00:00
|
|
|
|
// and to adjust the signalling to the CRT above?
|
2016-06-05 22:02:49 +00:00
|
|
|
|
if(_this_state == State::Pixels)
|
|
|
|
|
{
|
|
|
|
|
if(_column_counter&1)
|
|
|
|
|
{
|
2016-06-06 11:35:35 +00:00
|
|
|
|
_character_value = value;
|
|
|
|
|
|
2016-06-05 22:02:49 +00:00
|
|
|
|
if(pixel_pointer)
|
|
|
|
|
{
|
2016-06-12 21:27:57 +00:00
|
|
|
|
uint8_t cell_colour = _colours[_character_colour & 0x7];
|
2016-06-07 00:18:24 +00:00
|
|
|
|
if(!(_character_colour&0x8))
|
|
|
|
|
{
|
|
|
|
|
pixel_pointer[0] = ((_character_value >> 7)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[1] = ((_character_value >> 6)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[2] = ((_character_value >> 5)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[3] = ((_character_value >> 4)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[4] = ((_character_value >> 3)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[5] = ((_character_value >> 2)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[6] = ((_character_value >> 1)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
pixel_pointer[7] = ((_character_value >> 0)&1) ? cell_colour : _backgroundColour;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
uint8_t colours[4] = {_backgroundColour, _borderColour, cell_colour, _auxiliary_colour};
|
|
|
|
|
pixel_pointer[0] =
|
|
|
|
|
pixel_pointer[1] = colours[(_character_value >> 6)&3];
|
|
|
|
|
pixel_pointer[2] =
|
|
|
|
|
pixel_pointer[3] = colours[(_character_value >> 4)&3];
|
|
|
|
|
pixel_pointer[4] =
|
|
|
|
|
pixel_pointer[5] = colours[(_character_value >> 2)&3];
|
|
|
|
|
pixel_pointer[6] =
|
|
|
|
|
pixel_pointer[7] = colours[(_character_value >> 0)&3];
|
|
|
|
|
}
|
|
|
|
|
pixel_pointer += 8;
|
2016-06-05 22:02:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_character_code = value;
|
|
|
|
|
_character_colour = colour_value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-05 16:11:12 +00:00
|
|
|
|
}
|
2016-06-13 23:30:52 +00:00
|
|
|
|
|
|
|
|
|
void MOS6560::update_audio()
|
|
|
|
|
{
|
|
|
|
|
// _speaker.run_for_cycles(_cycles_since_speaker_update >> 4);
|
|
|
|
|
_cycles_since_speaker_update &= 15;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma mark - Audio
|
|
|
|
|
|
|
|
|
|
MOS6560Speaker::MOS6560Speaker()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MOS6560Speaker::set_volume(uint8_t volume)
|
|
|
|
|
{
|
|
|
|
|
// printf("Volume is %d\n", volume);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MOS6560Speaker::set_control(int channel, uint8_t volume)
|
|
|
|
|
{
|
|
|
|
|
// NTSC: 1022727
|
|
|
|
|
//N: bass switch, R: freq f=Phi2/256/(255-$900a) NTSC: Phi2=14318181/14 Hz
|
|
|
|
|
//O: alto switch, S: freq f=Phi2/128/(255-$900b) PAL: Phi2=4433618/4 Hz
|
|
|
|
|
//P: soprano switch, T: freq f=Phi2/64/(255-$900c)
|
|
|
|
|
//Q: noise switch, U: freq f=Phi2/32/(255-$900d)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MOS6560Speaker::get_samples(unsigned int number_of_samples, int16_t *target)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MOS6560Speaker::skip_samples(unsigned int number_of_samples)
|
|
|
|
|
{
|
|
|
|
|
}
|