Tagged Questions
The microprocessors tag has no wiki summary.
23
votes
15answers
1k views
What microprocessor for experimentation?
I harbor a secret fantasy (oops, not so secret anymore) to build a simple computer from scratch. I'm looking for an easy-to-use microprocessor to start with. I know about the usual suspects such as ...
17
votes
2answers
301 views
How do memory fences work?
I need to understand memory fences in multicore machines. Say I have this code
Core 1
mov [_x], 1; mov r1, [_y]
Core 2
mov [_y], 1; mov r2, [_x]
Now the unexpected results without memory ...
16
votes
7answers
1k views
What are 16, 32 and 64-bit architectures?
What do 16-bit, 32-bit and 64-bit architectures mean in case of Microprocessors and/or Operating Systems?
In case of Microprocessors, does it mean maximum size of General Purpose Registers or size of ...
6
votes
4answers
167 views
Instruction decoding when instructions are length-variable
Here are some instructions and their corresponding encodings:
55 push %ebp
89 e5 mov %esp,%ebp
83 ec 18 sub $0x18,%esp
a1 0c 9f 04 08 ...
5
votes
7answers
3k views
What is a stack pointer used for in microprocessors?
I am preparing for a microprocessor exam. If the use of a program counter is to hold the address of the next instruction, what is use of stack pointer?
4
votes
4answers
196 views
Why 24 bits registers?
In my work I deal with different micro-controllers, micro-processors and DSP processors. Many of them have 24-bits registers and counters.
I know how to use them, this is not my question.
My ...
4
votes
5answers
3k views
What is the difference between MOV and LEA [8086 Microprocessor]
I would like to know Whats the difference between these instructions.
MOV AX, TABLE-ADDR
and
LEA AX, TABLE-ADDR
P.S: As I am not skilled in this domain, kindly provide a simple solution.
3
votes
3answers
178 views
Books on computer cpu [closed]
I'm looking for computer book(s) to get to know about CPU from basic to intermediate level. what books are some good to read?
3
votes
5answers
297 views
Moving data from memory to memory in micro controllers
Why can't we move data directly from a memory location into another memory location.
Pardon me if I am asking a dumb question, but I think this is a true situation, at least for the ones I've ...
3
votes
3answers
119 views
.net development for Microprocessors
I am a .net web developer. I have several years of experience in this field. Lately, I have received a job proposal for developing .net embedded code on .Net Arm Microprocessors.
I wanted to know, ...
3
votes
2answers
129 views
Gadzooks! Architectures abound! Looking for an embedded processor/controller taxonomy
I am looking for a taxonomy of embedded processors. Which processors belong to which families? Who decends from whom?
Does anyone here know of a simple article that describes it?
2
votes
2answers
21 views
what exactly are ports?
Generally I/O ports in microprocessor refer to a certain memory address in the RAM that a microprocessor is listening to (correct me if I am wrong).
Does "port" mean the same way when we talk about ...
2
votes
4answers
84 views
Compress black & white pixel data on an 8-bit microprocessor
I need to compress the data of a 102x64 pixel black and white LCD screen using an 8-bit microprocessor. The data is coming in as a stream as shown below:
unsigned char data[8][102] =
{
...
2
votes
4answers
831 views
Mutli-core Processors: Does each “core” run at the full clock speed or some fraction of the full clock frequency?
Let's say you have a single (1) Intel/AMD x86-64 bit 2 GHz 8 core processor.
Does each of the 8 cores all run at the full 2 GHz or, does each core run at some fraction of the full 2 GHz clock (e.g. ...
2
votes
3answers
2k views
Microprocessor to RS-232 realtime plot using PySerial/Matplotlib?
Greetings!
I'm new to the world of Python and my programming skills are fairly poor but I'm trying to figure a way to use Python to display the output from an EEG circuit (using the OpenEEG circuit ...
1
vote
0answers
41 views
How to read data from port D on JackRabbit BL1800?
I am trying to read serial data from Port D on JackRabbit BL1800. My code seems to be running fine writing and reading from the Port D. However, there is nothing in the input buffer to read from on ...
1
vote
1answer
231 views
Why does /proc/cpuinfo differ from the Intel Specification? [closed]
when I run: cat /proc/cpuinfo on my machine I get the following output:
mk527@node5: ~
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 15
model name : ...
1
vote
1answer
68 views
Does BIOS in Atom-32bit-intel board make IDT and GDT?
I have Atom-32bit-intel board n450 with only BIOS in it, my goal is to use APIC timer and linke it with an ISR (0x21).
After a while, I discoverd that IDT and GDT already exist(probably built by the ...
1
vote
1answer
23 views
Microprocessor vs discrete FET clock speed
How do microprocessors achieve such high clock speeds when discrete FETs can only achieve approx 20MHz? Do they have a large number of parallel sequential logic systems?
Thanks in advance.
1
vote
1answer
104 views
Serial Communication between two microprocessor (H8S2633R) in C language
I am doing a school project that required communication between two microprocessor, I did not convert to RS232 for this communication as the two processor is place next to each other. The program ...
1
vote
2answers
143 views
Microcontroller Vs. SOC [closed]
I was wondering what the main difference is between a micro-controller and a system on chip, apart from the obvious one: that the the SOC is implemented on an integrated circuit where as the ...
1
vote
2answers
312 views
Compare bits in assembly
How can I compare two bits if they are equal or not in 8051? I need to jump if two bits are equal.
I have a value in a register and I am searching if this value is equal another constant value. ...
1
vote
3answers
667 views
How to generate a random number in 8086 assembly?
I want to know if there a routine or an instruction to generate a random number using assembly
on 8086.
any help will be appreciated.
1
vote
1answer
706 views
How is a physical address generated in 8086?
In the 8086 architecture, the memory space is 1 Mbyte in size and divided into logical segments of up to 64 Kbytes each.
i.e. it has 20 address lines thus the following method is used:
that the ...
1
vote
3answers
379 views
Size of microprocessor
I have read that the microprocessor consists of several components, each having same/different "sizes". But what really confuses me is what determines the stated size of a microprocessor as 16-bit, ...
1
vote
3answers
349 views
Stack Overflow of 8086 microprocessor
What'll be the behaviour of the 8086 Microprocessor when the stack is full and even then I push something into it?
0
votes
1answer
46 views
Determining cache sector size for a processor
I'm trying to build tests around processor cache-line optimizations relative to parallel processing. Specifically, I'm testing how segments of my products are being impacted by False Sharing ...
0
votes
0answers
43 views
Getting data from microprocessor VHDL Spartan 3A
I have an app who's instantiating a micropocessor that we develop on vhdl course, it also is displaying data on the LCD display of the FPGA.
We have tested the micro and the LCD separately and they ...
0
votes
1answer
106 views
Const Char array being modified to all 0s for AVR micro written in C
I am helping a friend get a graphics LCD working on his AVR, a few months ago all was working without issue, it has been untouched since then. The chip has now been swapped out from an ATMega32 to an ...
0
votes
1answer
71 views
Will intell xeon E7 processor work on i7 motherboard? [closed]
I would like to build a system with intell xeon E7 processor. My current motherboard is for lintel i7. Will it work with E7, or do I have to change the motherboard. If I have to change it, which ...
0
votes
3answers
43 views
is Atom-32bit in mode protected after a reset?
I work on Atom-32bit-intel, I have to port MicroC OS II, so there is no code to make any configuration on the Atom (No GDT, no LDT...):
my question is more about the state of the Atom-32bit after a ...
0
votes
3answers
116 views
Is this wrong in MSDN document?
Here is MSDN link
From http://msdn.microsoft.com/en-us/library/s3f49ktz(v=VS.80).aspx
It says:
unsigned int : 4byte
Range of Value 0 to 4,294,967,295
Hence my test code:
void main(void)
{
...
0
votes
1answer
49 views
The CPU core ordering/numbering in 2-chipset Intel Westmere
I am using a Intel Westmere processor. The architecture of westmere consists of 12 CPU cores arranged on 2-chips. So it means that each chip contains 6 cores.
I don't how the CPU cores are ordered ...
0
votes
1answer
99 views
Interrupt service procedure of 8086
I could not find any suitable resource in interrupt service procedure of 8086 .I want to know how 8086 process different interrupts . Please help me out.
0
votes
4answers
513 views
Atmel C compiler manual?
I'm just getting started with the Attiny84 on AVR Studio 5 (based off of Visual Studio). However, I cant find the C programmers manual for it so I can figure out how to write ISR's, address GPIO ...
0
votes
1answer
122 views
how did i do it in my exam :) counting the number of keypresses
i got this question in my exam today and i wrote some code for it.i would like you to tell me where did i go wrong.
Problem: for an 8086 microprocessor,write code that does the following task. it ...
0
votes
0answers
116 views
Basic Microprocessor Registry Lab Part 2
Hey, I am in a microprocessor class, and am drowning. I cannot relate to any of the material, and am totally lost. I am way behind in the class, and desperately need to catch up. PLEASE HELP ME! :)
...
0
votes
0answers
158 views
Basic Registry/Commands Lab Part 1
Hey, I am in a microprocessor class, and am drowning. I cannot relate to any of the labs, and am totally lost. I am way behind in the class, and desperately need to catch up. I can do the written ...
0
votes
1answer
145 views
internal and external address bus
Based on my knowledge,i know there is external and internal data bus,but i wonder if there is internal and external address bus as i saw a diagram showing intel 8088 microprocessor with this two thing ...
0
votes
1answer
67 views
0
votes
2answers
139 views
need help writing a program
I am taking a class in microprocessing, and having some trouble writing a program that will hold a value in a port for two seconds before moving on to the next port.
Can any one help this make more ...
0
votes
2answers
174 views
stack related question in microprocessor
can we also do queue operations in microprocessor? (given that the microprocessor supports stack operations )
-1
votes
9answers
3k views
-2
votes
2answers
175 views
Microprocessor Questions [closed]
Subsequent groups of bits after the first group in an instruction hold its input values, called __.
a. Operands c. Operators
b. op codes d. Words
A(n) __ is the lowest-level command that software can ...