Tagged Questions

20
votes
8answers
5k views

Best resource for serious Commodore 64 programming

What is the best resource for serious Commodore 64 programming? Assume that serious programming on the Commodore 64 is not done in BASIC V2 that ships with the Commodore 64. I feel like most of the ...
6
votes
1answer
244 views

Help with 68k assembly - jump tables?

I'm working on reverse engineering a large Amiga program in IDA, and I've made a ton of progress. However, there is some stuff I can't quite figure out. Namely, I have found several subroutines which ...
3
votes
3answers
317 views

Where can I find assembler instruction specification info for the Motorola 68000?

I'm looking for information for machine language instruction encoding formats for the Motorola 68000 processor. I have used the The Motorola Mc68000 Microprocessor Family: Assembly Language, ...
2
votes
3answers
86 views

The real speed of a computer

How fast does each assembly language instruction take? Do operations like set, read, move and compare all take the same time to execute? If not: Is there any way to find out how long. Is there ...
1
vote
3answers
212 views

PowerPC moving to variable SPR

I'm writing an assembly macro to a C-program, and being quite new with this I have gotten stuck on something. I'm trying to write a macro for moving data from a general purpose register to a special ...
0
votes
1answer
123 views

machine code template for immediate addressing

what is the machine code language for immediate addressing.. if the machine code template for register adddressing is OPCODE(6 bits) D(1 bit) W(1 bit) MOD(2bits) REG(3bits) R/M(3bits) total 16 ...
0
votes
3answers
305 views

Conditional Move on the PowerPC

Is there a conditional-move-equivalent on the PowerPC (32 or 64) instruction set? It can obviously be emulated using a conditional branch, but I want something that outperforms that.