mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-03 12:07:26 +00:00
Fixed processor port addresses.
This commit is contained in:
parent
8d0d36e50b
commit
1b9f523f8f
@ -4,6 +4,8 @@
|
|||||||
// The processor port of the MOS 7501 CPU
|
// The processor port of the MOS 7501 CPU
|
||||||
// http://hackjunk.com/2017/06/23/commodore-16-plus-4-8501-to-6510-cpu-conversion/
|
// http://hackjunk.com/2017/06/23/commodore-16-plus-4-8501-to-6510-cpu-conversion/
|
||||||
struct MOS7501_PORT {
|
struct MOS7501_PORT {
|
||||||
|
// The data direction of the port
|
||||||
|
char DDR;
|
||||||
// The on-chip processor port
|
// The on-chip processor port
|
||||||
// P0: SER DAT OUT
|
// P0: SER DAT OUT
|
||||||
// P1: SER CLK OUT / CASS WRT
|
// P1: SER CLK OUT / CASS WRT
|
||||||
@ -13,6 +15,4 @@ struct MOS7501_PORT {
|
|||||||
// P6: SER CLK IN
|
// P6: SER CLK IN
|
||||||
// P7: SER DAT IN
|
// P7: SER DAT IN
|
||||||
char PORT;
|
char PORT;
|
||||||
// The data direction of the port
|
|
||||||
char DDR;
|
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user