CPU registers are small, fast memory storage used by processors to hold data that is being immediately worked with.
0
votes
0answers
10 views
Swap contents of memory locations
I have a questions that I am stuck on..
Here it is:
The ISA has four registers: R0, R1, R2, R3. Either or both of the operands can be registers but both operands cannot be memory locations.
Write ...
0
votes
1answer
31 views
Machine instructions and memory address
This is actually a examination question, i have doubts , i need to know the correct answer and explanation.
Common Questions 1 and 2.
INSTRUCTION INSTRUCTION SIZE (word)
...
2
votes
1answer
40 views
MSP430 - Mixing Ports Registers inside an struct
I am now doing a program for a MSP430 in C and I am using Port 1.6, 1.7, 2.0, 2.1, and 2.2 to drive some LEDs. Now, in order to turn ON all LEDs I simply have to write:
P1OUT |= 0xC0;
P2OUT |= ...
-1
votes
0answers
21 views
What is important in computer clocks' signal: signal edges or intervals when signal is stable? Will multiple value propagation occur? [closed]
I am trying to figure out some basics of digital electronics.
We have all seen the squared graph of the clock signal:
I have read multiple articles on the internet and still can't figure out ...
0
votes
1answer
52 views
All registers are used, what should I do? Assembly language
I'm making a graphical calculator and using the mouse to choose the numbers. I'm using Windows XP
I'm using INT 33h, which requires AX=3 (to click) BX=1 (check if mouse clicked) CX=horizontal ...
0
votes
1answer
10 views
Basic stuff assembler (TASM)
I'm new to assembly language and I would like to ask you the following:
mov ax, y
imul z; dx:ax = y*z
mov bx, dx
mov cx, ax ; bx:cx = y*z
mov ax, x
cwd ; dx:ax = x
sub ax, cx
sbb dx, bx ; dx:ax ...
0
votes
1answer
27 views
Register Value 8086
If AL contains the value 10 and AH contains the value 10 what does AX contain?
I Know AH and AL are two 8 bit registers and AX is AH and AL joined together to be a 16 bit register.
The way I worked ...
0
votes
1answer
33 views
Segfault when trying to reuse register x86 assembly
I have the following assembly code, which is meant to be a simple implementation of the C-function sprintf(). So far, it works fine in parsing %c and %%, and I am now working on implementing %s, it ...
1
vote
1answer
15 views
Questions about Memory models
When I read the book related to compiler , I saw that there are two major memory models.
Register to Register model and Memory to memory model.
In the book, it says that register-to-register models ...
2
votes
3answers
105 views
Calling Assembly functions in C, reverse a string
I am trying to write a c program that will call an assembly function to reverse a string. However, I am having a hard time just getting the assembly code to iterate through the string to find the end ...
1
vote
1answer
36 views
Segmentation fault in python while using ctypes
I am trying to read some registers in hardware (FPGA) using Python.
I already have a C code to read the registers and it works fine. I want to use them in python using ctypes.
rdaxi.c
#include ...
1
vote
1answer
87 views
Assembler and C programming linux -m32 (char-byte from register in assembler)
I'm very new to assembly programming, I wrote a function in C which need to call another function in assembly. It seems like the register wants to give back four characters (bytes) instead of one, ...
-1
votes
1answer
36 views
Constant Time Stamp Clock on Intel i7-3612QE Processor? [closed]
Intel processors have what is known as a Time Stamp Clock (TSC). The rdtsc instruction can be used to fetch the value. This is a great way to get a high precision time (2.1 GHz in my case) with a ...
-1
votes
3answers
120 views
Why the number of x86 int registers is 8?
recently I started to learn x86 assembler language and CPU architecture. I noticed that total number of int registers is 8, for x86-64 is 16. Why ? There must be some explanation.
1
vote
1answer
24 views
“ABI-volatile” register treated as non-volatile across function call
On Windows x64, when is a compiler allowed to treat registers that the ABI marks as volatile as non-volatile given some additional insight? I have a disassembled function where r11 is used to restore ...
0
votes
2answers
89 views
Assembler - Procedure to check a 16 bit value and return the parity
I'm sorry for my maybe bad English, but I have the following problem and hope, that someone could help me. I hope, that some people of you have some skills in assembler (I'm normally one of these java ...
0
votes
0answers
23 views
Designing a four bit rpn calculator [closed]
I am currently working on experiment, in which i am asked to build a rpn calculator. The problem that i am having is that it seems i need to build a control unit for this experiment. I have look ...
1
vote
2answers
73 views
Brackets on registers in Intel x86 assembly syntax
I tought I understood brackets in x86 assembly. In this example, the register ax should contain X, because brackets represents the current address of LABEL.
mov ax, [LABEL]
LABEL:
db "X", 0
But I ...
0
votes
1answer
67 views
Can we use Two 32 bit reg(32 + 32 = 64) at a time to make it able to take 64bit values? Assembly Language 8086
Assembly Language 8086:
I have make the program for addition it takes two values in console and gives us result.. it can only take value under 32 bits(8 digits) if we give higher value then it will ...
1
vote
1answer
164 views
ARM Current Program Status Register (SPSR) read-modify-write strategy practice
The bits that Figure 2-10 identifies as Do Not Modify (DNM), Read As
Zero (RAZ), must not be modified by software. These bits are:
• Readable, to enable the processor state to be ...
1
vote
1answer
35 views
get wrong epc on MIPS
I know MIPS would get wrong epc register value when it happens at branch delay, and epc = fault_address - 4.
But now, I often get the wrong EPC value which is even NOT in .text segment such as ...
-1
votes
1answer
85 views
Can someone explain the power control register in exynos ARM? [duplicate]
In the Linux kernel, more accurately /arch/arm/mach-exynos/cpuidle.c on 3.9-rc6, the lines reads
static unsigned int g_pwr_ctrl, g_diag_reg;
static void save_cpu_arch_register(void)
{
/*read ...
1
vote
1answer
77 views
Volatile in C, How does it work internally [duplicate]
Just wondering how exactly volatile keyword works internally.
Tried with GCC and Turbo C(DOS based) both cases it behaves in different manners.
volatile int iData;
iData = 5;
printf("%d %d %d %d %d ...
2
votes
1answer
63 views
Clarify subsections of 32-bit registers x86
I have a question regarding the subsections of the 32-bit registers in x86 assembly: Are the lower subsections of a register (when used) treated like a part of the corresponding 32-bit register?
ror ...
0
votes
1answer
66 views
Why should you keep ESP in EBP inside a call?
I'm reading in Professional Assembly Language by Richard Blum that when you enter a call you should copy the value of the ESP register to EBP, and he also provided the following template:
...
2
votes
0answers
62 views
Windbg _imp__xxx symbol's address seems to be dereferenced using the data segment register
I am learning Windbg. And for practice, I am debugging a 64bit fre app that create a process.
I added a breakpoint on CreateProcess (bp KERNEL32!CreateProcessWStub)
When the breakpoint is hit, I ...
4
votes
5answers
87 views
How do you add CH to EAX in x86 assembly?
I need to add the contents of CH to EAX in x86 assembly, but there is no address mode that appears to support this. Ideally I would want an addressing mode like:
ADD EAX,r8
or
ADD r32,r8
or
ADD ...
0
votes
2answers
224 views
Program Counter and Instruction Register
Program counter holds the address of the instruction that should be executed next, while instruction register holds the actual instruction to be executed. wouldn't one of them be enough?
And what is ...
3
votes
1answer
65 views
If I have a C function and I'm debugging it with gdb, how do I find the return value of a function?
I have an assignment that asks me to find the return value of main though register inspection (we're learning gdb), how would I go about doing that?
0
votes
1answer
24 views
what differs 2 function calls in a row?
Suppose you look at the stack and registers of a process which has the following code...
...
void Test()
{
for (int i = 0; i < 10; i++)
{
OneRunDontKnow();
}
}
...
You ...
2
votes
1answer
118 views
ARM CPSR - 5 bits for mode?
I'am learning about the arm architecture.
1. I figured that the CPSR had 5 bits allocated to specify the current mode it is executing in. where as we only have about 6-7 different modes for which 3 ...
0
votes
1answer
52 views
MIPS Register file size given opcode and register sizes
I have been given a simple ISA with two registers.
opcode: 2 bits, register1: 3 bits, register2: 3 bits.
It is asking me to find the size of the register file, how many registers can be addressed, ...
1
vote
1answer
74 views
XMM Registers Total or Per Core
In a multicore CPU, does each core have access to it's own bank of XMM registers? For example if a chip is listed as having 16 XMM registers (XMM0-XMM15), is that 16 registers per core or 16 shared?
...
0
votes
1answer
141 views
LCM calculation bug in GCD/LCM x86 Intel NASM assembly program
I created a similar program in C++ first, and then I decided to try to write it in x86 assembly language (the type of assembly I was taught in college). I've already completed the C++ version, and my ...
7
votes
1answer
79 views
Can I coredump a process that is blocking on disk activity (preferably without killing it)?
I want to dump the core of a running process that is, according to /proc/<pid>/status, currently blocking on disk activity. Actually, it is busy doing work on the GPU (should be 4 hours of work, ...
4
votes
1answer
90 views
How to get address of a register: ARM Cortex A8?
I want to get physical address of a co-processor register of ARM Cortex a8, say c9-User Enable Register (USEREN).
How can I get it ?
Thank you !!
0
votes
2answers
74 views
Highest 16-bit of EAX
I want to form a PCI address. How can I write 16-bit to the EAX (not to AX) in assembly language??
Example: write 0b1000000000000001
EAX before
|_____16-bit_____||_______AX_______|
EAX after:
...
1
vote
1answer
62 views
Transferring parameters on 64 bit Linux in registers
I understand 64 bit Linux allows one to pass the first six integer function parameters and first eight floating point function parameters via registers.
If I had seven integer parameters to pass, is ...
3
votes
2answers
120 views
C++ (nested) function call instructions - registers
In C++ FAQ:
Assuming a typical C++ implementation that has registers and a stack,
the registers and parameters get written to the stack just before the
call to g(), then the parameters get ...
2
votes
0answers
88 views
ARM Cortex A8 PMNC read gives 0 after enabling also.. Any Idea/Suggestions?
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("user-mode access to performance registers");
int __init arm_init(void)
{
unsigned int value;
/* enable user-mode access */
printk(KERN_INFO ...
0
votes
3answers
153 views
Impossible to print FindFirstFile WIN32_FIND_DATA structure properties with MASM
I want to reproduce the behaviour of the C++ code just below in MASM :
C++ code :
#include <Windows.h>
#include <iostream>
#include <stdio.h>
#include <tchar.h>
#include ...
0
votes
1answer
107 views
How to print fields values from a data structure with MASM
The aim of the MASM program below declares a simple struct called Date. I initialize its fields (Day, Month, Year) respectively as (09, 01, 1980). I just want to print the value of the Day field.
...
0
votes
2answers
57 views
Illegal Memory Refernce
I'm a beginner in the Assembly Language
trying to Implement STRCPY
My Assembler "TASM" returns an " Illegal Memory Reference" Error.. and tried to read about the error but couldn't find anythin..
...
0
votes
1answer
92 views
X86_64 Assembly not returning right values when loading from memory address
I'm new at X86_64 assembly, and I am trying to implement a brk memory management program, but I'm having some issues with some lines of the code.
.data part:
.section .data
heap_start: .double 0
...
1
vote
1answer
204 views
x86 protected mode - segment registers purpose
I need to modify some dll, but i don't know, what excatly does segment registers (DS, SS, ...) in protected mode. I learned in school about real 16-bit mode, where segment registers multiply by 16 ...
0
votes
1answer
106 views
Trying to understand effective addressing in x86 assembly
I was asked the following question, but I don't see how it has enough information to be answered.
"If EAX contains 00000200H, EBX contains 00000003H, and the data segment contains 1000H, what is the ...
1
vote
2answers
96 views
Simulate CPU register?
I want to simulate the work on register, I declare the Register class as follow
class Register{
uint8_t reg_ax[2];
Register(){
reg_ax[0] = reg_ax[1] = 0;
}
uint16_t &ax(){ ...
0
votes
1answer
51 views
In NASM, is MOV EBX, AX a valid instruction?
In NASM, is MOV EBX, AX a valid instruction?
Basically, can you move the contents of a small register into a register bigger than it?
0
votes
2answers
134 views
Assembly:Access 2D array
I am trying to make a small ping pong game in nasm assembly(thats the way i learn languages :) )
but i am having a problem ,i cant access any item of a list
my code:
mov eax,counter ...
2
votes
0answers
66 views
What do the contents of the general purpose registers contain?
I included the iOS tag, but I'm running in the simulator on a Core i7 MacBook Pro (x86-64, right?), so I think that's immaterial.
I'm currently debugging a crash in Flurry's video ads. I have a ...




