Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
16
votes
14answers
1k views

Can someone tell me the very basics of how computer programming works?

Basically, my question is what makes all the words of a programming language actually do anything? I mean, what's actually happening to make the computer know what all of those words mean? If I ...
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 ...
6
votes
1answer
243 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 ...
4
votes
5answers
119 views

Are compiled programs actually in true binary?

For example, when I compile a C application is the outputted file read as binary or does the OS then interpret the compilation? Is the "machine language" pure binary? EDIT: Yes, everything on a ...
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
4answers
138 views

what do I need to start writing in machine language? [closed]

I want to start learning the machine language, you know the 0010011 type language. What program if any, can I use to write in machine language? please, I know you guys are going to tell me that ...
1
vote
4answers
180 views

How many machine instructions are needed for a function call in C?

I'd like to know how many instructions are needed for a function call in a C program compiled with gcc for x86 platforms from start to finish.
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
132 views

Simulating basic machine language in C.

So for my assignment I have to simulate basic machine language with C. The machine has 16 registers (reg[]), a program counter(pc) and memory (mem[]) all of which are unsigned chars. The instructions ...
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.
0
votes
4answers
788 views

Looking for some input on my C++ program. Simpletron, Machine language

Edit: So, seems I do have a problem somewhere in my coding. Whenever I run the program and input a variable, it always returns the same answer.."The content at location 76 is 0. Okay guys, I posted ...
-1
votes
3answers
324 views

I asked this yesterday, after the input given I'm still having trouble implementing

I'm not sure how to fix this or what I did wrong, but whenever I enter in a value it just closes out the run prompt. So, seems I do have a problem somewhere in my coding. Whenever I run the program ...