mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-01-09 19:57:54 -05:00
More compact notation
This commit is contained in:
@@ -54,10 +54,7 @@ begin
|
||||
if ((pck_cnt == 8'd7) && !pck_divclk)
|
||||
to_arm_shiftreg <= adc_d;
|
||||
else
|
||||
begin
|
||||
to_arm_shiftreg[7:1] <= to_arm_shiftreg[6:0];
|
||||
to_arm_shiftreg[0] <= 1'b0;
|
||||
end
|
||||
to_arm_shiftreg <= {to_arm_shiftreg[6:0], 1'b0};
|
||||
end
|
||||
|
||||
// ADC samples on falling edge of adc_clk, data available on the rising edge
|
||||
|
||||
Reference in New Issue
Block a user