Refactor, update UI, and add notes

This commit is contained in:
2022-10-04 23:41:59 -04:00
parent fde6c7fa69
commit 160f23cb01
31 changed files with 813 additions and 265 deletions

View File

@@ -1,17 +1,43 @@
---
title: MOS 6502 Microprocessor
last_updated: '2022-05-16T14:26:03-04:00'
last_updated: '2022-09-29T02:41:26.738Z'
---
Name | 6502
--- | ---
Introduced | 1975
Data Width | 8-bit
Address Width | 16-bit
Endianness | Little
Registers | 8-bit A, X, Y, Stack. 16-bit PC
Package | 40-pin DIP
Instruction Count | 56
<table>
<tr>
<td>Name</td>
<td>6502</td>
</tr>
<tr>
<td>Introduced</td>
<td>1975</td>
</tr>
<tr>
<td>Data Width</td>
<td>8-bit</td>
</tr>
<tr>
<td>Address Width</td>
<td>16-bit</td>
</tr>
<tr>
<td>Endianness</td>
<td>Little</td>
</tr>
<tr>
<td>Registers</td>
<td>8-bit A, X, Y, Stack. 16-bit PC</td>
</tr>
<tr>
<td>Package</td>
<td>40-pin DIP</td>
</tr>
<tr>
<td>Instruction Count</td>
<td> 56</td>
</tr>
</table>
## Addressing Modes
- Implied
@@ -25,7 +51,7 @@ Instruction Count | 56
- Indirect, Y
## Docs
- [WDC W65C02S NMOS Variant](https://www.westerndesigncenter.com/wdc/documentation/w65c02s.pdf)
- [westerndesigncenter.com: WDC W65C02S NMOS Variant](https://www.westerndesigncenter.com/wdc/documentation/w65c02s.pdf)
- [6502.org: collection of 6502 resources](http://6502.org/)
## Notable Usage (includes variants)