Skip to content

Commit e9c2f1e

Browse files
murdo-gmalacalypse
authored andcommitted
Removed unnecessary jmp instructions
1 parent 1b3410b commit e9c2f1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

i2s.pio

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ loop_r:
117117
wait 0 pin 1 ;
118118
out pins 1 ; update DOUT
119119
jmp pin loop_r ; if LRCK is still high, we're still sampling this word
120-
jmp start_l ; otherwise, start the loop over
120+
; implicit jmp to start_l: otherwise, start the loop over
121121

122122

123123
; I2S Audio Input - Slave or Synchronous with Output Master
@@ -155,7 +155,7 @@ sample_r:
155155
in pins, 1
156156
wait 0 pin 1
157157
jmp pin sample_r ; if LRCK is still high, we're still sampling this word
158-
jmp start_sample_l ; otherwise, start the loop over
158+
; implicit jmp to start_sample_l: otherwise, start the loop over
159159

160160
% c-sdk {
161161

0 commit comments

Comments
 (0)