mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
88 lines
1.3 KiB
Plaintext
88 lines
1.3 KiB
Plaintext
//
|
|
// MOS6522Bridge.m
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 18/06/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "MOS6522Bridge.h"
|
|
#include "6522.hpp"
|
|
|
|
@class MOS6522Bridge;
|
|
|
|
class VanillaVIA: public MOS::MOS6522<VanillaVIA> {
|
|
public:
|
|
MOS6522Bridge *bridge;
|
|
bool irq_line;
|
|
uint8_t port_a_value;
|
|
uint8_t port_b_value;
|
|
|
|
void set_interrupt_status(bool new_status)
|
|
{
|
|
irq_line = new_status;
|
|
}
|
|
|
|
uint8_t get_port_input(Port port)
|
|
{
|
|
return port ? port_b_value : port_a_value;
|
|
}
|
|
};
|
|
|
|
@implementation MOS6522Bridge
|
|
{
|
|
VanillaVIA _via;
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if(self)
|
|
{
|
|
_via.bridge = self;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)setValue:(uint8_t)value forRegister:(NSUInteger)registerNumber
|
|
{
|
|
_via.set_register((int)registerNumber, value);
|
|
}
|
|
|
|
- (uint8_t)valueForRegister:(NSUInteger)registerNumber
|
|
{
|
|
return _via.get_register((int)registerNumber);
|
|
}
|
|
|
|
- (void)runForHalfCycles:(NSUInteger)numberOfHalfCycles
|
|
{
|
|
_via.run_for_half_cycles((int)numberOfHalfCycles);
|
|
}
|
|
|
|
- (BOOL)irqLine
|
|
{
|
|
return _via.irq_line;
|
|
}
|
|
|
|
- (void)setPortAInput:(uint8_t)portAInput
|
|
{
|
|
_via.port_a_value = portAInput;
|
|
}
|
|
|
|
- (uint8_t)portAInput
|
|
{
|
|
return _via.port_a_value;
|
|
}
|
|
|
|
- (void)setPortBInput:(uint8_t)portBInput
|
|
{
|
|
_via.port_b_value = portBInput;
|
|
}
|
|
|
|
- (uint8_t)portBInput
|
|
{
|
|
return _via.port_b_value;
|
|
}
|
|
|
|
@end
|