2016-06-05 01:43:50 +00:00
|
|
|
//
|
|
|
|
// Vic20.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Vic20_hpp
|
|
|
|
#define Vic20_hpp
|
|
|
|
|
2016-09-08 09:32:17 +00:00
|
|
|
#include "../../ConfigurationTarget.hpp"
|
2016-07-10 16:57:17 +00:00
|
|
|
#include "../../CRTMachine.hpp"
|
|
|
|
#include "../../Typer.hpp"
|
|
|
|
|
2017-05-15 02:08:15 +00:00
|
|
|
#include "../../../Processors/6502/6502.hpp"
|
2016-07-05 17:28:27 +00:00
|
|
|
#include "../../../Components/6560/6560.hpp"
|
|
|
|
#include "../../../Components/6522/6522.hpp"
|
2016-07-10 16:57:17 +00:00
|
|
|
|
2016-07-05 18:55:20 +00:00
|
|
|
#include "../SerialBus.hpp"
|
2016-07-10 16:57:17 +00:00
|
|
|
#include "../1540/C1540.hpp"
|
2016-06-19 17:10:52 +00:00
|
|
|
|
2016-07-10 16:57:17 +00:00
|
|
|
#include "../../../Storage/Tape/Tape.hpp"
|
|
|
|
#include "../../../Storage/Disk/Disk.hpp"
|
2016-06-05 01:43:50 +00:00
|
|
|
|
2016-07-05 17:28:27 +00:00
|
|
|
namespace Commodore {
|
2016-06-05 01:43:50 +00:00
|
|
|
namespace Vic20 {
|
|
|
|
|
2016-06-05 13:06:59 +00:00
|
|
|
enum ROMSlot {
|
2016-07-05 20:39:18 +00:00
|
|
|
Kernel,
|
|
|
|
BASIC,
|
|
|
|
Characters,
|
|
|
|
Drive
|
2016-06-05 13:06:59 +00:00
|
|
|
};
|
|
|
|
|
2016-08-13 21:21:25 +00:00
|
|
|
enum MemorySize {
|
|
|
|
Default,
|
|
|
|
ThreeKB,
|
|
|
|
ThirtyTwoKB
|
|
|
|
};
|
|
|
|
|
2016-08-14 17:33:20 +00:00
|
|
|
enum Region {
|
|
|
|
NTSC,
|
|
|
|
PAL
|
|
|
|
};
|
|
|
|
|
2016-06-11 15:50:37 +00:00
|
|
|
#define key(line, mask) (((mask) << 3) | (line))
|
|
|
|
|
|
|
|
enum Key: uint16_t {
|
2016-06-11 16:26:19 +00:00
|
|
|
Key2 = key(7, 0x01), Key4 = key(7, 0x02), Key6 = key(7, 0x04), Key8 = key(7, 0x08),
|
|
|
|
Key0 = key(7, 0x10), KeyDash = key(7, 0x20), KeyHome = key(7, 0x40), KeyF7 = key(7, 0x80),
|
|
|
|
KeyQ = key(6, 0x01), KeyE = key(6, 0x02), KeyT = key(6, 0x04), KeyU = key(6, 0x08),
|
|
|
|
KeyO = key(6, 0x10), KeyAt = key(6, 0x20), KeyUp = key(6, 0x40), KeyF5 = key(6, 0x80),
|
|
|
|
KeyCBM = key(5, 0x01), KeyS = key(5, 0x02), KeyF = key(5, 0x04), KeyH = key(5, 0x08),
|
|
|
|
KeyK = key(5, 0x10), KeyColon = key(5, 0x20), KeyEquals = key(5, 0x40), KeyF3 = key(5, 0x80),
|
|
|
|
KeySpace = key(4, 0x01), KeyZ = key(4, 0x02), KeyC = key(4, 0x04), KeyB = key(4, 0x08),
|
|
|
|
KeyM = key(4, 0x10), KeyFullStop = key(4, 0x20), KeyRShift = key(4, 0x40), KeyF1 = key(4, 0x80),
|
|
|
|
KeyRunStop = key(3, 0x01), KeyLShift = key(3, 0x02), KeyX = key(3, 0x04), KeyV = key(3, 0x08),
|
|
|
|
KeyN = key(3, 0x10), KeyComma = key(3, 0x20), KeySlash = key(3, 0x40), KeyDown = key(3, 0x80),
|
|
|
|
KeyControl = key(2, 0x01), KeyA = key(2, 0x02), KeyD = key(2, 0x04), KeyG = key(2, 0x08),
|
|
|
|
KeyJ = key(2, 0x10), KeyL = key(2, 0x20), KeySemicolon = key(2, 0x40), KeyRight = key(2, 0x80),
|
|
|
|
KeyLeft = key(1, 0x01), KeyW = key(1, 0x02), KeyR = key(1, 0x04), KeyY = key(1, 0x08),
|
|
|
|
KeyI = key(1, 0x10), KeyP = key(1, 0x20), KeyAsterisk = key(1, 0x40), KeyReturn = key(1, 0x80),
|
|
|
|
Key1 = key(0, 0x01), Key3 = key(0, 0x02), Key5 = key(0, 0x04), Key7 = key(0, 0x08),
|
2016-06-11 17:19:59 +00:00
|
|
|
Key9 = key(0, 0x10), KeyPlus = key(0, 0x20), KeyGBP = key(0, 0x40), KeyDelete = key(0, 0x80),
|
2016-06-19 17:46:53 +00:00
|
|
|
|
2016-11-05 19:28:03 +00:00
|
|
|
TerminateSequence = 0xffff, NotMapped = 0xfffe
|
2016-06-11 15:50:37 +00:00
|
|
|
};
|
|
|
|
|
2016-07-05 01:48:25 +00:00
|
|
|
enum JoystickInput {
|
|
|
|
Up = 0x04,
|
|
|
|
Down = 0x08,
|
|
|
|
Left = 0x10,
|
|
|
|
Right = 0x80,
|
|
|
|
Fire = 0x20
|
|
|
|
};
|
|
|
|
|
2016-06-18 12:51:18 +00:00
|
|
|
class UserPortVIA: public MOS::MOS6522<UserPortVIA>, public MOS::MOS6522IRQDelegate {
|
2016-06-26 23:50:49 +00:00
|
|
|
public:
|
2016-10-21 01:05:32 +00:00
|
|
|
UserPortVIA();
|
2016-07-04 23:10:10 +00:00
|
|
|
using MOS6522IRQDelegate::set_interrupt_status;
|
2016-07-05 01:48:25 +00:00
|
|
|
|
2016-10-21 01:05:32 +00:00
|
|
|
uint8_t get_port_input(Port port);
|
|
|
|
void set_control_line_output(Port port, Line line, bool value);
|
|
|
|
void set_serial_line_state(::Commodore::Serial::Line line, bool value);
|
|
|
|
void set_joystick_state(JoystickInput input, bool value);
|
|
|
|
void set_port_output(Port port, uint8_t value, uint8_t mask);
|
2016-07-05 01:48:25 +00:00
|
|
|
|
2016-10-21 01:05:32 +00:00
|
|
|
void set_serial_port(std::shared_ptr<::Commodore::Serial::Port> serialPort);
|
2017-05-07 02:00:12 +00:00
|
|
|
void set_tape(std::shared_ptr<Storage::Tape::BinaryTapePlayer> tape);
|
2016-07-05 14:55:47 +00:00
|
|
|
|
2016-07-05 01:48:25 +00:00
|
|
|
private:
|
2016-12-03 18:30:27 +00:00
|
|
|
uint8_t port_a_;
|
|
|
|
std::weak_ptr<::Commodore::Serial::Port> serial_port_;
|
2017-05-07 02:00:12 +00:00
|
|
|
std::shared_ptr<Storage::Tape::BinaryTapePlayer> tape_;
|
2016-06-07 23:15:18 +00:00
|
|
|
};
|
|
|
|
|
2016-06-18 12:51:18 +00:00
|
|
|
class KeyboardVIA: public MOS::MOS6522<KeyboardVIA>, public MOS::MOS6522IRQDelegate {
|
2016-06-11 15:50:37 +00:00
|
|
|
public:
|
2016-10-21 01:05:32 +00:00
|
|
|
KeyboardVIA();
|
|
|
|
using MOS6522IRQDelegate::set_interrupt_status;
|
2016-06-12 14:38:21 +00:00
|
|
|
|
2016-11-05 18:47:09 +00:00
|
|
|
void set_key_state(uint16_t key, bool isPressed);
|
2016-10-21 01:05:32 +00:00
|
|
|
void clear_all_keys();
|
2016-06-11 15:50:37 +00:00
|
|
|
|
|
|
|
// to satisfy MOS::MOS6522
|
2016-10-21 01:05:32 +00:00
|
|
|
uint8_t get_port_input(Port port);
|
2016-06-11 15:50:37 +00:00
|
|
|
|
2016-10-21 01:05:32 +00:00
|
|
|
void set_port_output(Port port, uint8_t value, uint8_t mask);
|
|
|
|
void set_control_line_output(Port port, Line line, bool value);
|
2016-06-11 15:50:37 +00:00
|
|
|
|
2016-10-21 01:05:32 +00:00
|
|
|
void set_joystick_state(JoystickInput input, bool value);
|
2016-07-01 23:01:22 +00:00
|
|
|
|
2016-10-21 01:05:32 +00:00
|
|
|
void set_serial_port(std::shared_ptr<::Commodore::Serial::Port> serialPort);
|
2016-07-05 14:55:47 +00:00
|
|
|
|
2016-06-11 15:50:37 +00:00
|
|
|
private:
|
2016-12-03 18:30:27 +00:00
|
|
|
uint8_t port_b_;
|
|
|
|
uint8_t columns_[8];
|
|
|
|
uint8_t activation_mask_;
|
|
|
|
std::weak_ptr<::Commodore::Serial::Port> serial_port_;
|
2016-07-05 20:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SerialPort : public ::Commodore::Serial::Port {
|
|
|
|
public:
|
2016-10-21 01:05:32 +00:00
|
|
|
void set_input(::Commodore::Serial::Line line, ::Commodore::Serial::LineLevel level);
|
|
|
|
void set_user_port_via(std::shared_ptr<UserPortVIA> userPortVIA);
|
2016-07-05 20:10:54 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-03 18:30:27 +00:00
|
|
|
std::weak_ptr<UserPortVIA> user_port_via_;
|
2016-06-07 23:15:18 +00:00
|
|
|
};
|
|
|
|
|
2016-08-10 00:41:05 +00:00
|
|
|
class Vic6560: public MOS::MOS6560<Vic6560> {
|
|
|
|
public:
|
2017-03-26 18:34:47 +00:00
|
|
|
inline void perform_read(uint16_t address, uint8_t *pixel_data, uint8_t *colour_data) {
|
2016-12-03 18:30:27 +00:00
|
|
|
*pixel_data = video_memory_map[address >> 10] ? video_memory_map[address >> 10][address & 0x3ff] : 0xff; // TODO
|
|
|
|
*colour_data = colour_memory[address & 0x03ff];
|
2016-08-10 00:41:05 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 18:30:27 +00:00
|
|
|
uint8_t *video_memory_map[16];
|
|
|
|
uint8_t *colour_memory;
|
2016-08-10 00:41:05 +00:00
|
|
|
};
|
2016-06-26 23:43:09 +00:00
|
|
|
|
2016-06-19 17:10:52 +00:00
|
|
|
class Machine:
|
2017-05-15 02:08:15 +00:00
|
|
|
public CPU::MOS6502::Processor<Machine>,
|
2016-06-19 17:10:52 +00:00
|
|
|
public CRTMachine::Machine,
|
|
|
|
public MOS::MOS6522IRQDelegate::Delegate,
|
2016-06-26 23:43:09 +00:00
|
|
|
public Utility::TypeRecipient,
|
2016-10-16 01:21:18 +00:00
|
|
|
public Storage::Tape::BinaryTapePlayer::Delegate,
|
2016-09-08 09:32:17 +00:00
|
|
|
public ConfigurationTarget::Machine {
|
2016-06-19 17:10:52 +00:00
|
|
|
|
2016-06-05 02:00:50 +00:00
|
|
|
public:
|
2016-06-05 14:51:07 +00:00
|
|
|
Machine();
|
2016-06-11 18:00:12 +00:00
|
|
|
~Machine();
|
2016-06-05 13:06:59 +00:00
|
|
|
|
|
|
|
void set_rom(ROMSlot slot, size_t length, const uint8_t *data);
|
2016-09-08 02:17:19 +00:00
|
|
|
void configure_as_target(const StaticAnalyser::Target &target);
|
2016-06-25 20:24:52 +00:00
|
|
|
|
2016-12-03 18:30:27 +00:00
|
|
|
void set_key_state(uint16_t key, bool isPressed) { keyboard_via_->set_key_state(key, isPressed); }
|
|
|
|
void clear_all_keys() { keyboard_via_->clear_all_keys(); }
|
2016-07-05 01:48:25 +00:00
|
|
|
void set_joystick_state(JoystickInput input, bool isPressed) {
|
2016-12-03 18:30:27 +00:00
|
|
|
user_port_via_->set_joystick_state(input, isPressed);
|
|
|
|
keyboard_via_->set_joystick_state(input, isPressed);
|
2016-07-05 01:48:25 +00:00
|
|
|
}
|
2016-08-14 17:33:20 +00:00
|
|
|
|
2016-08-13 21:21:25 +00:00
|
|
|
void set_memory_size(MemorySize size);
|
2016-08-14 17:33:20 +00:00
|
|
|
void set_region(Region region);
|
2016-06-05 13:06:59 +00:00
|
|
|
|
2016-12-03 18:30:27 +00:00
|
|
|
inline void set_use_fast_tape_hack(bool activate) { use_fast_tape_hack_ = activate; }
|
2016-06-28 01:38:14 +00:00
|
|
|
|
2017-05-15 02:08:15 +00:00
|
|
|
// to satisfy CPU::MOS6502::Processor
|
|
|
|
unsigned int perform_bus_operation(CPU::MOS6502::BusOperation operation, uint16_t address, uint8_t *value);
|
2017-05-15 11:38:59 +00:00
|
|
|
void flush() { mos6560_->flush(); }
|
2016-06-05 02:00:50 +00:00
|
|
|
|
|
|
|
// to satisfy CRTMachine::Machine
|
2016-06-05 14:51:07 +00:00
|
|
|
virtual void setup_output(float aspect_ratio);
|
2016-07-05 00:34:11 +00:00
|
|
|
virtual void close_output();
|
2016-12-03 18:30:27 +00:00
|
|
|
virtual std::shared_ptr<Outputs::CRT::CRT> get_crt() { return mos6560_->get_crt(); }
|
|
|
|
virtual std::shared_ptr<Outputs::Speaker> get_speaker() { return mos6560_->get_speaker(); }
|
2017-05-15 02:08:15 +00:00
|
|
|
virtual void run_for_cycles(int number_of_cycles) { CPU::MOS6502::Processor<Machine>::run_for_cycles(number_of_cycles); }
|
2016-06-05 14:51:07 +00:00
|
|
|
|
2016-06-10 02:37:59 +00:00
|
|
|
// to satisfy MOS::MOS6522::Delegate
|
|
|
|
virtual void mos6522_did_change_interrupt_status(void *mos6522);
|
|
|
|
|
2016-06-19 17:10:52 +00:00
|
|
|
// for Utility::TypeRecipient
|
2016-11-05 19:07:57 +00:00
|
|
|
uint16_t *sequence_for_character(Utility::Typer *typer, char character);
|
2016-06-19 17:10:52 +00:00
|
|
|
|
2016-06-26 23:43:09 +00:00
|
|
|
// for Tape::Delegate
|
2016-10-16 01:21:18 +00:00
|
|
|
virtual void tape_did_change_input(Storage::Tape::BinaryTapePlayer *tape);
|
2016-06-26 23:43:09 +00:00
|
|
|
|
2016-06-05 14:51:07 +00:00
|
|
|
private:
|
2016-12-03 18:30:27 +00:00
|
|
|
uint8_t character_rom_[0x1000];
|
|
|
|
uint8_t basic_rom_[0x2000];
|
|
|
|
uint8_t kernel_rom_[0x2000];
|
|
|
|
uint8_t expansion_ram_[0x8000];
|
|
|
|
|
|
|
|
uint8_t *rom_;
|
|
|
|
uint16_t rom_address_, rom_length_;
|
|
|
|
|
|
|
|
uint8_t user_basic_memory_[0x0400];
|
|
|
|
uint8_t screen_memory_[0x1000];
|
|
|
|
uint8_t colour_memory_[0x0400];
|
2017-07-16 17:54:07 +00:00
|
|
|
std::vector<uint8_t> drive_rom_;
|
2016-12-03 18:30:27 +00:00
|
|
|
|
|
|
|
uint8_t *processor_read_memory_map_[64];
|
|
|
|
uint8_t *processor_write_memory_map_[64];
|
2016-07-01 23:01:22 +00:00
|
|
|
void write_to_map(uint8_t **map, uint8_t *area, uint16_t address, uint16_t length);
|
2016-06-05 20:00:35 +00:00
|
|
|
|
2016-12-03 18:30:27 +00:00
|
|
|
Region region_;
|
2016-08-14 17:33:20 +00:00
|
|
|
|
2016-12-03 18:30:27 +00:00
|
|
|
std::unique_ptr<Vic6560> mos6560_;
|
|
|
|
std::shared_ptr<UserPortVIA> user_port_via_;
|
|
|
|
std::shared_ptr<KeyboardVIA> keyboard_via_;
|
|
|
|
std::shared_ptr<SerialPort> serial_port_;
|
|
|
|
std::shared_ptr<::Commodore::Serial::Bus> serial_bus_;
|
2016-06-28 01:38:14 +00:00
|
|
|
|
|
|
|
// Tape
|
2017-05-07 02:00:12 +00:00
|
|
|
std::shared_ptr<Storage::Tape::BinaryTapePlayer> tape_;
|
2017-05-14 20:59:24 +00:00
|
|
|
bool use_fast_tape_hack_;
|
2016-12-03 18:30:27 +00:00
|
|
|
bool is_running_at_zero_cost_;
|
2016-07-05 20:39:18 +00:00
|
|
|
|
2016-08-06 18:33:24 +00:00
|
|
|
// Disk
|
2016-12-03 18:30:27 +00:00
|
|
|
std::shared_ptr<::Commodore::C1540::Machine> c1540_;
|
2016-08-06 18:33:24 +00:00
|
|
|
void install_disk_rom();
|
2016-06-05 01:43:50 +00:00
|
|
|
};
|
|
|
|
|
2016-07-05 17:28:27 +00:00
|
|
|
}
|
2016-06-05 01:43:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Vic20_hpp */
|