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