mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-25 09:32:46 +08:00
More compact notation
This commit is contained in:
parent
44fc77ec3b
commit
61765cc933
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue