1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-25 04:18:05 +00:00

Correct uPD7002 interrupt wiring.

This commit is contained in:
Thomas Harte
2025-09-20 21:51:19 -04:00
parent 5e78ac3af5
commit fb5ef200fb
3 changed files with 17 additions and 8 deletions

View File

@@ -24,9 +24,8 @@ void uPD7002::run_for(const HalfCycles count) {
if(count >= conversion_time_remaining_) {
conversion_time_remaining_ = HalfCycles(0);
interrupt_ = true;
result_ = uint16_t(inputs_[channel_] * 65535.0f) & (high_precision_ ? 0xfff0 : 0xff00);
if(delegate_) delegate_->did_change_interrupt_status(*this);
set_interrupt(true);
return;
}
@@ -40,11 +39,11 @@ bool uPD7002::interrupt() const {
void uPD7002::write(const uint16_t address, const uint8_t value) {
const auto local_address = address & 3;
if(!local_address) {
interrupt_ = false;
channel_ = value & 0b0000'0011;
spare_ = value & 0b0000'0100;
high_precision_ = value & 0b0000'1000;
conversion_time_remaining_ = high_precision_ ? slow_period_ : fast_period_;
set_interrupt(false);
return;
}
}
@@ -54,8 +53,7 @@ uint8_t uPD7002::read(const uint16_t address) {
default:
case 0: return status();
case 1:
interrupt_ = false;
if(delegate_) delegate_->did_change_interrupt_status(*this);
set_interrupt(false);
return uint8_t(result_ >> 8);
case 2: return uint8_t(result_);
case 3: return 0xff;
@@ -71,3 +69,13 @@ uint8_t uPD7002::status() const {
(conversion_time_remaining_ > HalfCycles(0) ? 0x00 : 0x40) |
(interrupt_ ? 0x00 : 0x80);
}
void uPD7002::set_delegate(Delegate *const delegate) {
delegate_ = delegate;
}
void uPD7002::set_interrupt(const bool value) {
if(interrupt_ == value) return;
interrupt_ = value;
if(delegate_) delegate_->did_change_interrupt_status(*this);
}