The 6502, developed by MOS Technology, is an 8-bit microprocessor (with a 16-bit address bus) that was in common use as a microcomputer CPU from the late 1970s through the early 1990s. Notably Commodore, Apple, Atari and Nintendo featured the device in numerous microcomputers and video-game consoles ...
1
vote
1answer
28 views
CA65: 'Range error' from 16-bit computed address
Given the following CA65 code:
foo = $82
.scope
LDA #$ff
STA foo*$40
.endscope
I get this error message:
foo.s(5): Error: Range error (8320 not in [0..255])
Interestingly, the ...
1
vote
1answer
24 views
Is there a way to add 6502 Assembly to Google Code Prettify?
I have blog that is using Google Code Prettify. My blog has a lot of 6502 Assembly Language code and I would like to add the instructions and directives.
I was hoping someone out there has learned ...
4
votes
4answers
111 views
Seeing how Instructions get Translated (Computer Architecture)
Little bit of a confusing question. But Im really looking for learning some low level programming. Thing is, Dev boards like Arduino/Etc. really hide alot of whats going on.
I have spent some time ...
3
votes
1answer
43 views
CBM Program Studio Assembler syntax
I'm trying to learn CBM Program Studio. But I can't get macros work for me. Withouth the macro the codes was ok. But when I add the macro part it gives "No Matching End Definition" on line 7.
Any ...
3
votes
3answers
81 views
6502 Relative Address mode wrapping
Reading the documentation on the 6502, and I havent been able to find this answered anywhere. It's possible to wrap when using relative addressing. But is it possible to wrap around both ends? I am ...
7
votes
2answers
114 views
How to define VALUE and TO
Simple I want the forth words VALUE and TO on a rpc/8 (an emulated computer in a minecraft mod). My best attempts get me a set of words that work fine so long as I don't use them while compiling. More ...
1
vote
1answer
78 views
How do I convert nibbles to values in 6502 assembly?
I am working on a decompression algorithm for a binary format that stores screen files for my NES project. The NES screen resolution is 260x240. I am creating meta-tiles in 2x2 pixel format. The ...
2
votes
4answers
114 views
What methods for using control flow are there in 6502?
I am trying to understand control flow in 6502 assembly.
Say I have the following code:
ControlFlow:
lda mem
cmp #1
bne .sub_one
cmp #2
bne .sub_two
...
0
votes
2answers
100 views
How do I set bits to 0 with boolean arithmetic?
Still new to bitwise operations in 6502 assembly. I would like to have a byte that
has 8 flags. This will store the status of my meta-sprite.
I want to be able to set specific flags without ...
1
vote
2answers
89 views
How to calculate table offsets
I am looking for a cost effective way of accessing records in my 6502 table.
The table is 8 bytes long. Using indrect Y, I can offset the fields, but I
want a way to get to the next 0th record.
I ...
2
votes
1answer
108 views
Decrementing (DEX/DEY Opcodes) when X and Y are 0 for 6502 Cpu
I'm currently attempting to write an NES emulator through .NET and I have a question about the particular opcodes that do decrementing and incrementing...
Since X, and Y registers are 8 bits, in ...
1
vote
2answers
152 views
x86 Assembly Learning Platform
I've been fiddling with assembly, lately, and I've learned a lot. I was using 6502asm.com. 6502asm.com is a javascript assembler and emulator for 6502 assembly. Here's what I like about it: Input and ...
1
vote
2answers
122 views
How do you set bytes directly with DASM?
I'm learning 6502 assembly language, and having trouble working something out. I've been trying out a JavaScript 6502 assembler/emulator, and noticed that most examples have a section that looks like:
...
8
votes
3answers
368 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, ...
2
votes
2answers
353 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?
5
votes
1answer
3k 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
1answer
585 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 ...
3
votes
10answers
660 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 ...
7
votes
1answer
267 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 ...
4
votes
3answers
625 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 ...
0
votes
2answers
1k 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 ...
8
votes
7answers
3k 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 ...
11
votes
5answers
2k views
6502 CPU Emulation
It's 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 ...