Revision Part-VII

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/165

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:19 AM on 9/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

166 Terms

1
New cards

Register

Which Part 08 structure should you think of first when a value must persist unchanged across clock cycles until explicitly updated?

2
New cards

Shift register

Which structure should you choose when information must be stored while its bit positions are deliberately changed across cycles?

3
New cards

Counter

Which structure is most natural when the machine must remember a numerical position or amount of progress?

4
New cards

Multiplexer

Which structure converts a control decision into the selection of one data source from several candidates?

5
New cards

Bus

Which structure conceptually groups related signals into a meaningful information-transport path?

6
New cards

Tri-state driver

Which structure can actively drive 0 or 1 or relinquish a shared physical line by entering Z?

7
New cards

Memory

Which storage organization is most appropriate when many similar words must be selected by numerical address rather than individually named?

8
New cards

Register = STORE; shift register = STORE + REPOSITION; counter = STORE + NUMERIC PROGRESS; MUX = SELECT/ROUTE; bus = TRANSPORT; tri-state = SHARED-LINE OWNERSHIP; memory = ADDRESSABLE STORE.

What compact map summarizes the major Part 08 structures?

9
New cards

A register.

I need one specifically named state value to survive into later cycles. Which storage structure naturally fits?

10
New cards

A memory.

I need thousands of similar stored words and want to choose among them numerically. Which organization naturally fits?

11
New cards

A shift register.

I need the current stored word to become a repositioned version of itself every commanded cycle. Which structure naturally fits?

12
New cards

A counter.

I need the state itself to mean "how many?" or "how far?" Which sequential structure naturally fits?

13
New cards

A multiplexer.

I have several producers and one consumer, and control must determine which producer reaches that consumer. Which routing structure naturally fits?

14
New cards

A bus.

I need to transport a WIDTH-bit operand as one architectural object. Which Part 08 abstraction naturally describes that connection?

15
New cards

Tri-state architecture.

Several external devices may physically connect to the same line but must take turns actively driving it. Which architecture addresses this problem?

16
New cards

Persistence across time.

What does a register add that a purely combinational path does not provide?

17
New cards

The register commits a selected value as remembered machine state.

What architectural event separates a transient combinational result from persistent state?

18
New cards

Combinational logic proposes; storage commits.

What compact rule distinguishes combinational calculation from registered state?

19
New cards

Current state → next-state logic → committed next state.

What general pattern appears in registers, shift registers, counters, and other sequential datapaths?

20
New cards

The current stored value.

What provides the historical information needed when a sequential structure computes its next state from its previous state?

21
New cards

Because the register preserves information after the combinational conditions that produced it may have changed.

Why does storage introduce time into a datapath?

22
New cards

A temporal boundary.

What architectural boundary does a register establish between present-cycle computation and future-cycle state?

23
New cards

A shift register transforms the positions of its stored bits, whereas an ordinary hold operation preserves their positions.

What distinguishes shifting from merely retaining a register value?

24
New cards

Parallel load replaces the stored word with external data; shift derives a repositioned next word from current stored state.

What is the key distinction between LOAD and SHIFT in ShiftRegister.v?

25
New cards

reset → load → shift → hold

What is the complete priority order of ShiftRegister.v?

26
New cards

Reset wins and DataOut becomes zero.

What happens if reset, load, and shift are all asserted at the same active edge in ShiftRegister.v?

27
New cards

Load wins and ParallelIn becomes the new DataOut.

What happens if load and shift are asserted together while reset is low?

28
New cards

DataOut retains its previous state.

What happens when reset, load, and shift are all low?

29
New cards

Because the RTL uses mutually exclusive if/else paths rather than independent state updates.

Why can ShiftRegister.v perform only one of reset, load, shift, or hold for a particular clock edge?

30
New cards

A synchronous reset.

What kind of reset is implemented when reset is tested inside always @(posedge clk)?

31
New cards

The next positive clock edge.

If synchronous reset becomes asserted between clock edges, when does DataOut actually clear?

32
New cards

