1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
myhdl/example/cookbook/stopwatch/seven_segment.py
2006-03-16 17:49:19 +00:00

21 lines
392 B
Python

# 7 segment encoding
# 0
# ---
# 5 | | 1
# --- <- 6
# 4 | | 2
# ---
# 3
encoding = {0: "1000000",
1: "1111001",
2: "0100100",
3: "0110000",
4: "0011001",
5: "0010010",
6: "0000010",
7: "1111000",
8: "0000000",
9: "0010000"
}