Sentinel65X-Handbook/CPU.md

35 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2024-03-22 06:24:02 +01:00
---
gitea: none
include_toc: true
---
2024-03-22 06:18:23 +01:00
# CPU
2024-03-23 04:01:38 +01:00
2024-03-23 04:09:31 +01:00
Sentinel 65X uses the [WDC W65C265S](https://www.westerndesigncenter.com/wdc/w65c265s-chip.php) CPU from [Western Design Center](https://www.westerndesigncenter.com) as its main processor.
2024-03-23 04:01:38 +01:00
2024-03-23 04:09:31 +01:00
## Features
- Support for all [65C02](https://www.westerndesigncenter.com/wdc/w65c02s-chip.php) and [65C816](https://www.westerndesigncenter.com/wdc/w65c816s-chip.php) opcodes
2024-03-23 04:01:38 +01:00
- Non-multiplexed 24-bit address bus
- 8-bit data bus
- 7 pre-decoded chip select outputs
- 16MB linear address space
- 29 priority-encoded vectored interrupts
- 8 timer/counters
2024-03-23 04:09:31 +01:00
## Address Bus
The 24-bit address bus in the W65C265S, unlike that of the W65C816S, is not multiplexed -- no external logic is required to separate the address signals from the data bus.
Additionally, the seven built-in chip selects are hard-wired to decode specific memory regions. The address decoding logic provided by the CPU is supplemented in Sentinel 65X by an ATF22LV16 programmable logic device, which handles essential glue logic functions not provided by the CPU itself.
2024-03-23 04:01:38 +01:00
2024-03-23 04:03:09 +01:00
See the section on [memory management](Memory%20Management.md) for details on address decoding.
2024-03-23 04:09:31 +01:00
## Logic Levels
All logic signals on Sentinel 65X are specified as CMOS-compatible, 3.3V VCC.
## References
- [W65C265S Datasheet](https://www.westerndesigncenter.com/wdc/documentation/w65c265s.pdf)