mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
Adds quick notes on port FE.
This commit is contained in:
parent
17f551e89d
commit
b830d62850
@ -118,6 +118,10 @@ template<Model model> class ConcreteMachine:
|
|||||||
// TODO: rest of port FE.
|
// TODO: rest of port FE.
|
||||||
update_audio();
|
update_audio();
|
||||||
audio_toggle_.set_output(*cycle.value & 0x10);
|
audio_toggle_.set_output(*cycle.value & 0x10);
|
||||||
|
|
||||||
|
// b0–b2: border colour
|
||||||
|
// b3: enable tape input (?)
|
||||||
|
// b4: tape and speaker output
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(address) {
|
switch(address) {
|
||||||
@ -157,6 +161,10 @@ template<Model model> class ConcreteMachine:
|
|||||||
case PartialMachineCycle::Input:
|
case PartialMachineCycle::Input:
|
||||||
if(!(address&1)) {
|
if(!(address&1)) {
|
||||||
// TODO: port FE.
|
// TODO: port FE.
|
||||||
|
|
||||||
|
// address b8+: mask of keyboard lines to select
|
||||||
|
// result: b0–b4: mask of keys pressed
|
||||||
|
// b6: tape input
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(address) {
|
switch(address) {
|
||||||
|
Loading…
Reference in New Issue
Block a user