Tagged Questions
The 6502, originally developed by MOS Technology, is an 8-bit microchip (with a 16-bit address bus) that was in common use as a microcomputer CPU from the late 1970s through the early 1990s. It was also featured in several popular game consoles during that time. It is found in the Apple II line, the Nintendo Entertainment System, and many others.
9
votes
6answers
2k views
6502 CPU Emulation
Its the weekend, so I relax from spending all week programming by writing a hobby project.
I wrote the framework of a MOS 6502 CPU emulator yesterday, the registers, stack, memory and all the opcodes ...
8
votes
3answers
127 views
Interested in VM for lisp-like languages on 8-bit system
I'm looking for recommended virtual machines that can run on a 8-bit microprocessor AND support dynamic languages. I'd like a VM solution because I perceive benefits in terms of code density, ...
7
votes
1answer
199 views
How can I test my homebrew Nintendo Entertainment System software on real hardware?
A few years ago, I implemented an NES game as a class project, written in 6502 assembly. I only ever ran it on an NES emulator, but I would like to see it run on the real hardware. Is there any ...
7
votes
6answers
2k views
CPU Emulation and locking to a specific clock speed
If you had read my other question, you'll know I've spent this weekend putting together a 6502 CPU emulator as a programming exercise.
The CPU emulator is mostly complete, and seems to be fairly ...
3
votes
1answer
552 views
Writing a while loop in assembly
I'm trying to write a while loop in assembly with a 6502 processor and I cannot figure out how to write the hexadecimal code. I've seen examples written using the shorthand where there is a label for ...
3
votes
3answers
391 views
Emulator Framework
Are there any good open source frameworks for developing computer system emulators? I am particularly interested in something written in Python or Java that can reduce the effort involved in ...
2
votes
1answer
290 views
Basic NES Emulation theory - I'm stuck
In advance, I apologize for the open endedness, and general wishy-washiness of this question, because to be honest my knowledge of the topic is very patchy and I'm finding it hard to even describe my ...
2
votes
10answers
455 views
Classic assembly language texts not using x86?
I'm looking for texts that give detailed treatment of assembly programming principles and don't use x86 as the target architecture. I haven't found any recent books like that, but I would expect that ...
1
vote
2answers
85 views
Compare keystrokes - Assembly CCS64
I want to compare keystrokes in assembly (CCS64).
If I type in the same key in a row I want to do something
example: A A = do this
but if I type this: A B = do something else
Suggestions?
0
votes
3answers
410 views
Which is the correct branch instruction for branch if less than
I wrote an answer yesterday to this:
http://stackoverflow.com/questions/192479/whats-the-coolest-hack-youve-seen-or-done
and I was trying really hard to remember my 6502 assembly, and I couldn't for ...