1
我正在學習使用匯編語言在PIC單元上顯示七段。 我需要讓七段顯示00到FF,00-99(十進制) 我被困在桌上讀。 如何再次讓表自動讀取,當它擊中F或9 這裏是我的代碼:如何爲Microchip彙編語言設置表循環
Loop
TBLRD*+ ; Read byte from table, increment pointer
MOVF TABLAT, w
movwf PORTE ; Move W to PORTE
call Delay_333ms ; Call delay subroutine
goto Loop ; Repeat loop
PatTbl
dw h'6'
dw h'5b'
dw h'159'
dw h'66'
dw h'6d'
dw h'7d'
dw h'7'
dw h'7f'
dw h'6f'
dw h'77'
dw h'7c'
dw h'39'
dw h'3f'
dw h'79'
dw h'71'
dw h'3f'