-2

It has been a while that i have started learning 6502 assembly but how can I upload my code After I write it in my PC ?

NJB's Codings
  • 17
  • 1
  • 9

2 Answers2

4

The 6502 is a just a processor (i.e. CPU only), not a complete microcontroller (MCU) with RAM, non-volatile ROM, and maybe other peripherals.

https://en.wikipedia.org/wiki/MOS_Technology_6502

So, you cannot "upload" a program to a simple CPU. You must create a minimal circuit which includes RAM at least (static RAM would be easier to manage than dynamic).

If you want to make practice with the 6502 assembly, I suggest to dig into a variety of emulators. Here is a list: http://www.6502.org/tools/emu/

Mario Vernari
  • 6,649
  • 1
  • 32
  • 44
0

I suggest use WinVice, a emulator for the 8-bit computer C64 that uses the 6510. It is a modified form of the very successful 6502

alvalongo
  • 523
  • 3
  • 11