Sign in
foss-eda-tools
/
third_party
/
shuttle
/
gf180mcu
/
mpw-000
/
slot-034
/
3a3bd2d2c215c20897818c4b85676f8ff14e25d9
/
.
/
verilog
/
rtl
/
user_module.v
blob: 974e1e9e322d2f1fc2fecdaced0c0c633c5fd59f [
file
] [
log
] [
blame
]
module
user_module
(
input wire
[
7
:
0
]
io_in
,
output wire
[
7
:
0
]
out
);
assign
out
=
{
io_in
[
6
:
0
],
io_in
[
3
]
^
io_in
[
4
]
^
io_in
[
5
]
^
io_in
[
7
]};
endmodule