Forum Discussion

KRose13's avatar
KRose13
Icon for New Contributor rankNew Contributor
5 years ago

Hello, I am trying to convert BCD to Decimal on my DE10-Lite board. I want utilize all all six seven-segment displays but I'm don't know how to go about it. At the moment I can't seem to get two of seven-segments displays to work correctly.

module DE10_LITE_Default (SW,HEX1,HEX0); input [3:0]SW; output [6:0]HEX1,HEX0; wire z ; wire [3:0]y , m; wire [2:0]b; assign y = {1'b0,b}; //------------------------- // comparator compar1(...