Tagged Questions
The digital-logic tag has no wiki summary.
5
votes
3answers
745 views
How CPUs implement Instructions like MUL/MULT?
In different assembly languages MUL (x86)/MULT (mips) refer to multiplication. It is a black box for the programmer. I am interested in how actually a CPU accomplishes a multiplication regardless of ...
4
votes
5answers
937 views
Linear feedback shift register?
Lately I bumped repeatedly into the concept of LFSR, that I find quite interesting because of its links with different fields and also fascinating in itself. It took me some effort to understand, the ...
3
votes
3answers
1k views
What to use for VHDL/digital-logic simulation on Mac OS X
I suddenly realized that there is no Altera Quartus or Xilins ISE or ModelSim on Mac OS X.
What do people use to at least simulate VHDL and schematic designs on Macs?
2
votes
1answer
101 views
Digital Logic - Karnaugh Map
The initial problem starts like this. There are 6 states. At each state when w=1 move to the next state, when w=0 then stay at the current state. At each state display a number using a standard 7 led ...
2
votes
2answers
337 views
not a valid l-value - verilog compiler error
module fronter ( arc, length, clinic ) ;
input [7:0] arc;
output reg [7:0] length ;
input [1:0] clinic;
input en0, en1, en2, en3; // 11
// clock generator is here
g_cal A( en0) ;
g_cal B( ...
2
votes
3answers
108 views
How can I set normal clock input?
input
clk ( clock ) :
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 ...
required output :
F :
0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 ...
How can I get that output over ...
2
votes
2answers
620 views
How to define clock input in Xilinx
Hey, I have almost no experience with Xilinx. I have a group project for a Digital Logic course that is due soon, where my partner, who was supposed to take care of the Xilinx simulations decided to ...
2
votes
2answers
404 views
How would you handle a special case in this digital logic system?
I posted this digital logic diagram as an answer to another stackoverflow question. It describes a logic system which will be coded in Verilog or VHDL and eventually implemented in an FPGA.
The ...
1
vote
2answers
70 views
to know logic design - help
input :
A and B
output:
F
A and B represents number in range of [0,3], that is
A made up from A_0 and A_1
B made up from B_0 and B_1
A_0 A_1 B_0 B_1 F = ...
1
vote
3answers
41 views
Small doubt on bits
This question not probably not typical stackoverflow but am not sure where to ask this small doubt of mine.
Problem:
Find the number of bits in the binary representation of decimal number 16?
...
1
vote
4answers
177 views
Digital Circuit understanding
In my quest for getting some basics down before I start going into programming I am looking for essential knowledge about how the computer works down at the core level.
I have a theory that actually ...
0
votes
1answer
915 views
Digital Logic - realizing full adder using nand gate
I am stuck while solving this question,
What is the minimum number of 2 input
nand gates required to realize
I found the answer when there is no limit on the number of inputs, but cant find ...
0
votes
1answer
245 views
What is the 2's complement of -17?
What will be the binary value of -17 and how to find the 2's complement of -17?
0
votes
1answer
165 views
Digital Logic Puzzle, “2 out of 10 voting” logic
I am tring to implement kind of "2 out of 10 voting" logic. This logic simply says if atleast 2 inputs out of given 10 inputs are "ON" then only output must be "ON".
So I have 10 digital inputs ...
0
votes
3answers
116 views
I think the examiner has made several errors when correcting my VHDL/digital design-exam. Please help
I was just returned my exam from a course in digital design with VHDL. Marks have been deducted from 3 answers which I don't understand why. I've included the problem specification and my answer for ...
0
votes
1answer
52 views
Programmable Logic Devices
I have a confusion in understanding the structure of PAL device.
My first question is that if we buy a PAL device , then how can we know that how many min terms are added by each OR gate in the OR ...
-1
votes
1answer
26 views
Why K-map has states in sequence of 00,01,11,10 instead of 00,01,11,10?
Why K-map has states in sequence of 00,01,11,10 instead of 00,01,11,10?
-5
votes
1answer
408 views
How To Design 4 bit Binary Multiplier [closed]
hi i want to desin Multiplication is illustrated by the following example:
Multiplicand: 1011 (11 b)
Multiplier: × 1010 (10 b)
...