https://github.com/sleepingcat4/emulator6502
Emulator of CPU written in combination of C and C++
https://github.com/sleepingcat4/emulator6502
cpp cpu-emulator
Last synced: 5 months ago
JSON representation
Emulator of CPU written in combination of C and C++
- Host: GitHub
- URL: https://github.com/sleepingcat4/emulator6502
- Owner: sleepingcat4
- License: mit
- Created: 2023-09-05T04:15:42.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-05T04:27:36.000Z (almost 3 years ago)
- Last Synced: 2025-01-23T05:20:17.261Z (over 1 year ago)
- Topics: cpp, cpu-emulator
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Emulators are a fun way to interact with a particular piece of ancient hardware/software. Quite often, we find ourselves in-need of emulators, either for fun purposes/educational reasons.
Having this in mind, I wrote a simple emulator for CPU 6502 in C++. Though the syntax is similar to `C`.
##### Quite a reason but why?
I recently started to practise `C++` in a serious manner. After teaching myself and going over the fundamentals to intermediate, I wanted to challenge myself to test my knowledge in writing an emulator in C++. Better than solving boring leetCode and (Algorithm syntax is still being learnt, haha!)
To challenge myself and test my understanding of C++, I wrote an emulator in `C++` (Challenging but easier than solving Algorithms).
**Note:** I used third-party help while writing this emulator core.