shift.a51

来自「usb_cpld_code.zip usbjtag - Variations o」· A51 代码 · 共 138 行

A51
138
字号
;;-----------------------------------------------------------------------------;; Fast JTAG serial bit output for usbjtag;;-----------------------------------------------------------------------------;; Copyright (C) 2005,2006 Kolja Waschk, ixo.de;;-----------------------------------------------------------------------------;; This code is part of usbjtag. usbjtag is free software; you can redistribute;; it and/or modify it under the terms of the GNU General Public License as;; published by the Free Software Foundation; either version 2 of the License,;; or (at your option) any later version. usbjtag is distributed in the hope;; that it will be useful, but WITHOUT ANY WARRANTY; without even the implied;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the;; GNU General Public License for more details.  You should have received a;; copy of the GNU General Public License along with this program in the file;; COPYING; if not, write to the Free Software Foundation, Inc., 51 Franklin;; St, Fifth Floor, Boston, MA  02110-1301  USA;;-----------------------------------------------------------------------------public _ShiftOut, _ShiftInOutDSCR SEGMENT CODE PAGE        rseg DSCRTDI BIT 0A0H+0HTDO BIT 0A0H+1HTCK BIT 0A0H+2HTMS BIT 0A0H+3H;; 4 Instructions per bit: 48/4/4 = 3 MHz JTAG clock.;; Code is written so that TCK has about 50% duty cycle._ShiftOut:        MOV  A,R7        ;; Bit0        RRC  A        MOV  TDI,C        SETB TCK        ;; Bit1        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        ;; Bit2        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        ;; Bit3        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        ;; Bit4        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        ;; Bit5        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        ;; Bit6        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        ;; Bit7        RRC  A        CLR  TCK        MOV  TDI,C        SETB TCK        NOP         CLR  TCK        ret;; For ShiftInOut, the timing is a little more;; critical because we have to read TDO/shift/set TDI;; when TCK is low. But 20% duty cycle at 48/4/5 MHz;; is just like 50% at 6 Mhz, and that's still acceptable_ShiftInOut:        MOV  A,R7        ;; Bit0        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit1        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit2        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit3        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit4        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit5        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit6        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        ;; Bit7        MOV  C,TDO        RRC  A        MOV  TDI,C        SETB TCK        CLR  TCK        MOV  R7,A        retEND

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?