quasar/sbox_chisel.v

9 lines
186 B
Coq
Raw Normal View History

2020-12-16 13:39:45 +08:00
module sbox_chisel(
input clock,
input reset,
input [7:0] io_byte_in,
output [7:0] io_byte_out
);
assign io_byte_out = 8'hc6; // @[cipher.scala 58:15]
endmodule