Tagged Questions
3
votes
1answer
553 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 ...
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 ...