Skip to content

My version of a 6502 Emulator written in C#

Notifications You must be signed in to change notification settings

maxs-rose/6502-CPU-Emulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

6502 CPU Emulator

6502 Emulator

This is my attempt at creating a 6502 CPU emulator in .NET Core

At some point I will also hopefully create a compiler for this as well.

Resources

Things Learned

  • Emulating even a simple processor is very time consuming
  • Understanding all of the addressing modes is hard

Status of completion

  • Instructions
    • Load Ops
    • LDA
    • LDX
    • LDY
    • Store Ops
    • STA
    • STX
    • STY
    • Transfer Ops
    • TAX
    • TAY
    • TXA
    • TYA
    • Stack Ops
    • TSX
    • TXS
    • PHA
    • PHP
    • PLA
    • PLP
    • Logical Ops
    • AND
    • EOR
    • ORA
    • BIT
    • Arithmetic Ops
    • ADC
    • SBC
    • CMP
    • CPX
    • CPY
    • Increment
    • INC
    • INX
    • INY
    • Decrement
    • DEC
    • DEX
    • DEY
    • Shifts
    • ASL
    • LSR
    • ROL
    • ROR
    • Jumps & Calls
    • JMP
    • JSR
    • RTS
    • Branches
    • BCC
    • BCS
    • BEQ
    • BMI
    • BNE
    • BPL
    • BVC
    • BVS
    • Status Flags Changes
    • CLC
    • CLD
    • CLI
    • CLV
    • SEC
    • SED
    • SEI
    • System Functions
    • BRK
    • NOP
    • RTI

About

My version of a 6502 Emulator written in C#

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages