SDVD/design/sd/send_command.sv
Waylon Cude 71f08bdf15
All checks were successful
ci/woodpecker/push/test-workflow Pipeline was successful
Add CRC generation for sd card
Works great according to the testbench
2025-06-06 18:13:14 -07:00

15 lines
303 B
Systemverilog

module send_command(
input clk,
input reset,
input start,
input [5:0] command,
input [31:0] arguments
);
// Some commands have hardcoded crcs, and as such they can be found in a LUT,
// otherwise we need to shell out to the crc module and wait a while for it to
// run
endmodule