Tagged Questions
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.
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 ...