mirror of
https://github.com/myhdl/myhdl.git
synced 2025-01-24 21:52:56 +08:00
12 lines
167 B
Python
12 lines
167 B
Python
|
from myhdl import block
|
||
|
|
||
|
@block
|
||
|
def bin2gray(B, G):
|
||
|
# DUMMY PLACEHOLDER
|
||
|
""" Gray encoder.
|
||
|
|
||
|
B -- binary input
|
||
|
G -- Gray encoded output
|
||
|
"""
|
||
|
pass
|