I'm trying to write the proper code to write data to the 4 digit 7 segment modules. This is my code: #define DIG_4H_321L 0b00100000 #define DIG_4L_321H 0b00011100 #define DIG_3H_421L 0b00010000 ...
// puts 4 4-digit hexadecimal values on the 4-digit 7-segment display 2'b00: begin current_digit = digit3; cur_dig_AN = 4'b1000; end 2'b01: begin current_digit = digit2; cur_dig_AN = 4'b0100; end ...