Skip to content

Instantly share code, notes, and snippets.

@alsrgv
alsrgv / tmds.sv
Last active August 2, 2025 00:20
TMDS encoder/decoder in SystemVerilog
package tmds_pkg;
typedef struct packed {
logic inv_q_m;
logic use_xor;
logic [7:0] q_m;
} tmds_encoded_t;
typedef enum logic [9:0]{
CTRL_00 = 10'b1101010100,