{WIDTH{1'b0}}

What parameter-safe expression creates the all-zero reset word in ShiftRegister.v?

33
New cards

It generates exactly WIDTH zero bits regardless of the selected parameter value.

Why is {WIDTH{1'b0}} better than hard-coding an 8-bit reset constant in a parameterized shift register?

34
New cards

Logical right shift.

What type of shift does DataOut >> 1 perform in the current unsigned ShiftRegister design?

35
New cards

A zero enters the MSB and the previous LSB is discarded.

What happens at the two ends of DataOut during a one-position logical right shift?

36
New cards

The current DataOut value.

In DataOut <= DataOut >> 1, which version of DataOut supplies the bits used to calculate the next state?

37
New cards

After WIDTH uninterrupted right shifts, the stored word becomes all zeros.

What eventually happens to any WIDTH-bit word repeatedly shifted logically right with zeros entering the MSB?

38
New cards

It stores numerical state whose encoding itself has mathematical meaning.

What makes a counter a specialized state machine?

39
New cards

The number represents an ordered position or amount of progress.

What architectural meaning distinguishes counter state from arbitrary FSM state encoding?

40
New cards

An incrementer computes X + 1; a counter stores successive numerical states across time.

What is the essential distinction between an incrementer and a counter?

41
New cards

Storage plus numerical next-state logic.

What must be added to an incrementing combinational operation to create persistent counter behavior?

42
New cards

Elapsed cycles, processed bits, addresses, sequence positions, event totals, or protocol progress.

What are examples of meanings a counter's numeric state can represent?

43
New cards

FSM = qualitative phase; counter = quantitative progression.

What compact distinction separates the natural roles of a general FSM and a counter?

44
New cards

The FSM can remain in RUN while the counter changes on every iteration.

How can a machine make sequential progress without changing its qualitative FSM state?

45
New cards

Terminal-count comparison.

What mechanism converts a counter's numerical state into a condition such as "the required amount of progress has been reached"?

46
New cards

Because the numerical encoding already expresses an ordered relationship among the states.

Why does a counter not necessarily require a separate descriptive name for every state?

47
New cards

A multiplexer selects which candidate source reaches a destination.

I see several existing values but only one may continue toward a shared consumer. What routing operation is required?

48
New cards

The select signal.

Which multiplexer information belongs conceptually to the control side?

49
New cards

The candidate data inputs and selected output.

Which multiplexer information belongs conceptually to the datapath side?

50
New cards

Control determines the route while data travels through that route.

What controller/datapath relationship is embodied by a multiplexer?

51
New cards

Selection chooses a value; transformation changes a value.

What is the difference between a MUX operation and an arithmetic operation?

52
New cards

Many producers → selection network → one consumer.

What topology summarizes multiplexing?

53
New cards

Fan-out is one source feeding many consumers; multiplexing is many candidate sources feeding one selected destination.

What is the difference between fan-out and multiplexing?

54
New cards

case (Operation)

What top-level RTL construct acts conceptually as the arithmetic engine's large result-selection network?

55
New cards

Operation.

Which persistent control state determines which arithmetic result is routed toward DisplayValue?

56
New cards

DisplayValue.

Which shared bus receives the selected and formatted arithmetic-engine result?

57
New cards

The unselected results can still exist on their separate internal nets.

What happens to other arithmetic results when one result is selected for DisplayValue?

58
New cards

Observability changed, not necessarily whether the internal computations exist.

If Operation changes which result appears on the LEDs, what may have changed even if the candidate arithmetic results themselves did not?

59
New cards

Result selection chooses which operation's information is used; formatting determines how that information fits the shared output representation.

What is the distinction between result selection and result formatting?

60
New cards

Because different functional units can naturally produce differently shaped information, such as comparator flags versus arithmetic words.

Why may a shared result bus require formatting logic in addition to a MUX?

61
New cards

A bus.

What abstraction allows a designer to treat many related physical wires as one architectural information path?

62
New cards

Width, meaning, direction, ownership, and timing.

What properties should you identify to understand a bus architecturally?

63
New cards

The number of bits transported together.

What does bus width specify?

64
New cards

Its semantic role.

Two buses are both 8 bits wide. What determines whether one is an operand bus and the other is an address bus?

65
New cards

Data bus = what value; address bus = where; control bundle = what action; status bundle = what condition.

What compact distinction separates the major bus roles?

66
New cards

Address tells WHERE; data tells WHAT; control tells WHAT ACTION.

What three-part bus model is especially useful for memory interfaces?

67
New cards

One source → many consumers.

What interconnection pattern describes operand fan-out?

68
New cards

A and B can fan out to multiple arithmetic units.

How can several arithmetic modules receive the same top-level operands simultaneously?

69
New cards

Separate result buses carry unit outputs before selection chooses one for DisplayValue.

How do buses and multiplexing cooperate in the arithmetic engine's output architecture?

70
New cards

No; a bus is an architectural abstraction and does not necessarily imply a literal shared electrical conductor.

Does every use of the term "bus" mean multiple devices physically drive one common wire set?

71
New cards

Because the interface must define not merely what bits exist but also when those bits are valid or sampled.

Why is timing part of a bus contract?

72
New cards

Z.

Which tri-state condition means "I am not driving this line"?

73
New cards

0 means actively driving low; Z means relinquishing the line.

Why must logic 0 and high impedance never be treated as equivalent?

74
New cards

The intended owner drives 0 or 1 while non-owners remain in Z.

What is the fundamental safe-ownership rule for a tri-state shared line?

75
New cards

Bus contention.

What occurs when multiple active drivers attempt to force conflicting values onto the same shared physical line?

76
New cards

Mutually exclusive drive ownership.

What control guarantee prevents two devices from actively fighting over a shared line?

77
New cards

Release → transfer ownership → drive.

What conceptual sequence describes safe bus turnaround between two potential drivers?

78
New cards

All potential drivers are in Z.

What condition exists during a no-drive interval on a tri-state line?

79
New cards

Contention means too many conflicting active drivers; no-driver means no source currently drives the line.

What is the distinction between contention and a released line?

80
New cards

MUX = logical source selection; tri-state = controlled electrical ownership of a shared physical line.

What is the architectural distinction between multiplexing and tri-state sharing?

81
New cards

Modern FPGA internal routing normally uses programmable interconnect and multiplexing.

How are internal signal routes generally realized in an FPGA rather than through arbitrary internal tri-state buses?

82
New cards

External I/O pins.

Where is true tri-state behavior most directly relevant in FPGA designs?

83
New cards

Because an external pin may need to drive a shared conductor during one interval and electrically release it during another.

Why can FPGA I/O require true tri-state behavior?

84
New cards

A memory.

What structure scales retained state into a regular collection of addressable words?

85
New cards

A register is typically named by role; a memory word is selected by address.

What is the core organizational distinction between register storage and memory storage?

86
New cards

Word width = bits per location; depth = number of locations.

What is the distinction between memory width and memory depth?

87
New cards

2^A locations.

How many distinct locations can A address bits naturally identify?

88
New cards

8 bits.

How many address bits are needed to select among 256 memory locations?

89
New cards

10 bits.

How many address bits are needed to select among 1024 memory locations?

90
New cards

Depth × word width.

How is total memory capacity in bits calculated?

91
New cards

Address selection.

What mechanism converts a numerical address into access to a particular member of a memory array?

92
New cards

Address = where; data = what.

What compact distinction separates a memory address from memory contents?

93
New cards

The selected location is the source of data.

What role does an addressed memory location play during a read?

94
New cards

The selected location is the destination of new data.

What role does an addressed memory location play during a write?

95
New cards

Memory → consumer.

What is the fundamental data direction of a memory read?

96
New cards

Producer → memory.

What is the fundamental data direction of a memory write?

97
New cards

A write modifies retained memory state; a read conceptually observes retained state.

What is the key state-change distinction between memory reads and writes?

98
New cards

Write enable.

Which control signal conceptually authorizes replacement of the selected stored word?

99
New cards

Address determines where; write enable determines whether that selected state is changed.

Why are address selection and write authorization separate?

100
New cards

SRAM.

Which memory architecture discussed in Part 08 retains stored state while powered without DRAM-style periodic refresh?