Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
1k views

Problem setting output flags for ALU in “Nand to Tetris” course

Although I tagged this homework, it is actually for a course which I am doing on my own for free. Anyway, the course is called "From Nand to Tetris" and I'm hoping someone here has seen or taken the ...
1
vote
3answers
295 views

How does CPU do subtraction

I have some basic doubts, but every time I sit to try my hands at interview questions, these questions and my doubts pop up. Say A=5 B=-2 I say A+B. I am assuming that A and B are 4-bytes How does ...
0
votes
2answers
90 views

VHDL ALU undefined value

I'm learning VHDL for programming a FPGA, basic (but hard-for-me) projects. I have this ALU. It is supossed to be a 4-bit ALU. But when I want to make the Add operation the value of result is UUUU. ...
0
votes
1answer
43 views

alutLoadMemoryFromFile problem

This is part of a function that loads sound for my sprite game made in C# and Tao. int format; float frequency; int size; IntPtr data = Alut.alutLoadMemoryFromFile(path, out format, out size, out ...
0
votes
1answer
47 views

Does Pentium 4 has a feature of a single overclocked ALU? [closed]

Does Pentium 4 has a feature of a single overclocked ALU?
0
votes
3answers
80 views

Integer arithmetic errors in modern CPUs

Do I need to plan for possible miscalculations in modern CPUs, where for example an addition of two integers 1 and 1 results in 3 once? (How often) Do such errors in the ALU occur? Is there any ...
0
votes
2answers
754 views

Making a 4-bit ALU from several 1-bit ALUs

I'm trying to combine several 1 bit ALUs into a 4 bit ALU. I am confused about how to actually do this in VHDL. Here is the code for the 1bit ALU that I am using: component alu1 -- define the 1 bit ...